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.

A057452 Prime recurrence: a(1)=8, a(n+1) = a(n)-th prime.

Original entry on oeis.org

8, 19, 67, 331, 2221, 19577, 219613, 3042161, 50728129, 997525853, 22742734291, 592821132889, 17461204521323, 575411103069067, 21034688742654437, 846729487306354343
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
a(n) = the Matula number of the rooted tree Q(n) obtained by attaching 3 pendant edges at one of the endpoints of the path-tree P(n) (on n vertices); the root is the other endpoint. - Emeric Deutsch, Jan 18 2014

Crossrefs

Cf. A007097, A235120. Apart from initial terms, probably same as A005518.

Programs

  • Maple
    a := proc (n) option remember: if n = 1 then 8 else ithprime(a(n-1)) end if end proc: seq(a(n), n = 1 .. 9); # Emeric Deutsch, Jan 18 2014
  • Mathematica
    NestList[ Prime, 8, 12 ]

Extensions

More references and links from Emeric Deutsch, Jan 18 2014
a(14)-a(16) from Robert G. Wilson v, Mar 07 2017 using Kim Walisch's primecount