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.

A291983 Expansion of 1/((1+x)*(1+x^2)*(1+x^3)).

Original entry on oeis.org

1, -1, 0, -1, 2, -1, 1, -2, 2, -2, 2, -2, 3, -3, 2, -3, 4, -3, 3, -4, 4, -4, 4, -4, 5, -5, 4, -5, 6, -5, 5, -6, 6, -6, 6, -6, 7, -7, 6, -7, 8, -7, 7, -8, 8, -8, 8, -8, 9, -9, 8, -9, 10, -9, 9, -10, 10, -10, 10, -10, 11, -11, 10, -11, 12, -11, 11, -12, 12, -12, 12
Offset: 0

Views

Author

Seiichi Manyama, Sep 07 2017

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[1/((1+x)(1+x^2)(1+x^3)),{x,0,70}],x] (* or *) LinearRecurrence[ {-1,-1,-2,-1,-1,-1},{1,-1,0,-1,2,-1},80] (* Harvey P. Dale, Jun 12 2022 *)
  • PARI
    Vec(1/((1+x)*(1+x^2)*(1+x^3)) + O(x^100))