cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A217133 Numbers n such that 5^n + 8 is prime.

Original entry on oeis.org

1, 95, 335, 3155, 28651, 91135
Offset: 1

Views

Author

Vincenzo Librandi, Oct 01 2012

Keywords

Comments

Naturally these numbers are odd since (6-1)^(2n)+8 is divisible by 3. - Bruno Berselli, Oct 04 2012
a(7) > 10^5. - Robert Price, Feb 03 2014
a(7) > 5*10^5. - Tyler NeSmith, Apr 24 2022

Crossrefs

Programs

  • Mathematica
    Select[Range[1, 15000, 2], PrimeQ[5^# + 8] &]
  • PARI
    for(n=1, 5*10^3, if(isprime(5^n+8), print1(n", ")))

Extensions

a(5)-a(6) from Robert Price, Feb 03 2014