A123937 Triangle read by rows: T(x, y) = 0 if y > x, = 1 if y = 0, or = 2*Sum_{k >= 1, x-k^2 >= y} T(x-k^2, y-1) otherwise. The zeros are omitted from the sequence.
1, 1, 2, 1, 2, 4, 1, 2, 4, 8, 1, 4, 4, 8, 16, 1, 4, 12, 8, 16, 32, 1, 4, 12, 32, 16, 32, 64, 1, 4, 12, 32, 80, 32, 64, 128, 1, 4, 16, 32, 80, 192, 64, 128, 256, 1, 6, 16, 56, 80, 192, 448, 128, 256, 512, 1, 6, 24, 56, 176, 192, 448, 1024, 256, 512, 1024
Offset: 0
Comments
Examples