|
| |
|
|
A122140
|
|
Numbers n such that n divides sum of cubes of the first n primes A098999(n).
|
|
25
|
| |
|
|
|
OFFSET
|
1,2
|
|
|
COMMENTS
|
a(9) > 6*10^9. - Donovan Johnson, Oct 15 2012
a(11) > 10^11. - Robert Price, Mar 29 2013
|
|
|
LINKS
|
Table of n, a(n) for n=1..10.
|
|
|
EXAMPLE
|
a(2) = 25 because 25 is the first number n>1 that divides sum of cubes of the first n primes. Mod[ A098999[25], 25] = Mod[ 2^3 + 3^3 + 5^3 + ... + 89^3 + 97^3, 25 ] = 0.
|
|
|
MATHEMATICA
|
s = 0; t = {}; Do[s = s + Prime[n]^3; If[ Mod[s, n] == 0, AppendTo[t, n]], {n, 1000000}]; t
|
|
|
CROSSREFS
|
Cf. A098999, A007504, A045345, A024450, A111441, A122102, A122140, A122103, A122142.
Sequence in context: A000497 A028341 A144942 * A083191 A015679 A014909
Adjacent sequences: A122137 A122138 A122139 * A122141 A122142 A122143
|
|
|
KEYWORD
|
nonn
|
|
|
AUTHOR
|
Alexander Adamchuk, Aug 21 2006
|
|
|
EXTENSIONS
|
a(8) from Donovan Johnson, Oct 15 2012
a(9)-a(10) from Robert Price, Mar 29 2013
|
|
|
STATUS
|
approved
|
| |
|
|