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.

A279285 Self-composition of the Pell numbers; g.f.: A(x) = G(G(x)), where G(x) = g.f. of A000129.

Original entry on oeis.org

0, 1, 4, 18, 82, 377, 1740, 8045, 37226, 172314, 797744, 3693493, 17101128, 79180525, 366618808, 1697509962, 7859781454, 36392245541, 168502887396, 780199897985, 3612471696230, 16726421117538, 77446465948772, 358591660029577, 1660346632032144, 7687716275234809, 35595568065121900, 164814155562334914
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 09 2016

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[x (1 - 2 x - x^2)/(1 - 6 x + 5 x^2 + 6 x^3 + x^4), {x, 0, 27}], x]
    LinearRecurrence[{6, -5, -6, -1}, {0, 1, 4, 18}, 28]

Formula

G.f.: x*(1 - 2*x - x^2)/(1 - 6*x + 5*x^2 + 6*x^3 + x^4).
a(n) = 6*a(n-1) - 5*a(n-2) - 6*a(n-3) - a(n-4).