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.

A001584 A generalized Fibonacci sequence.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 4, 4, 4, 7, 7, 8, 12, 12, 16, 21, 21, 31, 37, 38, 58, 65, 71, 106, 114, 135, 191, 201, 257, 341, 359, 485, 605, 652, 904, 1070, 1202, 1664, 1894, 2237, 3029, 3370, 4176, 5464, 6048, 7779, 9793, 10963, 14411, 17492, 20054, 26507, 31239, 36924, 48396
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

Cf. A017817.

Programs

  • Maple
    A001584:=(z-1)*(z**2+z+1)**2/(z**4-z**3+1)/(z**4+z**3-1); # Simon Plouffe in his 1992 dissertation
  • PARI
    Vec((1+x+x^2-x^3-x^4-x^5)/(1-2*x^3+x^6-x^8) + O(x^80)) \\ Michel Marcus, Sep 07 2017

Formula

G.f.: (1 + x + x^2 - x^3 - x^4 - x^5)/(1 - 2*x^3 + x^6 - x^8).

Extensions

More terms from David W. Wilson