First few rows of the triangle:
1;
3, 0;
6, 3, 3;
10, 8, 10, 0;
15, 15, 21, 9, 6;
21, 24, 36, 24, 21, 0;
28, 35, 55, 45, 45, 18, 10;
36, 48, 78, 72, 78, 48, 36, 0
45, 63, 105, 105, 120, 90, 78, 30, 15;
...
Example: row 2 = (6, 3, 3) = (1, 3, 6) dot (6, 3, 1) with subtractive carryovers = ((1*6=6), (3*3-6=3), (6*1-3=3)) = (6, 3, 3).