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.

A265278 Expansion of (x^4+x^3-x^2+x)/(x^3+x^2-3*x+1).

Original entry on oeis.org

0, 1, 2, 6, 16, 40, 98, 238, 576, 1392, 3362, 8118, 19600, 47320, 114242, 275806, 665856, 1607520, 3880898, 9369318, 22619536, 54608392, 131836322, 318281038, 768398400, 1855077840, 4478554082, 10812186006, 26102926096, 63018038200, 152139002498, 367296043198
Offset: 0

Views

Author

Alois P. Heinz, Apr 06 2016

Keywords

Crossrefs

Agrees with A213667 except for initial terms.

Programs

  • Mathematica
    Table[2 Fibonacci[n-1, 2] + LucasL[n-1, 2]/2 + KroneckerDelta[n-1] - 1, {n, 0, 20}] (* Vladimir Reshetnikov, Sep 16 2016 *)
    LinearRecurrence[{3,-1,-1},{0,1,2,6,16},40] (* Harvey P. Dale, Mar 18 2018 *)
  • PARI
    concat(0, Vec(x*(1-x+x^2+x^3)/((1-x)*(1-2*x-x^2)) + O(x^50))) \\ Colin Barker, Apr 12 2016

Formula

From Colin Barker, Apr 12 2016: (Start)
a(n) = (-2 + (1-sqrt(2))^n + (1+sqrt(2))^n)/2 for n>1.
a(n) = 3*a(n-1)-a(n-2)-a(n-3) for n>4.
(End)
E.g.f.: x + (cosh(sqrt(2)*x) - 1)*exp(x). - Ilya Gutkovskiy, Sep 16 2016