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.

A239928 Expansion of F(x^2, x) where F(x,y) is the g.f. of A239927.

Original entry on oeis.org

1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 2, 0, 1, 3, 1, 1, 4, 3, 2, 5, 6, 4, 6, 10, 8, 9, 15, 15, 15, 22, 26, 26, 33, 43, 45, 52, 69, 76, 85, 109, 127, 141, 173, 209, 235, 278, 340, 390, 452, 550, 643, 742, 890, 1054, 1221, 1445, 1720, 2007, 2356, 2803, 3291, 3853, 4568, 5385, 6309, 7450, 8800, 10330, 12164, 14372, 16905, 19879
Offset: 0

Views

Author

Joerg Arndt, Mar 29 2014

Keywords

Comments

What does this sequence count?

Crossrefs

Cf. A000108 (F(1, x)), A143951 (F(x, 1)), A005169 (F(x, x), with interlaced zeros), A227310 (F(x, x^2)).

Programs

  • PARI
    N=66; x='x+O('x^N);
    F(x, y, d=0)=if (d>N, 1, 1 / (1-x*y * F(x, x^2*y, d+1) ) );
    Vec( F(x^2, x) )

Formula

G.f.: 1/(1 - x^3/(1 - x^7/(1 - x^11/(1 - x^15/(1 - x^19/(1 - x^23/( ... ))))))).