A131276 Numbers m such that m divides Sum_{k=1..m} prime(k)^16.
1, 3131, 6289, 323807, 443371, 83802527023, 4076111200313
Offset: 1
Links
- OEIS Wiki, Sums of powers of primes divisibility sequences.
Crossrefs
Programs
-
Mathematica
s = 0; Do[s = s + Prime[n]^16; If[ Mod[s, n] == 0, Print[n]], {n, 500000}] Transpose[Select[With[{nn=500000},Thread[{Range[nn],Accumulate[ Prime[ Range[nn]]^16]}]], Divisible[ #[[2]],#[[1]]]&]][[1]]
Extensions
a(6) from Paul W. Dyson, Dec 30 2020
a(7) from Bruce Garner, Mar 24 2021
Comments