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.

A113438 Third row of A113435.

Original entry on oeis.org

1, 4, 16, 62, 237, 901, 3418, 12956, 49096, 186029, 704861, 2670692, 10119152, 38341126, 145273353, 550436561, 2085588866, 7902239404, 29941371656, 113447051497, 429847830217, 1628681887876, 6171031956688, 23381874459566, 88593294803061, 335677616363629
Offset: 0

Views

Author

Floor van Lamoen, Nov 04 2005

Keywords

Crossrefs

Cf. A113435.

Programs

  • Mathematica
    CoefficientList[Series[(1 - x)^3/(x^4 - 11*x^3 + 15*x^2 - 7*x + 1), {x, 0, 30}], x] (* Wesley Ivan Hurt, May 28 2015 *)
  • PARI
    Vec(-(x-1)^3 / (x^4-11*x^3+15*x^2-7*x+1) + O(x^100)) \\ Colin Barker, May 28 2015

Formula

a(n) = 7*a(n-1)-15*a(n-2)+11*a(n-3)-a(n-4), n>4.
a(n) = A113435(3n+2).
G.f.: (1-x)^3 / (x^4-11*x^3+15*x^2-7*x+1).

Extensions

Error in recursion and strange things in formula fixed by Colin Barker, May 28 2015