OFFSET
1,1
COMMENTS
Numbers n such that n remains prime through 5 iterations of function f(x) = 2x - 1.
LINKS
EXAMPLE
First sextuplet is (16651,33301,66601,133201,266401,532801).
PROG
(Magma) [ p: p in PrimesUpTo(6*10^6) | forall{q: k in [1..5] | IsPrime(q) where q is 2^k*(p-1)+1} ]; // Bruno Berselli, Nov 23 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick De Geest, Aug 15 2000
EXTENSIONS
Offset changed by Andrew Howroyd, Aug 13 2024
STATUS
approved