A131278 Numbers m such that m divides the sum of the 18th powers of the first m primes.
1, 37, 265, 17207, 9382589, 970248431, 2427811793, 156281194823, 2955922292131, 372012276565795
Offset: 1
Links
- OEIS Wiki, Sums of powers of primes divisibility sequences.
Crossrefs
Programs
-
Mathematica
s = 0; Do[s = s + Prime[n]^18; If[ Mod[s, n] == 0, Print[n]], {n, 10^6}] With[{nn = 18000}, Transpose[With[{c = Thread[{Range[nn], Accumulate[Prime[ Range[nn]]^18]}]}, Select[c, Divisible[Last[#], First[#]] &]]][[1]]] (* Harvey P. Dale, Dec 19 2011 *)
Extensions
a(5)-a(7) from Robert Price, Dec 13 2013
a(8) from Paul W. Dyson, Jan 08 2021
a(9) from Bruce Garner, Mar 17 2021
a(10) from Paul W. Dyson, Oct 03 2023
Comments