A219048 Numbers k such that 3^k + 32 is prime.
2, 3, 4, 6, 23, 24, 38, 164, 172, 176, 207, 216, 251, 272, 424, 1112, 1318, 2072, 2664, 3143, 4704, 5236, 9526, 13064, 13523, 27111, 35931, 37504, 47542, 128656, 181551
Offset: 1
Examples
For k = 2, 3^2 + 32 = 41 (prime). Hence k = 2 is in the sequence.
Crossrefs
Cf. Sequences of numbers k such that 3^k + m is prime:
Programs
-
Mathematica
Do[If[PrimeQ[3^n + 32], Print[n]], {n, 10000}]
-
PARI
is(n)=isprime(3^n+32) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(23)-a(31) from Robert Price, Nov 15 2013
Comments