list of odd numbers

i’m trying to make a list of large odd numbers in sequential order.
However, basic programs like Excel will only accept ~16 digits as a
number. is there any program, method, website, etc. that can do this?

–~–~---------~–~----~------------~-------~–~----~
To post to this group, send email to gamsworld@googlegroups.com
To unsubscribe from this group, send email to gamsworld+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/gamsworld?hl=en
-~----------~----~----~----~------~----~------~–~—

\

JS,

Why not do it with a GAMS program? All you need is:

file odd / odd.txt /; put odd; scalar i;
for(i = 5e12 to 5e12+100, put$mod(i,2) i:0:0 / );

This will create a file odd.txt with :
5000000000001
5000000000003
5000000000005
5000000000007
.
.
.
5000000000091
5000000000093
5000000000095
5000000000097
5000000000099

HTH
Jan

JS wrote:

i’m trying to make a list of large odd numbers in sequential order.
However, basic programs like Excel will only accept ~16 digits as a
number. is there any program, method, website, etc. that can do this?


\

Thanks to everyone that replied!

On Aug 13, 8:12 am, “Jan-H. Jagla” wrote:

JS,

Why not do it with a GAMS program? All you need is:

file odd / odd.txt /; put odd; scalar i;
for(i = 5e12 to 5e12+100, put$mod(i,2) i:0:0 / );

This will create a file odd.txt with :
5000000000001
5000000000003
5000000000005
5000000000007
.
.
.
5000000000091
5000000000093
5000000000095
5000000000097
5000000000099

HTH
Jan

JS wrote:

i’m trying to make a list of large odd numbers in sequential order.
However, basic programs like Excel will only accept ~16 digits as a
number. is there any program, method, website, etc. that can do this?


Jan-H. Jagla mailto:jhja...@gams.com
GAMS Development Corporation GAMS Software GmbH
1217 Potomac St. NW Eupener Str. 135-137
Washington DC, 20007, USA 50933 Cologne, Germany
Fon/Fax: +1 202 342-0180/1 Fon/Fax: +49 221 949-9170/1http://www.gams.com http://www.gams.de

–~–~---------~–~----~------------~-------~–~----~
To post to this group, send email to gamsworld@googlegroups.com
To unsubscribe from this group, send email to gamsworld+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/gamsworld?hl=en
-~----------~----~----~----~------~----~------~–~—

\