INSERT INTO YourTable(YourColumn)
SELECT 1 + (Level -1) * YourIncrement from dual connect by Level < TotalNumbers)
i.e.
INSERT INTO YourTable(YourColumn)
SELECT 1 + (Level -1) * 1 from dual connect by Level < 100)
создать последовательность 1,2,3 ... 99
INSERT INTO YourTable(YourColumn)
SELECT 1 + (Level -1) * 2 from dual connect by Level < 100)
создать последовательность 1, 3, 5 .. 100
Или вы можете использовать ПОСЛЕДОВАТЕЛЬНОСТИ