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.

Showing 1-1 of 1 results.

A296237 Expansion of Product_{k>0} 1/(1 - x^(k*(3*k+1)/2)).

Original entry on oeis.org

1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 3, 5, 4, 6, 4, 6, 5, 6, 6, 7, 7, 7, 7, 9, 8, 10, 9, 11, 10, 11, 12, 12, 13, 13, 14, 15, 14, 17, 16, 19, 18, 20, 20, 21, 22, 23, 24, 25, 25, 28, 27, 30, 29, 33, 32, 35, 35, 37, 38, 39
Offset: 0

Views

Author

Seiichi Manyama, Dec 09 2017

Keywords

Comments

Integer partitions into second or "negative" pentagonal numbers (A005449) .

Crossrefs

Programs

  • Mathematica
    nmax = 100; CoefficientList[Series[Product[1/(1 - x^(k*(3*k+1)/2)), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 10 2017 *)
  • PARI
    N=66; x='x+O('x^N); Vec(1/prod(k=1, N, (1-x^(k*(3*k+1)/2))))
Showing 1-1 of 1 results.