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.

A127784 G.f. satisfies: A(x) = 1 + (x+x^2)*A(x+x^2)^2.

Original entry on oeis.org

1, 1, 3, 11, 51, 266, 1540, 9681, 65291, 468401, 3551693, 28327029, 236731183, 2066583601, 18796448581, 177735656083, 1743920667437, 17725856560839, 186366309301259, 2024042644283702, 22679125592930412, 261873356070694571
Offset: 0

Views

Author

Paul D. Hanna, Jan 28 2007

Keywords

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=0,n,A=1+subst(x*A^2,x,x+x^2));polcoeff(A,n)}