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.

A057456 Prime recurrence: a(n+1) = a(n)-th prime, with a(1) = 10.

Original entry on oeis.org

10, 29, 109, 599, 4397, 42043, 506683, 7474967, 131807699, 2724711961, 64988430769, 1765037224331, 53982894593057, 1841803943951113, 69532764058102673, 2884247930418152801
Offset: 1

Views

Author

Robert G. Wilson v, Sep 26 2000

Keywords

Comments

Lubomir Alexandrov informs me that he studied this sequence in his 1965 notebook. - N. J. A. Sloane, May 23 2008

Crossrefs

Cf. A007097.

Programs

  • Mathematica
    NestList[ Prime, 10, 12 ]
  • 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

Extensions

a(14)-a(16) from Robert G. Wilson v, Mar 07 2017 using Kim Walisch's primecount