SELECT TOP 10 ROW_NUMBER() OVER (ORDER BY [object_id])
FROM sys.all_columns
Running that code im able to get a incrementing count shown below.
1
2
3
4
5
6
7
8
9
10
...
im looking for a way to get multiples of a number, for example, 28
28
56
84
112
140
...