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.

A217134 Numbers n such that 5^n - 8 is prime.

Original entry on oeis.org

2, 4, 10, 14, 88, 112, 140, 764, 3040, 11096, 24934, 25616, 54584, 93400
Offset: 1

Views

Author

Vincenzo Librandi, Oct 01 2012

Keywords

Comments

a(15) > 10^5. - Robert Price, Feb 03 2014

Crossrefs

Programs

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

Extensions

a(10)-a(14) from Robert Price, Feb 03 2014