A274022 Primes of the form 2^(2^k) + 3.
5, 7, 19, 65539
Offset: 1
Keywords
Programs
-
Magma
[a: n in [0..10] | IsPrime(a) where a is 2^(2^n)+3];
-
Mathematica
Select[Table[2^(2^n) + 3, {n, 0, 15}], PrimeQ]
-
PARI
for(n=0,4, if(ispseudoprime(t=2^2^n+3), print1(t", "))) \\ Charles R Greathouse IV, Jun 08 2016
Comments