A219051 Numbers k such that 3^k - 34 is prime.
4, 7, 11, 13, 29, 32, 36, 44, 79, 157, 197, 341, 467, 996, 1421, 2479, 3269, 5203, 7987, 9341, 14836, 26047, 47816, 64304, 100693, 127597, 167167, 174697, 182089, 198791
Offset: 1
Examples
For k = 4, 3^4 - 34 = 47 and 47 is prime. Hence k = 4 is included in the sequence.
Crossrefs
Cf. Sequences of numbers k such that 3^k + m is prime:
Programs
-
Mathematica
Do[If[PrimeQ[3^n - 34], Print[n]], {n, 1, 10000}] Select[Range[10000], PrimeQ[3^# - 34] &] (* Alonso del Arte, Nov 10 2012 *)
-
PARI
is(n)=isprime(3^n-34) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(21)-a(30) from Robert Price, Nov 23 2013
Comments