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.

A022090 Fibonacci sequence beginning 0, 7.

Original entry on oeis.org

0, 7, 7, 14, 21, 35, 56, 91, 147, 238, 385, 623, 1008, 1631, 2639, 4270, 6909, 11179, 18088, 29267, 47355, 76622, 123977, 200599, 324576, 525175, 849751, 1374926, 2224677, 3599603, 5824280, 9423883, 15248163, 24672046, 39920209, 64592255, 104512464
Offset: 0

Views

Author

Keywords

Comments

The number of heptagons in the n-th ring of the Klein Quartic. - Amiram Eldar, Nov 14 2023

References

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

Crossrefs

Sequences of the form Fibonacci(n+k) + Fibonacci(n-k) are listed in A280154.
Sequences of the form m*Fibonacci are listed in A022086.

Programs

Formula

a(n) = round(((14*phi-7)/5) * phi^n), for n>3. - Thomas Baruchel, Sep 08 2004
a(n) = 7*Fibonacci(n) = Fibonacci(n+4) + Fibonacci(n-4) for n>3.
a(n) = A119457(n+5, n-1) for n>1. - Reinhard Zumkeller, May 20 2006
G.f.: 7*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008