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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A271738 Number of set partitions of [n] with maximal block length multiplicity equal to nine. 2
1, 0, 55, 220, 2860, 22022, 205205, 1853280, 17381650, 200982925, 2291851991, 23049864630, 262234646310, 3319690300850, 39333605649855, 464026283957060, 5880153732068000, 75836425964702975, 973764622911909400, 12796285021434965050, 173456578124336807300 (list; graph; refs; listen; history; text; internal format)
OFFSET
9,3
COMMENTS
At least one block length occurs exactly 9 times, and all block lengths occur at most 9 times.
LINKS
MAPLE
with(combinat):
b:= proc(n, i, k) option remember; `if`(n=0, 1,
`if`(i<1, 0, add(multinomial(n, n-i*j, i$j)
*b(n-i*j, i-1, k)/j!, j=0..min(k, n/i))))
end:
a:= n-> b(n$2, 9)-b(n$2, 8):
seq(a(n), n=9..30);
MATHEMATICA
multinomial[n_, k_List] := n!/Times @@ (k!);
b[n_, i_, k_] := b[n, i, k] = If[n == 0, 1, If[i < 1, 0, Sum[multinomial[n, Join[{n - i*j}, Table[i, j]]]*b[n - i*j, i - 1, k]/j!, {j, 0, Min[k, n/i] }]]];
a[n_] := b[n, n, 9] - b[n, n, 8];
Table[a[n], {n, 9, 30}] (* Jean-François Alcover, May 08 2018, after Alois P. Heinz *)
CROSSREFS
Column k=9 of A271423.
Sequence in context: A294461 A013550 A254148 * A280888 A158658 A296036
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Apr 13 2016
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 April 24 16:56 EDT 2024. Contains 371962 sequences. (Running on oeis4.)