If your only using integer values then you can use LONG instead. DOUBLE is as big as you can get but since it also hold the decimal places it uses extra memory.
Integer is -32,768 to 32,767
Long Integer is -2,147,483,648 to 2,147,483,647
Single is -3.402823E38 to -1.401298E-45 for negative values and 1.401298E-45 to 3.402823E38 for positive numbers
and let's just say that Double is even larger.