OFFSET
0,3
COMMENTS
Partitions are generated in reverse lexicographic order.
Remark that A262030 uses Abramowitz-Stegun (A-St) order.
Sum of row r equals r^r for r > 0 (Robinson-Schensted correspondence).
LINKS
Wikipedia, Young tableau
EXAMPLE
Triangle begins:
1;
1;
3, 1;
10, 16, 1;
35, 135, 40, 45, 1;
126, 896, 875, 756, 375, 96, 1;
462, 5250, 10206, 8400, 2450, 14336, 2800, 875, 1701, 175, 1;
...
Fourth row is 1*35, 3*45, 2*20, 3*15, 1*1 with sum 256 = 4^4.
MATHEMATICA
Needs["Combinatorica`"];
hooklength[par_?PartitionQ]:=Table[Count[par, q_/; q>=j]+1-i+par[[i]]-j, {i, Length[par]}, {j, par[[i]]}];
countSYT[par_?PartitionQ]:=Tr[par]!/Times@@Flatten[hooklength[par]];
content[par_?PartitionQ]:=Table[j-i, {i, Length[par]}, {j, par[[i]]}];
countSSYT[par_?PartitionQ, t_Integer_]:=Times@@((t+Flatten[content[par]])/Flatten[hooklength[par]]);
Table[countSYT[par] countSSYT[par, n], {n, 8}, {par, IntegerPartitions[n]}]
CROSSREFS
KEYWORD
nonn,tabf,new
AUTHOR
Wouter Meeussen, Jan 28 2025
STATUS
approved