How RESEED works is one of the quirks of SQL Server.
If the table is empty, the value you specified is used for the next row inserted; if table is not empty, value is seed + 1.
IF NOT EXISTS(SELECT 1 FROM Person.AddressType)
DBCC CHECKIDENT ('Person.AddressType', RESEED, 1)