OFFSET
1,1
COMMENTS
a(n) generates a Cunningham chain of length 4 and a_n(i) + 8 is also prime for i = 1,2,3 and 4.
This sequence is infinite under Dickson's conjecture.
LINKS
Chris K. Caldwell, Cunningham chain
EXAMPLE
a(1)=359, with associated Cunningham chain 359, 719, 1439, 2879; all of which are the lower member of a pair (p, p+8): (359,367), (719,727), (1439,1447), (2879,2887).
PROG
(Python)
from sympy import isprime, primerange
is_a237017 = lambda p: all(isprime(q) for q in (p+8, 2*p+1, 2*p+9, 4*p+3, 4*p+11, 8*p+7, 8*p+15))
print(*[p for p in primerange(10**7) if is_a237017(p)], sep=', ')
# David Radcliffe, May 11 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Abhiram R Devesh, Feb 02 2014
STATUS
approved
