Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A219274 Number T(n,k) of standard Young tableaux for partitions of n into distinct parts with largest part k; triangle T(n,k), k>=0, k<=n<=k*(k+1)/2, read by columns. 8

%I #36 Sep 01 2023 08:51:04

%S 1,1,1,2,1,3,5,16,1,4,9,49,70,168,768,1,5,14,92,204,738,3300,7887,

%T 15015,48048,292864,1,6,20,153,405,1815,9460,28743,101673,333905,

%U 1946516,4934930,14454726,34918884,141892608,1100742656,1,7,27,235,715,3630,21307

%N Number T(n,k) of standard Young tableaux for partitions of n into distinct parts with largest part k; triangle T(n,k), k>=0, k<=n<=k*(k+1)/2, read by columns.

%C T(n,k) is defined for n,k >= 0. T(n,k) = 0 iff n<k or n > k*(k+1)/2 = A000217(k). The triangle contains only the nonzero terms.

%H Alois P. Heinz, <a href="/A219274/b219274.txt">Columns k = 0..22, flattened</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Young_tableau">Young tableau</a>

%F T(n,k) = A219272(n,k) - A219272(n,k-1) for k>0.

%e T(3,2) = 2:

%e +------+ +------+

%e | 1 2 | | 1 3 |

%e | 3 .--+ | 2 .--+

%e +---+ +---+

%e Triangle T(n,k) begins:

%e 1;

%e . 1;

%e . 1;

%e . 2, 1;

%e . 3, 1;

%e . 5, 4, 1;

%e . 16, 9, 5, 1;

%e . 49, 14, 6, 1;

%e . 70, 92, 20, 7, 1;

%e . 168, 204, 153, 27, 8, 1;

%e . 768, 738, 405, 235, 35, 9, 1;

%p h:= proc(l) local n; n:=nops(l); add(i, i=l)!/mul(mul(1+l[i]-j+

%p add(`if`(l[k]>=j, 1, 0), k=i+1..n), j=1..l[i]), i=1..n)

%p end:

%p g:= proc(n, i, l) local s; s:=i*(i+1)/2;

%p `if`(n=s, h([l[], seq(i-j, j=0..i-1)]), `if`(n>s, 0,

%p g(n, i-1, l)+ `if`(i>n, 0, g(n-i, i-1, [l[], i]))))

%p end:

%p T:= (n, k)-> `if`(k>n, 0, g(n-k, k-1, [k])):

%p seq(seq(T(n, k), n=k..k*(k+1)/2), k=0..7);

%t h[l_] := Module[{n = Length[l]}, Total[l]!/Product[Product[1 + l[[i]] - j + Sum[If[l[[k]] >= j, 1, 0], {k, i + 1, n}], {j, 1, l[[i]]}], {i, 1, n}]];

%t g[n_, i_, l_] := Module[{s = i(i + 1)/2}, If[n == s, h[Join[l, Table[i - j, {j, 0, i - 1}]]], If[n > s, 0, g[n, i - 1, l] + If[i > n, 0, g[n - i, i - 1, Append[l, i]]]]]];

%t T[n_, k_] := If[k > n, 0, g[n - k, k - 1, {k}]];

%t Table[Table[T[n, k], {n, k, k(k + 1)/2}], {k, 0, 7}] // Flatten (* _Jean-François Alcover_, Sep 01 2023, after _Alois P. Heinz_ *)

%Y Column heights are A000124(k-1) for k>0.

%Y Column sums give: A219275.

%Y Row sums give: A218293.

%Y Diagonal and lower diagonals give: A000012, A000027 (for n>1), A000096(n-1) (for n>2).

%Y Leftmost nonzero elements give A219339.

%Y Column of leftmost nonzero element is A002024(n) for n>0.

%Y Triangle read by rows reversed gives: A219356.

%Y T(A000217(n),n) = A005118(n+1).

%K nonn,tabf

%O 0,4

%A _Alois P. Heinz_, Nov 17 2012

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 6 00:15 EDT 2024. Contains 374957 sequences. (Running on oeis4.)