1, 1, 1, 1, 2, 3, 2, 1, 2, 5, 7, 6, 5, 3, 2, 5, 12, 18, 18, 14, 10, 10, 7, 5, 12, 30, 48, 50, 42, 34, 27, 22, 24, 17, 12, 30, 78, 128, 140, 126, 103, 83, 73, 63, 53, 59, 42, 30, 78, 206, 346, 394, 369, 312, 259, 219, 189, 175, 154, 131, 150, 108, 78, 206, 552, 946, 1109
Offset: 0
Triangle begins:
1;
1, 1, 1;
2, 3, 2, 1, 2;
5, 7, 6, 5, 3, 2, 5;
12, 18, 18, 14, 10, 10, 7, 5, 12;
30, 48, 50, 42, 34, 27, 22, 24, 17, 12, 30;
78, 128, 140, 126, 103, 83, 73, 63, 53, 59, 42, 30, 78;
206, 346, 394, 369, 312, 259, 219, 189, 175, 154, 131, 150, 108, 78, 206;
552, 946, 1109, 1075, 940, 790, 667, 583, 518, 460, 435, 389, 336, 392, 284, 206, 552;
1498, 2607, 3130, 3124, 2805, 2397, 2040, 1768, 1561, 1413, 1284, 1160, 1117, 1012, 882, 1042, 758, 552, 1498; ...
Convolution of [1,1,1] with each row produces:
[1,1,1]*[1] = [1,1,1];
[1,1,1]*[1,1,1] = [1,2,3,2,1];
[1,1,1]*[2,3,2,1,2] = [2,5,7,6,5,3,2];
[1,1,1]*[5,7,6,5,3,2,5] = [5,12,18,18,14,10,10,7,5];
[1,1,1]*[12,18,18,14,10,10,7,5,12] = [12,30,48,50,42,34,27,22,24,17,12]; ...
These convoluted rows, when concatenated, yield the sequence:
1,1,1, 1,2,3,2,1, 2,5,7,6,5,3,2, 5,12,18,18,14,10,10,7,5, ...
which equals the concatenated rows of this original triangle:
1, 1,1,1, 2,3,2,1,2, 5,7,6,5,3,2,5, 12,18,18,14,10,10,7,5,12, ...
Comments