A187733 Primes of the form 2^n + n + 2.
3, 5, 13, 137, 523, 524309, 134217757, 8589934627, 178405961588244985132285746181186892047843477
Offset: 1
Keywords
Examples
8589934627 is in the sequence since 8589934627 = 2^33 + 33 + 2 and 8589934627 is prime.
Links
- Hugo Pfoertner, Table of n, a(n) for n = 1..10
- FactorDB, 2^n + n + 2.
Programs
-
Mathematica
Select[Table[2^n + n + 2, {n, 60}], PrimeQ[#] &]
Comments