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.

A022089 Fibonacci sequence beginning 0, 6.

Original entry on oeis.org

0, 6, 6, 12, 18, 30, 48, 78, 126, 204, 330, 534, 864, 1398, 2262, 3660, 5922, 9582, 15504, 25086, 40590, 65676, 106266, 171942, 278208, 450150, 728358, 1178508, 1906866, 3085374, 4992240, 8077614, 13069854, 21147468, 34217322, 55364790, 89582112, 144946902
Offset: 0

Views

Author

Keywords

Comments

Starting with a(0)=1, a(1)=3, a(n) = the number of ternary length-2 squarefree words of length n.

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 listed in A022086.

Programs

Formula

a(n) = round( (12*phi-6)/5 * phi^n) for n>3. - Thomas Baruchel, Sep 08 2004
a(n) = 6*F(n) = F(n+3) + F(n+1) + F(n-4), n>3, where F=A000045.
a(n) = A119457(n+4,n-1) for n>1. - Reinhard Zumkeller, May 20 2006
G.f.: 6*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 6 * A000045(n). - Alois P. Heinz, Jan 18 2019