A375723 Square array read by antidiagonals, where the top row is the powers of 2 (A000079) and the other numbers are the sum of the neighbors in the preceding row.
1, 2, 3, 4, 7, 10, 8, 14, 24, 34, 16, 28, 49, 83, 117, 32, 56, 98, 171, 288, 405, 64, 112, 196, 343, 597, 1002, 1407, 128, 224, 392, 686, 1200, 2085, 3492, 4899, 256, 448, 784, 1372, 2401, 4198, 7285, 12184, 17083, 512, 896, 1568, 2744, 4802, 8403, 14686, 25463, 42546, 59629
Offset: 0
Examples
The array starts: 1 2 4 8 3 7 14 28 10 24 49 98 34 83 171 343
Crossrefs
Formula
T(m+1,n) = sum(T(m,k), |k-n| <= 1) (and T(0,n)=2^n), m, n >= 0.
Comments