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.

A023441 Dying rabbits: a(n) = a(n-1) + a(n-2) - a(n-11).

Original entry on oeis.org

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 143, 231, 372, 600, 967, 1559, 2513, 4051, 6530, 10526, 16967, 27350, 44086, 71064, 114550, 184647, 297638, 479772, 773359, 1246601, 2009434, 3239068, 5221152, 8416134
Offset: 0

Views

Author

Keywords

Crossrefs

See A000045 for the Fibonacci numbers.

Programs

  • Mathematica
    LinearRecurrence[{1,1,0,0,0,0,0,0,0,0,-1},{0,1,1,2,3,5,8,13,21,34,55},40] (* Harvey P. Dale, Jun 06 2022 *)
  • PARI
    concat(0, Vec(x/((x-1)*(1+x)*(x^9+x^7+x^5+x^3+x-1)) + O(x^50))) \\ Michel Marcus, Sep 06 2017

Formula

G.f.: x/((x-1)*(1+x)*(x^9+x^7+x^5+x^3+x-1)). [R. J. Mathar, Jul 27 2009]