A262962 Prime p such that 2^p + 35 is also prime.
3, 5, 7, 11, 263, 509, 1087, 26263, 348437
Offset: 1
Examples
For p=3, 2^3 + 35 = 43, which is prime.
Crossrefs
Programs
-
Magma
[p: p in PrimesUpTo(700) | IsPrime(2^p+35)]; // Vincenzo Librandi, Oct 06 2015
-
Mathematica
Select[Prime[Range[100000]], PrimeQ[(2^# + 35)] &]
-
PARI
forprime(p=2, 10^30, if (isprime(2^p + 35), print1(p", "))); \\ Altug Alkan, Oct 05 2015
Comments