There can be only one identity column in a SQL Server table:
"There can only be one IDENTITY column per table" - Why?
If you gave us more information about what you are trying to achieve (and the expected behavior of the sequences) and why, it might be a little easier.
For instance, you could add a computed or persisted computed column which exposes the identity by another name.
You could make two columns which are foreign keys to two separate tables with individual identity columns and then also add a unique constraint on each of the foreign key columns.
Until we know more about what you are trying to achieve, it's hard to see what benefit you would get from having two identity columns.