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.

A055104 Expansion of 1 + q/((1-q)*(1-q^2)) + q^2/((1-q)*(1-q^2)*(1-q^3)*(1-q^4)).

Original entry on oeis.org

1, 1, 2, 3, 4, 6, 8, 10, 13, 16, 20, 24, 29, 34, 41, 47, 55, 63, 73, 82, 94, 105, 119, 132, 148, 163, 182, 199, 220, 240, 264, 286, 313, 338, 368, 396, 429, 460, 497, 531, 571, 609, 653, 694, 742, 787, 839, 888, 944, 997, 1058, 1115, 1180, 1242
Offset: 0

Views

Author

N. J. A. Sloane, Jun 14 2000

Keywords

Comments

First 3 terms of a sum studied by Ramanujan.

Programs

  • Mathematica
    LinearRecurrence[{1,1,0,0,-2,0,0,1,1,-1},{1,1,2,3,4,6,8,10,13,16,20},60] (* Harvey P. Dale, Mar 11 2019 *)
  • PARI
    Vec((1 - x^4 + x^5 - x^9 + x^10) / ((1 - x)^4*(1 + x)^2*(1 + x^2)*(1 + x + x^2)) + O(x^100)) \\ Colin Barker, Oct 02 2017