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.

A218032 G.f. A(x) satisfies A(x) = 1 + x / (1 - x * A(x^2)).

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 5, 8, 13, 21, 35, 57, 94, 154, 254, 417, 687, 1129, 1859, 3057, 5032, 8277, 13623, 22412, 36883, 60684, 99862, 164312, 270384, 444899, 732093, 1204629, 1982228, 3261701, 5367131, 8831505, 14532200, 23912499, 39347839, 64746320, 106539481, 175309363, 288469809
Offset: 0

Views

Author

Joerg Arndt, Oct 19 2012

Keywords

Comments

What does this sequence count?

Crossrefs

Programs

  • PARI
    N=66;  R=O('x^N);  x='x+R;
    F = 1 + x;
    for (k=1,N+1, F = 1 + x / (1 - x * subst(F,'x,'x^2) ) + R; );
    Vec(F)