OFFSET
1,1
COMMENTS
Initial members of prime sextuples that correspond to the difference pattern [10, 8, 6, 4, 2]. The primes in a sextuple do not have to be consecutive.
EXAMPLE
p=13: 13+10=23, 13+18=31, 13+24=37, 13+28=41, 13+30=43 —> prime sextuple: (13, 23, 31, 37, 41, 43).
MATHEMATICA
Select[Prime[Range[150000]], And @@ PrimeQ[# + {10, 18, 24, 28, 30}] &] (* Amiram Eldar, Jul 09 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Yutkin, Jul 09 2025
STATUS
approved
