Row 6 equals the pendular sums of row 5:
[1, 4, 9, 5, 1, 0], where the sums proceed as follows:
[1, __, __, __, __, __], T(6,0) = T(5,0) = 1;
[1, __, __, __, __, 1], T(6,5) = T(6,0) + T(5,5) = 1 + 0 = 1;
[1, 5, __, __, __, 1], T(6,1) = T(6,5) + T(5,1) = 1 + 4 = 5;
[1, 5, __, __, 6, 1], T(6,4) = T(6,1) + T(5,4) = 5 + 1 = 6;
[1, 5, 15, __, 6, 1], T(6,2) = T(6,4) + T(5,2) = 6 + 9 = 15;
[1, 5, 15, 20, 6, 1], T(6,3) = T(6,2) + T(5,3) = 15 + 5 = 20;
[1, 5, 15, 20, 6, 1, 0] finally, append a zero to obtain row 6.
Triangle begins:
1;
1, 0;
1, 1, 0;
1, 2, 1, 0;
1, 3, 4, 1, 0;
1, 4, 9, 5, 1, 0;
1, 5, 15, 20, 6, 1, 0;
1, 6, 22, 48, 28, 7, 1, 0;
1, 7, 30, 85, 113, 37, 8, 1, 0;
1, 8, 39, 132, 282, 169, 47, 9, 1, 0;
1, 9, 49, 190, 519, 688, 237, 58, 10, 1, 0;
1, 10, 60, 260, 837, 1762, 1074, 318, 70, 11, 1, 0;
1, 11, 72, 343, 1250, 3330, 4404, 1568, 413, 83, 12, 1, 0; ...
Central terms are T(2*n,n) =
A108447(n);
semi-diagonals form successive self-convolutions of the central terms: