OFFSET
1,2
COMMENTS
The length of a chain is the number of relations, so chains of length 0 are just single plane partitions of n.
LINKS
John Tyler Rascoe, Python code.
EXAMPLE
Triangle begins:
k=0 1 2 3 4 5 6 7 8
n=1 [ 1]
n=2 [ 3, 3]
n=3 [ 6, 15, 9]
n=4 [ 13, 58, 78, 33]
n=5 [ 24, 180, 423, 402, 135]
n=6 [ 48, 543, 1947, 3090, 2271, 633]
n=7 [ 86, 1468, 7667, 18237, 22122, 13377, 3207]
n=8 [160, 3900, 28197, 93715, 166137, 162966, 83676, 17589]
n=9 [282, 9801, 96087, 430068, 1047081, 1483233, 1224519, 547494, 102627]
...
The chain of plane partitions below has length 2 and the last element is a plane partition of 9 so it is counted under T(9,2) = 96087.
3 1 < 3 2 1 < 4 2 1.
1 1 2
T(2,1) = 3 counts:
1 < 1 1, 1 < 1 1 < 2.
1,
PROG
(Python) # see links
CROSSREFS
KEYWORD
AUTHOR
John Tyler Rascoe, Oct 08 2025
STATUS
approved
