A219040 Numbers k such that 3^k + 20 is prime.
1, 2, 3, 4, 5, 7, 8, 10, 11, 14, 44, 55, 68, 71, 80, 123, 158, 213, 220, 272, 668, 725, 885, 1132, 1677, 2056, 2618, 3130, 3986, 6027, 8660, 11582, 12278, 14054, 62956, 103431, 120434, 123890, 181407
Offset: 1
Examples
3^3 + 20 = 47 (prime), so 3 is in the sequence.
Crossrefs
Cf. Sequences of numbers k such that 3^k + m is prime:
Programs
-
Mathematica
Do[If[PrimeQ[3^n + 20], Print[n]], {n, 10000}]
-
PARI
is(n)=isprime(3^n+20) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(32)-a(39) from Robert Price, Oct 20 2013
Comments