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.

A022376 Fibonacci sequence beginning 2, 28.

Original entry on oeis.org

2, 28, 30, 58, 88, 146, 234, 380, 614, 994, 1608, 2602, 4210, 6812, 11022, 17834, 28856, 46690, 75546, 122236, 197782, 320018, 517800, 837818, 1355618, 2193436, 3549054, 5742490, 9291544, 15034034, 24325578, 39359612, 63685190, 103044802, 166729992, 269774794, 436504786
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A022104.

Programs

  • Mathematica
    LinearRecurrence[{1,1}, {2,28}, 50] (* G. C. Greubel, Oct 04 2017 *)
  • PARI
    x='x+O('x^50); Vec((2+26*x)/(1-x-x^2)) \\ G. C. Greubel, Oct 04 2017

Formula

G.f.: (2+26*x)/(1-x-x^2). - Philippe Deléham, Nov 19 2008
a(n) = 2 * A022104(n).