A301852 Integers k such that the remainder of the sum of the first k primes divided by the k-th prime is equal to k.
2, 7, 12, 83408, 5290146169416
Offset: 1
Examples
2 is a term because prime(1)+prime(2) = 5 = 2 mod prime(2).
Links
- Lucas A. Brown, Python program.
Programs
-
Maple
res:= NULL: p:= 1: s:= 0: for m from 1 to 10^6 do p:= nextprime(p); s:= s+p; if s mod p = m then res:= res, m fi od: res; # Robert Israel, Mar 27 2018
-
PARI
lista(nn)= my(p = 2, s = 2); for (n=1, nn, if ((s % p) == n, print1(n, ", ")); q = nextprime(p+1); s += q; p = q;); \\ Michel Marcus, Mar 27 2018
Extensions
a(4) from Michel Marcus, Mar 27 2018
a(5) from Lucas A. Brown, May 18 2023
Comments