login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A274239
Numbers n such that 9^n + 8^(n+1) is prime.
0
1, 2, 5, 20, 53, 161, 380, 500, 530, 698, 832, 833, 6353, 25433, 53921, 73538
OFFSET
1,2
COMMENTS
a(17) > 10^5.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[9^# + 8^(# + 1)] &]
PROG
(Magma) [n: n in [0..500] | IsPrime(9^n+8^(n+1))]; // Vincenzo Librandi, Jul 12 2016
(PARI) is(n)=ispseudoprime(9^n+8^(n+1)) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Cf. A093765.
Sequence in context: A098510 A168541 A124264 * A271858 A189734 A221678
KEYWORD
nonn,more
AUTHOR
Robert Price, Jun 15 2016
STATUS
approved