The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A215521 Number T(n,k) of distinct values of multinomial coefficients M(n;lambda), where lambda ranges over all partitions of n with largest part = k; triangle T(n,k), n>=1, 1<=k<=n, read by rows. 3
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 3, 3, 2, 1, 1, 1, 3, 4, 3, 2, 1, 1, 1, 4, 5, 5, 3, 2, 1, 1, 1, 4, 7, 6, 5, 3, 2, 1, 1, 1, 5, 8, 9, 7, 5, 3, 2, 1, 1, 1, 5, 10, 10, 10, 7, 5, 3, 2, 1, 1, 1, 6, 12, 14, 12, 11, 7, 5, 3, 2, 1, 1, 1, 6, 14, 16, 17, 13, 11, 7, 5, 3, 2, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
Differs from A008284 first at T(11,4).
LINKS
EXAMPLE
T(4,2) = 2 = |{4!/(2!*2!), 4!/(2!*1!*1!)}| = |{6, 12}|.
T(7,4) = 3 = |{35, 105, 210}|.
T(8,3) = 5 = |{560, 1120, 1680, 3360, 6720}|.
T(11,4) = 10 = |{11550, 34650, 46200, 69300, 138600, 207900, 277200, 415800, 831600, 1663200}|.
Triangle T(n,k) begins:
1;
1, 1;
1, 1, 1;
1, 2, 1, 1;
1, 2, 2, 1, 1;
1, 3, 3, 2, 1, 1;
1, 3, 4, 3, 2, 1, 1;
1, 4, 5, 5, 3, 2, 1, 1;
1, 4, 7, 6, 5, 3, 2, 1, 1;
1, 5, 8, 9, 7, 5, 3, 2, 1, 1;
1, 5, 10, 10, 10, 7, 5, 3, 2, 1, 1;
...
MAPLE
b:= proc(n, i) option remember; `if`(n=0, {1}, `if`(i<1, {},
{b(n, i-1)[], seq(map(x-> x*i!^j, b(n-i*j, i-1))[], j=1..n/i)}))
end:
T:= (n, k)-> nops(b(n-k, min(k, n-k))):
seq(seq(T(n, k), k=1..n), n=1..15);
MATHEMATICA
b[n_, i_] := b[n, i] = If[n == 0, {1}, If[i < 1, {}, Join[b[n, i - 1], Table[ b[n - i*j, i - 1] *i!^j, {j, 1, n/i}] // Flatten]] // Union]; T[n_, k_] := Length[b[n, k]]; Table[Table[T[n - k, Min[k, n - k]], {k, 1, n}], {n, 1, 15}] // Flatten (* Jean-François Alcover, Jan 21 2015, after Alois P. Heinz *)
CROSSREFS
Columns k=1-3 give: A000012 (for n>0), A004526, A069905(n) = A001399(n-3) for n>=3.
T(2*n,n) gives: A070289.
Sequence in context: A166240 A219347 A114087 * A008284 A114088 A208245
KEYWORD
nonn,tabl
AUTHOR
Alois P. Heinz, Aug 14 2012
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 May 14 23:22 EDT 2024. Contains 372535 sequences. (Running on oeis4.)