|
| |
|
|
A122142
|
|
Numbers n such that n divides sum of 5-th powers of the first n primes A122103(n).
|
|
22
|
|
|
|
1, 25, 837, 5129, 94375, 271465, 3576217, 3661659, 484486719, 2012535795, 31455148645, 95748332903
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
1,2
|
|
|
COMMENTS
|
No other terms up to 10^8. -Stefan Steinerberger, Jun 06 2007
a(11) > 6*10^9. - Donovan Johnson, Oct 15 2012
a(13) > 10^11. - Robert Price, Mar 30 2013
|
|
|
LINKS
|
Table of n, a(n) for n=1..12.
|
|
|
EXAMPLE
|
a(2) = 25 because 25 is the first number n>1 that divides A122103[n] = Sum[ Prime[k]^5, {k,1,n} ].
Mod[ A122103[25], 25] = Mod[ 2^5 + 3^5 + 5^5 + ... + 89^5 + 97^5, 25 ] = 0.
|
|
|
MATHEMATICA
|
s = 0; t = {}; Do[s = s + Prime[n]^5; If[ Mod[s, n] == 0, AppendTo[t, n]], {n, 1000000}]; t
|
|
|
CROSSREFS
|
Cf. A122103, A098999, A007504, A045345, A024450, A111441, A122102, A122140.
Sequence in context: A142998 A218479 A183879 * A151557 A008844 A181892
Adjacent sequences: A122139 A122140 A122141 * A122143 A122144 A122145
|
|
|
KEYWORD
|
nonn,hard
|
|
|
AUTHOR
|
Alexander Adamchuk, Aug 21 2006
|
|
|
EXTENSIONS
|
2 more terms from Stefan Steinerberger, Jun 06 2007
a(9)-a(10) from Donovan Johnson, Oct 15 2012
a(11)-a(12) from Robert Price, Mar 30 2013
|
|
|
STATUS
|
approved
|
| |
|
|