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.

A001588 a(n) = a(n-1) + a(n-2) - 1.

Original entry on oeis.org

1, 3, 3, 5, 7, 11, 17, 27, 43, 69, 111, 179, 289, 467, 755, 1221, 1975, 3195, 5169, 8363, 13531, 21893, 35423, 57315, 92737, 150051, 242787, 392837, 635623, 1028459, 1664081, 2692539, 4356619, 7049157, 11405775, 18454931, 29860705, 48315635
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

Formula

From Henry Bottomley, Feb 20 2001: (Start)
a(n) = 2*Fibonacci(n) + 1 = A000045(n) + A001611(n).
G.f.: (1+x-3x^2)/(1-2*x+x^3). (End)
If n>=4, a(n) = floor(Phi*a(n-1)); Phi = (1 + sqrt(5))/2. - Philippe Deléham, Aug 08 2003
a(n) = F(n-2) + F(n+1) + 1, n >= 0 (where F(n) is the n-th Fibonacci number). - Zerinvary Lajos, Feb 01 2008