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.

A001137 Number of black-rooted red-black trees with n internal nodes.

Original entry on oeis.org

1, 2, 2, 4, 8, 16, 33, 56, 90, 164, 330, 688, 1440, 3008, 6291, 13168, 27604, 57896, 120730, 248312, 501464, 995664, 1954582, 3821328, 7495996, 14848472, 29815976, 60741680, 125363472, 261452256, 549461078, 1160693056, 2459679936, 5221717888
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A001131.

Programs

  • Mathematica
    m = 35; A[_] = 0;
    Do[A[x_] = x*(1 + x)^2*(1 + A[(x + x^2)^2]) + O[x]^m // Normal, {m}];
    CoefficientList[A[x]/x, x] (* Jean-François Alcover, Oct 19 2019 *)
  • PARI
    {a(n)=local(A=x);for(i=1,n,A=x*(1+x)^2*(1 + subst(A,x,(x+x^2)^2+x*O(x^n))));polcoeff(A,n)} \\ Paul D. Hanna, Jun 14 2012

Formula

G.f. satisfies: A(x) = x*(1+x)^2*(1 + A((x+x^2)^2)). - Paul D. Hanna, Jun 14 2012

Extensions

More terms from Sean A. Irvine, Mar 08 2012