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.

A288341 Expansion of 1 / ((1-x)^2*(1-x^2)*(1-x^3)*...*(1-x^6)).

Original entry on oeis.org

1, 2, 4, 7, 12, 19, 30, 44, 64, 90, 125, 169, 227, 298, 388, 498, 634, 797, 996, 1231, 1513, 1844, 2235, 2689, 3221, 3833, 4542, 5353, 6284, 7341, 8547, 9907, 11447, 13176, 15121, 17293, 19725, 22427, 25436, 28767, 32459, 36529, 41023, 45958, 51385, 57327
Offset: 0

Views

Author

Seiichi Manyama, Jun 08 2017

Keywords

Comments

Number of partitions of at most n into at most 6 parts.

Crossrefs

Number of partitions of at most n into at most k parts: A002621 (k=4), A002622 (k=5), this sequence (k=6), A288342 (k=7), A288343 (k=8), A288344 (k=9), A288345 (k=10).
Cf. A288253. Column 6 of A092905. A001402 (first differences).

Programs

  • PARI
    x='x+O('x^99); Vec(1/((1-x)*prod(i=1, 6, (1-x^i)))) \\ Altug Alkan, Mar 28 2018