What you're looking for is an arrayed type. While this is natural for programmers, it generally goes against the grain for folks who prefer database normalization. If you were running a database with arrayable types (PostgreSQL, firebird too I believe) you could just use an arrayed int type here.
But it would be wrong. 🙂
Seriously though, do you need to be able to use this set of numbers in a where clause or such? If not then you can just store the numbers as a pipe delimited string like '10|15|18' .
If you need to use them in a where clause you'll likely need to normalize out the data. Make another table to hold the values and the ID or whatever pk from the master table, and join against that.