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!)
A309972 Product of multinomial coefficients M(n;lambda), where lambda ranges over all partitions of n. 3
1, 1, 2, 18, 6912, 216000000, 1632586752000000000, 498266101635303733401600000000000, 1140494258799407218656986754465090350453096448000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Product_{k=1..A000041(n)} A036038(n,k).
a(n) = A309951(n,A000041(n)).
EXAMPLE
a(3) = M(3;3) * M(3;2,1) * M(3;1,1,1) = 1 * 3 * 6 = 18.
MAPLE
b:= proc(n, i) option remember; `if`(n=0 or i=1, [n!], [map(t->
binomial(n, i)*t, b(n-i, min(n-i, i)))[], b(n, i-1)[]])
end:
a:= n-> mul(i, i=b(n$2)):
seq(a(n), n=0..9); # Alois P. Heinz, Aug 25 2019
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0 || i == 1, {n!}, Join[Binomial[n, i] #& /@ b[n - i, Min[n - i, i]], b[n, i - 1]]];
a[n_] := Times @@ b[n, n];
a /@ Range[0, 9] (* Jean-François Alcover, Dec 07 2020, after Alois P. Heinz *)
CROSSREFS
Rightmost terms in rows of A309951.
Sequence in context: A006262 A003043 A059783 * A208056 A276092 A191554
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 25 2019
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 August 14 03:23 EDT 2024. Contains 375146 sequences. (Running on oeis4.)