A131273 Numbers k that divide Sum_{j=1..k} prime(j)^13.
1, 23, 299, 313, 171287, 435705, 487475, 3774601, 219347813, 9613155161, 5150163868035, 37365789554345, 228914067371295
Offset: 1
Links
- OEIS Wiki, Sums of powers of primes divisibility sequences.
Crossrefs
Programs
-
Mathematica
s = 0; Do[s = s + Prime[n]^13; If[ Mod[s, n] == 0, Print[n]], {n, 200000}]
-
PARI
S=n=0;forprime(p=1,,(S+=p^13)%n++||print1(n",")) \\ M. F. Hasler, Dec 01 2013
Extensions
a(6)-a(8) from Robert G. Wilson v, Jun 30 2007
a(9)-a(10) from Robert Price, Nov 28 2013
a(11) from Bruce Garner, Mar 23 2021
a(12) from Bruce Garner, Aug 30 2021
a(13) from Paul W. Dyson, Apr 20 2023
Comments