OFFSET
1,1
COMMENTS
Conjecture: each odd prime occurs infinitely many times.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 89 because the sum of the 6 consecutive primes starting with 89 is 89+97+101+103+107+109 = 606 = 6*101 where 101 is prime, and no smaller prime works.
MAPLE
P:= select(isprime, [seq(i, i=3..10^5, 2)]):
S:= [0, op(ListTools:-PartialSums(P))]:
nP:= nops(S):
f:= proc(n) local i, s;
for i from 1 to nP-2*n do
s:= S[i+2*n]-S[i];
if s mod 6 = 0 and isprime(s/6) then return P[i] fi
od
end proc:
map(f, [$1..100]);
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Feb 09 2022
STATUS
approved