OFFSET
1,1
EXAMPLE
2267, 2269, 2273 and 2281 are consecutive primes with gaps of 2, 4 and 8, so 2267 is in the sequence.
MATHEMATICA
First /@ Parallelize[
Select[Table[NextPrime[Prime@i, Range@4], {i, 10^5}],
Differences@# == {2, 4, 8} &]] (* Mikk Heidemaa, Apr 25 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
R. J. Mathar, Apr 24 2024
STATUS
approved