Create a trigger on insert.
When inserting something which is a multiple of 13 minus 1 (12, 25, 38, etc.) insert and delete another row immediately.
Something like that (might need modifications):
CREATE TRIGGER ON [table_name]
AFTER INSERT
AS
-- Get the last inserted identifier
DECLARE @LastID INT -- or whatever type is your identity column
SET @LastID = SELECT ID FROM inserted -- inserted holds the inserted entry
-- Check if the ID is a multiple of thirteen minus 1
IF ((@LastID + 1) % 13 = 0) -- not sure it would work, but something like that
BEGIN
INSERT INTO [table_name]
-- dummy values
DELETE FROM [table_name] WHERE ID = (@LastID + 1)
END
GO
