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.

A347543 Number of partitions of n into 7 or more parts.

Original entry on oeis.org

1, 2, 4, 7, 12, 19, 30, 45, 66, 95, 134, 186, 255, 345, 461, 611, 801, 1043, 1346, 1727, 2199, 2787, 3508, 4398, 5482, 6809, 8414, 10365, 12711, 15545, 18935, 23006, 27854, 33646, 40513, 48680, 58326, 69748, 83192, 99048, 117650, 139513, 165083, 195034, 229968, 270760
Offset: 7

Views

Author

Ilya Gutkovskiy, Sep 06 2021

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 52; CoefficientList[Series[Sum[x^k/Product[(1 - x^j), {j, 1, k}], {k, 7, nmax}], {x, 0, nmax}], x] // Drop[#, 7] &

Formula

G.f.: Sum_{k>=7} x^k / Product_{j=1..k} (1 - x^j).