1, 2, 1, 1, 2, 1, 1, 2, 2, 1, 1, 2, 3, 2, 1, 1, 2, 4, 4, 2, 1, 1, 2, 5, 7, 5, 2, 1, 1, 2, 6, 11, 11, 6, 2, 1, 1, 2, 7, 16, 21, 16, 7, 2, 1, 1, 2, 8, 22, 36, 36, 22, 8, 2, 1, 1, 2, 9, 29, 57, 71, 57, 29, 9, 2, 1, 1, 2, 10, 37, 85, 127, 127, 85, 37, 10, 2, 1
Offset: 0
Array starts:
[0] 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
[1] 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, ... A040000
[2] 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, ... A000027
[3] 1, 2, 4, 7, 11, 16, 22, 29, 37, 46, 56, ... A000124
[4] 1, 2, 5, 11, 21, 36, 57, 85, 121, 166, 221, ... A050407
[5] 1, 2, 6, 16, 36, 71, 127, 211, 331, 496, 716, ... A145126
[6] 1, 2, 7, 22, 57, 127, 253, 463, 793, 1288, 2003, ... A323228
[7] 1, 2, 8, 29, 85, 211, 463, 925, 1717, 3004, 5006, ...
[8] 1, 2, 9, 37, 121, 331, 793, 1717, 3433, 6436, 11441, ...
[9] 1, 2, 10, 46, 166, 496, 1288, 3004, 6436, 12871, 24311, ...
.
Read as a triangle (by descending antidiagonals):
1
2, 1
1, 2, 1
1, 2, 2, 1
1, 2, 3, 2, 1
1, 2, 4, 4, 2, 1
1, 2, 5, 7, 5, 2, 1
1, 2, 6, 11, 11, 6, 2, 1
1, 2, 7, 16, 21, 16, 7, 2, 1
1, 2, 8, 22, 36, 36, 22, 8, 2, 1
1, 2, 9, 29, 57, 71, 57, 29, 9, 2, 1
.
A(0, 1) = C(-1, 0) + 1 = 2 because C(-1, 0) = 1. A(1, 0) = C(-1, -1) + 1 = 1 because C(-1, -1) = 0. Warning: Some computer algebra programs (for example Maple and Mathematica) return C(n, n) = 1 for n < 0. This contradicts the definition given by Graham et al. (see reference). On the other hand this definition preserves symmetry.
Comments