A262201 Prime p such that 2^p + 33 is also prime.
2, 3, 11, 1499, 2039
Offset: 1
Examples
For p=3, 2^3 + 33 = 41, which is prime.
Crossrefs
Programs
-
Magma
[p: p in PrimesUpTo(1000) | IsPrime(2^p+33)]; // Vincenzo Librandi, Oct 05 2015
-
Mathematica
Select[Prime[Range[100000]], PrimeQ[(2^# + 33)] &]
-
PARI
forprime(p=2, 10000, if (isprime(2^p + 33), print1(p", "))); \\ Altug Alkan, Oct 05 2015
Comments