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.

A022091 Fibonacci sequence beginning 0, 8.

Original entry on oeis.org

0, 8, 8, 16, 24, 40, 64, 104, 168, 272, 440, 712, 1152, 1864, 3016, 4880, 7896, 12776, 20672, 33448, 54120, 87568, 141688, 229256, 370944, 600200, 971144, 1571344, 2542488, 4113832, 6656320, 10770152, 17426472, 28196624, 45623096, 73819720, 119442816
Offset: 0

Views

Author

Keywords

References

  • A. T. Benjamin and J. J. Quinn, Proofs that really count: the art of combinatorial proof, M.A.A. 2003, p. 15.

Crossrefs

Sequences of the form m*Fibonacci are listed in A022086.

Programs

Formula

a(n) = round( (16phi-8)/5 phi^n) (works for n>4). - Thomas Baruchel, Sep 08 2004
a(n) = 8*F(n) = F(n+4) + F(n) + F(n-4) for n>3, where F=A000045.
G.f.: 8*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008