A129963 Primes of the form 4^k + k.
5, 67, 262153, 1073741839, 18889465931478580854821, 1496577676626844588240573268701473812127674924007509, 118571099379011784113736688648896417641748464297615937576404566024103044751294597
Offset: 1
Keywords
Examples
For k = 3, 4^3 + 3 = 67 is prime.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..9
Programs
-
Mathematica
Select[Table[4^n+n,{n,1,251,2}],PrimeQ] (* Harvey P. Dale, Jun 05 2014 *)
-
PARI
f(n) = for(x=1,n,y=2^x+x;if(isprime(y),print1(y",")))
Comments