A273942 Primes of the form 3^k + k.
11, 6569, 16677181699666603
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..4
Programs
-
Magma
[a: n in [0..100] | IsPrime(a) where a is 3^n+n];
-
Mathematica
Select[Table[3^n + n, {n, 1, 1000}], PrimeQ]
Comments