A160030 Primes of the form 2^(2^k)+385.
389, 401, 641, 65921, 4294967681, 340282366920938463463374607431768211841
Offset: 1
Keywords
Crossrefs
Programs
-
Magma
[a: n in [0..15] | IsPrime(a) where a is 2^(2^n)+385]; // Vincenzo Librandi, Jun 07 2016
-
Mathematica
Select[Table[2^(2^n) + 385, {n, 0, 20}], PrimeQ] (* Vincenzo Librandi, Jun 07 2016 *)
-
PARI
g(n,m) = for(x=0,n,y=2^(2^x)+m;if(ispseudoprime(y),print1(y",")))
Comments