A131274 Numbers m such that m divides Sum_{k=1..m} prime(k)^14.
1, 295, 455, 4361, 10817, 132680789, 334931875, 957643538339, 82185210732157
Offset: 1
Links
- OEIS Wiki, Sums of powers of primes divisibility sequences.
Crossrefs
Programs
-
Mathematica
s = 0; Do[s = s + Prime[n]^14; If[ Mod[s, n] == 0, Print[n]], {n, 660000000}] (* Robert G. Wilson v, Jul 01 2007 *) With[{nn=11000},Select[Thread[{Accumulate[Prime[Range[nn]]^14],Range[ nn]}],Divisible[ #[[1]],#[[2]]]&]][[All,2]] (* The program generates the first 5 terms of the sequence. To generate more, increase the value of nn. *) (* Harvey P. Dale, Jun 25 2021 *)
Extensions
a(6) from Robert G. Wilson v, Jul 01 2007
a(7) from Robert Price, Dec 02 2013
a(8) from Paul W. Dyson, Jan 03 2021
a(9) from Bruce Garner, Mar 28 2022
Comments