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.

A063573 First differences of A002065.

Original entry on oeis.org

1, 2, 10, 170, 33490, 1133870930, 1285739648704587610, 1653126447166808568966775665261637370
Offset: 0

Views

Author

N. J. A. Sloane, Sep 06 2001

Keywords

Comments

Number of trees of height n generated by unary and binary composition. - Claude Lenormand (claude.lenormand(AT)free.fr), Sep 05 2001

Crossrefs

Cf. A002065.

Programs

  • Mathematica
    a[0] = 1; Do[a[n] = a[n - 1]^2 + 2 a[n - 1] Sqrt[a[n - 1] - 1] + a[n - 1], {n, 7}]; Array[a, 8, 0] (* Michael De Vlieger, Apr 13 2022 *)
  • PARI
    a(n)=if(n,my(k=a(n-1));k^2+2*k*sqrtint(k-1)+k,1) \\ Charles R Greathouse IV, Dec 29 2011

Formula

a(n) = a(n-1)^2 + 2 a(n-1) sqrt(a(n-1)-1) + a(n-1) for n > 0. [Charles R Greathouse IV, Dec 29 2011]