A267090 Triangle read by rows: Fill an n X n square with 1's, except for 0's on the two main diagonals. Then T(n,k) is decimal equivalent of the k-th row (0<=k<=n).
0, 0, 0, 2, 5, 2, 6, 9, 9, 6, 14, 21, 27, 21, 14, 30, 45, 51, 51, 45, 30, 62, 93, 107, 119, 107, 93, 62, 126, 189, 219, 231, 231, 219, 189, 126, 254, 381, 443, 471, 495, 471, 443, 381, 254, 510, 765, 891, 951, 975, 975, 951, 891, 765, 510
Offset: 0
Examples
Triangle begins: n\k 0 1 2 3 4 5 6 7 8 ... 0 0 1 0 0 2 2 5 2 3 6 9 9 6 4 14 21 27 21 14 5 30 45 51 51 45 30 6 62 93 107 119 107 93 62 7 126 189 219 231 231 219 189 126 8 254 381 443 471 495 471 443 381 254 ...
Links
- Kival Ngaokrajang, Illustration of initial terms, T(n,k) for n = 0..10, k = 0..10
Comments