OFFSET
1,1
COMMENTS
Start of a "sexy" prime quadruple (in the sense of A023271) such that 1 + the sum of the quadruple is the start of another "sexy" prime quadruple.
All terms == 1 (mod 30).
LINKS
Robert Israel, Table of n, a(n) for n = 1..115
EXAMPLE
a(1) = 408211 is a term because 408211, 408211+6 = 408217, 408211+12 = 408223, 408211+18 = 408229 are primes (a "sexy" prime quadruple), the sum of this quadruple is 4*408211+36 = 1632880, and 1632880+1 = 1632881, 1632880+7 = 1632887, 1632880+13 = 1632893, 1632880+19 = 1632899 is another "sexy" prime quadruple.
MAPLE
Res:= NULL: count:= 0:
for p from 1 by 30 while count < 40 do
if isprime(p) and isprime(p+6) and isprime(p+12) and isprime(p+18)
and isprime(4*p+37) and isprime(4*p+43) and isprime(4*p+49) and isprime(4*p+55)
then Res:= Res, p; count:= count+1
fi
od:
Res;
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Nov 09 2022
STATUS
approved