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”).

A217134
Numbers n such that 5^n - 8 is prime.
1
2, 4, 10, 14, 88, 112, 140, 764, 3040, 11096, 24934, 25616, 54584, 93400
OFFSET
1,1
COMMENTS
a(15) > 10^5. - Robert Price, Feb 03 2014
MATHEMATICA
Select[Range[2, 5000], PrimeQ[5^# - 8] &]
PROG
(PARI) for(n=2, 5*10^3, if(isprime(5^n-8), print1(n", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Oct 01 2012
EXTENSIONS
a(10)-a(14) from Robert Price, Feb 03 2014
STATUS
approved