OFFSET
0,3
COMMENTS
Both the column 1 and the right border are the same as in its supersequence A390502.
The number of cells equals the area under the symmetric Dyck path.
Equivalently row n lists the number of cells above the symmetric Dyck paths in fourth quadrant.
The diagram in the fourth quadrant of the square grid is the same as the Young diagram corresponding to a partition of T(n,k).
LINKS
Alois P. Heinz, Rows n = 0..17, flattened
EXAMPLE
Triangle begins:
0;
1;
3, 4;
6, 8, 9;
10, 11, 12, 13, 15, 16;
...
For n = 3 there are three symmetric Dyck paths of semilength 3 in the first quadrant of the square grid as shown below:
_ _ _ _ _ _
|_ |_ |
|_ | |
| | |
.
The illustration of the third row of the triangle is as shown below:
_ _ _ _ _ _
|_|_ |_|_|_ |_|_|_|
|_|_|_ |_|_|_| |_|_|_|
|_|_|_| |_|_|_| |_|_|_|
6 8 9
.
MAPLE
b:= proc(x, y) option remember; `if`(y<0 or y>x, 0, `if`(x=0, 1,
expand(b(x-1, y-1)*z^(2*y-1)+ b(x-1, y+1)*z^(2*y+1))))
end:
T:= n-> (p-> seq((i+n^2)/2$coeff(p, z, i), i=0..degree(p)))(
add(b(n, n-2*i), i=0..n/2)):
seq(T(n), n=0..7); # Alois P. Heinz, Apr 01 2026
CROSSREFS
KEYWORD
AUTHOR
Omar E. Pol, Mar 26 2026
EXTENSIONS
More terms from Alois P. Heinz, Mar 27 2026
STATUS
approved
