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.

A054321 Smallest prime greater than 5^n.

Original entry on oeis.org

2, 7, 29, 127, 631, 3137, 15629, 78137, 390647, 1953151, 9765629, 48828139, 244140683, 1220703131, 6103515637, 30517578167, 152587890649, 762939453127, 3814697265637, 19073486328181, 95367431640673, 476837158203149
Offset: 0

Views

Author

Robert G. Wilson v, Aug 14 2001

Keywords

Crossrefs

Cf. A014210, A014211, A013599 (a(n)-5^n).

Programs

  • Maple
    seq(nextprime(5^n),n=0..100); # Robert Israel, May 19 2014
  • Mathematica
    NextPrime[ n_Integer] := (k = n + 1; While[ !PrimeQ[k], k++ ]; k); Table[ NextPrime[5^n], {n, 0, 22} ] (* Mathematica 5 and below *)
    NextPrime[5^Range[0,25]] (* Mathematica 6; Harvey P. Dale, Jun 19 2011 *)
  • PARI
    a(n)=nextprime(5^n+1) \\ Charles R Greathouse IV, Jun 19 2011