The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A057456 Prime recurrence: a(n+1) = a(n)-th prime, with a(1) = 10. 7
10, 29, 109, 599, 4397, 42043, 506683, 7474967, 131807699, 2724711961, 64988430769, 1765037224331, 53982894593057, 1841803943951113, 69532764058102673, 2884247930418152801 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Lubomir Alexandrov informs me that he studied this sequence in his 1965 notebook. - N. J. A. Sloane, May 23 2008
LINKS
Lubomir Alexandrov, Prime Number Sequences And Matrices Generated By Counting Arithmetic Functions, Communications of the Joint Institute of Nuclear Research, E5-2002-55, Dubna, 2002.
MATHEMATICA
NestList[ Prime, 10, 12 ]
PROG
(Python)
from sympy import prime
from itertools import accumulate
def f(an, _): return prime(an)
print(list(accumulate([10]*10, f))) # Michael S. Branicky, Oct 29 2021
CROSSREFS
Cf. A007097.
Sequence in context: A301571 A027979 A181102 * A002422 A031195 A034117
KEYWORD
nonn,hard,more
AUTHOR
Robert G. Wilson v, Sep 26 2000
EXTENSIONS
a(14)-a(16) from Robert G. Wilson v, Mar 07 2017 using Kim Walisch's primecount
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 May 17 12:26 EDT 2024. Contains 372600 sequences. (Running on oeis4.)