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

A054321
Smallest prime greater than 5^n.
5
2, 7, 29, 127, 631, 3137, 15629, 78137, 390647, 1953151, 9765629, 48828139, 244140683, 1220703131, 6103515637, 30517578167, 152587890649, 762939453127, 3814697265637, 19073486328181, 95367431640673, 476837158203149
OFFSET
0,1
LINKS
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 *)
PROG
(PARI) a(n)=nextprime(5^n+1) \\ Charles R Greathouse IV, Jun 19 2011
CROSSREFS
Cf. A014210, A014211, A013599 (a(n)-5^n).
Sequence in context: A278391 A126568 A150663 * A344502 A150664 A193040
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Aug 14 2001
STATUS
approved