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.

A064185 a(n) = (b(n+3) * b(n-1) * a(n-1)^2 - 1) / b(n+2) where b(n) = A006720(n).

Original entry on oeis.org

1, 1, 1, 2, 13, 867, 12001543, 4909644519038939, 2976533007674072187623474816337374, 5305128832761583696023807632374530398637482018663107882637653612424699
Offset: 0

Views

Author

Michael Somos, Sep 20 2001

Keywords

Crossrefs

Cf. A006720.

Programs

  • PARI
    {a(n) = if( n<1, n>=0, (b(n+3) * b(n-1) * a(n-1)^2 - 1) / b(n+2))}