|
|
A160034
|
|
Primes of the form 2^(2^n) + 807 .
|
|
4
|
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
Terms given correspond to n= 0, 1, 2, 3, 4, 6 and 8.
|
|
LINKS
|
|
|
MATHEMATICA
|
Select[Table[2^(2^n) + 807, {n, 0, 10}], PrimeQ] (* Vincenzo Librandi, Jun 05 2016 *)
|
|
PROG
|
(PARI) g(n, m) = for(x=0, n, y=2^(2^x)+m; if(ispseudoprime(y), print1(y", ")))
(Magma) [ a: n in [0..10] | IsPrime(a) where a is 2^(2^n) + 807 ]; // Vincenzo Librandi, Jun 05 2016
|
|
CROSSREFS
|
Cf. similar sequences listed in A273547.
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|