I used this as input
Table[600851475143/i , {i, 1, 600851475143}]
but got an error
Table::iterb:Iterator {i,1,600851475143} does not have appropriate bounds.
But this gives me no error why?:
Table[600851475143/i , {i, 1, 13}]
|
I used this as input
but got an error
But this gives me no error why?:
|
||||
|
This is because the number you used is extremely large. The number of iterations supported (in either This limitation is not unreasonable: the size of the If you change the step size in the iterator to a large number, it will work:
|
|||||||||
|
|
As Szabolcs has said the trouble lies in the size of the table you are trying to produce. It does not however stop you plotting the function you want to investigate.
Or sampling the function at discrete steps and then plotting it as in:
|
||||
|
|
Select[Divisors[600851475143], PrimeQ]– Gustavo Bandeira Aug 26 '12 at 10:58Last[Select[Divisors[600851475143], PrimeQ]]for more speed! – Gustavo Bandeira Aug 26 '12 at 11:02