OFFSET
0,6
COMMENTS
The sum of row n equals the number of partitions of n.
EXAMPLE
Triangle begins:
1;
1;
1, 1;
1, 2;
1, 1, 3;
1, 2, 4;
1, 1, 3, 6;
1, 2, 4, 8;
1, 1, 3, 6, 11;
1, 2, 4, 8, 15;
1, 1, 3, 6, 11, 20;
1, 2, 4, 8, 15, 26;
1, 1, 3, 6, 11, 20, 35;
1, 2, 4, 8, 15, 26, 45;
1, 1, 3, 6, 11, 20, 35, 58;
1, 2, 4, 8, 15, 26, 45, 75;
1, 1, 3, 6, 11, 20, 35, 58, 96;
1, 2, 4, 8, 15, 26, 45, 75, 121;
...
For n = 10 the sum of the 10th row is 1 + 1 + 3 + 6 + 11 + 20 = 42, the same as the number of partitions of 10.
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Aug 01 2024
STATUS
approved