login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A285924 Number of ordered set partitions of [n] into nine blocks such that equal-sized blocks are ordered with increasing least elements. 3
1, 405, 37125, 1738935, 64914993, 1775214441, 38186115825, 751359827790, 13076544824343, 207877406991111, 3041686131983343, 41512373437449915, 544051964769008601, 6850772610392201733, 82608610920666732693, 956263706215482795570, 10851693841665124551180 (list; graph; refs; listen; history; text; internal format)
OFFSET
9,2
LINKS
MAPLE
b:= proc(n, i, p) option remember; series(`if`(n=0 or i=1,
(p+n)!/n!*x^n, add(x^j*b(n-i*j, i-1, p+j)*combinat
[multinomial](n, n-i*j, i$j)/j!^2, j=0..n/i)), x, 10)
end:
a:= n-> coeff(b(n$2, 0), x, 9):
seq(a(n), n=9..30);
MATHEMATICA
multinomial[n_, k_List] := n!/Times @@ (k!);
b[n_, i_, p_] := b[n, i, p] = Series[If[n == 0 || i == 1, (p + n)!/n!*x^n, Sum[x^j*b[n - i*j, i - 1, p + j]*multinomial[n, Join[{n - i*j}, Table[i, j]]]/j!^2, {j, 0, n/i}]], {x, 0, 10}];
a[n_] := Coefficient[b[n, n, 0], x, 9];
Table[a[n], {n, 9, 30}] (* Jean-François Alcover, May 17 2018, translated from Maple *)
CROSSREFS
Column k=9 of A285824.
Cf. A285860.
Sequence in context: A239541 A187134 A185839 * A285860 A151634 A132362
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Apr 28 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified December 9 13:48 EST 2023. Contains 367691 sequences. (Running on oeis4.)