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.

A138653 a(n) = 3*a(n-1)-3*a(n-2)+a(n-3)+a(n-4).

Original entry on oeis.org

1, 2, 4, 8, 15, 27, 48, 86, 156, 285, 521, 950, 1728, 3140, 5707, 10379, 18884, 34362, 62520, 113737, 206897, 376362, 684652, 1245504, 2265815, 4121947, 7498552, 13641134, 24815508, 45143621, 82124025, 149397854, 271780616, 494415932, 899427827, 1636214155
Offset: 0

Views

Author

Paul Curtz, May 15 2008

Keywords

Comments

Sequence is identical to its shifted third differences.

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{3, -3, 1, 1},{1, 2, 4, 8},14] (* Ray Chandler, Sep 23 2015 *)
  • PARI
    Vec((1-x+x^2+x^3)/(1-3*x+3*x^2-x^3-x^4) + O(x^50)) \\ Colin Barker, Oct 18 2016

Formula

G.f.: (1-x+x^2+x^3) / (1-3*x+3*x^2-x^3-x^4). - Colin Barker, Oct 18 2016