OFFSET
1,2
COMMENTS
EXAMPLE
Triangle begins:
1;
2, 1;
2, 1, 1;
3, 2, 1, 1;
3, 0, 1, 1, 1;
4, 2, 3, 1, 1, 1;
4, 0, 0, 1, 1, 1, 1;
5, 1, 2, 3, 1, 1, 1, 1;
5, 0, 2, 1, 1, 1, 1, 1, 1;
6, 1, 2, 1, 3, 1, 1, 1, 1, 1;
6, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1;
7, 1, 3, 4, 3, 4, 1, 1, 1, 1, 1, 1;
7, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1;
...
For n = 9 the symmetric representation of sigma(9) = 13 in the first quadrant looks like this:
y
. Number of cells
._ _ _ _ _
|_ _ _ _ _| 5
. |_ _ 0
. |_ | 2
. |_|_ _ 1
. | | 1
. | | 1
. | | 1
. | | 1
. . . . . . . . |_| . . x 1
.
So the 9th row of triangle is [5, 0, 2, 1, 1, 1, 1, 1, 1].
For n = 9 and k = 7 there are two cells in the 7th row of the diagram, also there are two cells in the 7th column of the diagram, so T(9,9-7+1) = T(9,3) = 2.
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Omar E. Pol, Apr 26 2014
STATUS
approved