login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A077213 a(1) = 2, a(n+1) is the smallest prime greater than n*a(n). 1
2, 3, 7, 23, 97, 487, 2927, 20507, 164057, 1476523, 14765237, 162417611, 1949011333, 25337147347, 354720062861, 5320800943001, 85132815088031, 1447257856496689, 26050641416940457, 494962186921868723 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = nextprime((n-1)*a(n-1)).
MATHEMATICA
PrimeNext[n_]:=Module[{k}, k=n+1; While[ !PrimeQ[k], k++ ]; k]; p=2; lst={p}; Do[p=PrimeNext[n*p]; AppendTo[lst, p], {n, 2*4!}]; lst (* Vladimir Joseph Stephan Orlovsky, May 27 2009 *)
CROSSREFS
Sequence in context: A087770 A237359 A087164 * A112601 A181609 A205827
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Nov 02 2002
EXTENSIONS
More terms from Vladeta Jovovic, Apr 14 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 07:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)