OFFSET
1,1
COMMENTS
The coefficients of p in the definition are powers of 2; the constants in the definition are terms of A068156. [Harvey P. Dale, Mar 31 2012]
LINKS
Zak Seidov, Table of n, a(n) for n = 1..12628 (all terms up to 3*10^11)
EXAMPLE
For n=6047, (12097, 24197, 48397, 96797, 193597, 387197) are prime.
MATHEMATICA
okQ[n_]:=And@@PrimeQ[{3+2*n, 9+4*n, 21+8*n, 45+16*n, 93+32*n, 189+64*n}]; Select[Prime[Range[2220000]], okQ] (* Harvey P. Dale, Mar 31 2012 *)
PROG
(Magma) [ p: p in PrimesUpTo(50000000) | IsPrime(p) and IsPrime(2*p+3) and IsPrime(4*p+9) and IsPrime(8*p+21) and IsPrime(16*p+45) and IsPrime(32*p+93) and IsPrime(64*p+189)]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Mar 08 2010
STATUS
approved