A219044 Numbers k such that 3^k + 26 is prime.
1, 3, 4, 5, 7, 9, 11, 16, 24, 28, 49, 53, 63, 88, 137, 184, 217, 299, 300, 732, 815, 999, 1243, 1320, 1397, 1668, 2109, 2681, 4973, 5513, 12100, 14284, 14592, 35812, 38559, 49687, 53167, 66907, 88765, 98251, 113548, 137988, 139432, 148008
Offset: 1
Examples
3^3 + 26 = 53 (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 + 26], Print[n]], {n, 10000}]
-
PARI
is(n)=isprime(3^n+26) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(31)-a(44) from Robert Price, Nov 29 2013
Comments