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

A082282
a(1) = 2, a(n) is the smallest prime > n*a(n-1).
2
2, 5, 17, 71, 359, 2161, 15131, 121061, 1089551, 10895513, 119850691, 1438208297, 18696707863, 261753910123, 3926308651849, 62820938429593, 1067955953303143, 19223207159456609, 365240936029675579
OFFSET
1,1
LINKS
FORMULA
a(n) = nextprime(n*a(n-1)).
MATHEMATICA
nxt[{n_, a_}]:={n+1, NextPrime[a(n+1)]}; NestList[nxt, {1, 2}, 20][[All, 2]] (* Harvey P. Dale, Jun 14 2019 *)
CROSSREFS
Cf. A077213.
Sequence in context: A101900 A005966 A336282 * A005967 A369402 A104859
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 13 2003
EXTENSIONS
More terms from Vladeta Jovovic, Apr 14 2003
STATUS
approved