A108285 Triangle read by rows, generated from (1, 2, 3, ...).
1, 1, 3, 1, 4, 6, 1, 5, 11, 10, 1, 6, 18, 26, 15, 1, 7, 27, 58, 57, 21, 1, 8, 38, 112, 179, 120, 28, 1, 9, 51, 194, 453, 543, 247, 36
Offset: 0
Examples
4th column (offset) = 10, 26, 58, 112, ...= f(x), x = 1, 2, 3; x^3 + 2x^2 + 3x + 4. First few rows of the triangle are: 1; 1, 3; 1, 4, 6; 1, 5, 11, 10; 1, 6, 18, 26, 15; 1, 7, 27, 58, 57, 21; 1, 8, 38, 112, 179, 120, 28; ...
Formula
n-th column = f(x), x = 1, 2, 3, ...; x^(n) + 2*x^(n-1) + 3*x^(n-2) + ... + (n+1).
Comments