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.

A122889 Antidiagonal sums of table A122888.

Original entry on oeis.org

1, 1, 2, 3, 6, 12, 27, 67, 180, 528, 1676, 5721, 20924, 81634, 338322, 1484209, 6870492, 33460830, 170997842, 914764494, 5111445917, 29773148141, 180449216699, 1136060712131, 7418026238304, 50163775035664
Offset: 0

Views

Author

Paul D. Hanna, Sep 18 2006

Keywords

Comments

In table A122888, row n lists the coefficients of x^k, k=1..2^n, in the n-th self-composition of (x + x^2) for n>=0.

Crossrefs

Cf. A122888.

Programs

  • PARI
    {a(n)=local(F=x+x^2, G, RS); RS=0; for(k=0, n, G=x+x*O(x^n); for(i=1, n-k, G=subst(F, x, G)); RS+=polcoeff(G, k, x)); RS} \\ Paul D. Hanna, Nov 28 2009