OFFSET
1,1
COMMENTS
First differs from A079015 at a(25) = 122271557.
All terms == 7 (mod 10).
LINKS
EXAMPLE
a(3) = 12674657 is a term because 12674657 is prime and the next five primes are 12674657 + 2 = 12674659, 12674659 + 4 = 12674663, 12674663 + 8 = 12674671, 12674671 + 16 = 12674687 and 12674687 + 32 = 12674719.
MAPLE
p:= 2: state:= 1: count:= 0: Res:= NULL:
while count < 100 do
q:= nextprime(p);
if q - p = 2^state then
state:= state+1;
if state = 6 then
count:= count+1; Res:= Res, q-62;
fi;
else state:= 1
fi;
p:= q;
od:
Res;
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov and Robert Israel, Apr 17 2024
STATUS
approved