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.

A288001 Expansion of 1/((1-x)(1-x^3)(1-x^5) ... (1-x^19)).

Original entry on oeis.org

1, 1, 1, 2, 2, 3, 4, 5, 6, 8, 10, 12, 15, 18, 22, 27, 32, 38, 46, 54, 64, 75, 88, 102, 119, 138, 159, 184, 211, 242, 277, 316, 359, 409, 463, 524, 592, 667, 750, 843, 945, 1057, 1182, 1318, 1469, 1635, 1816, 2014, 2233, 2470, 2730, 3014, 3323, 3659, 4026
Offset: 0

Views

Author

Seiichi Manyama, Jun 04 2017

Keywords

Comments

Number of partitions of n into odd parts less than or equal to 19.
Number of partitions (d1,d2,...,d10) of n such that 0 <= d1/1 <= d2/2 <= ... <= d10/10.

Crossrefs

Cf. A259094.

Programs

  • Mathematica
    CoefficientList[Series[1/Times@@Table[(1-x^exp),{exp,Range[1,19,2]}],{x,0,60}],x] (* Harvey P. Dale, Mar 08 2025 *)