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.

A270241 Number of partitions of n unlabeled objects of 8 colors.

Original entry on oeis.org

1, 8, 72, 528, 3582, 22512, 134040, 760896, 4152852, 21897408, 112037852, 558049096, 2713386758, 12907891432, 60190937724, 275575683576, 1240483837374, 5496780654912, 24002417723284, 103380586347376, 439565299059250, 1846430027348704, 7667597264015436
Offset: 0

Views

Author

Alois P. Heinz, Mar 13 2016

Keywords

Crossrefs

Column k=8 of A075196.

Programs

  • Maple
    with(numtheory):
    a:= proc(n) option remember; `if`(n=0, 1, add(add(
          d*binomial(d+7, 7), d=divisors(j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..30);

Formula

G.f.: Product_{j>=1} 1/(1-x^j)^C(j+7,7).