A246798 Triangle read by rows: T(n,k) is the coefficient A_k in the transformation Sum_{k=0..n} (k+1)*x^k = Sum_{k=0..n} A_k*(x+3)^k.
1, -5, 2, 22, -16, 3, -86, 92, -33, 4, 319, -448, 237, -56, 5, -1139, 1982, -1383, 484, -85, 6, 3964, -8224, 7122, -3296, 860, -120, 7, -13532, 32600, -33702, 19384, -6700, 1392, -161, 8, 45517, -124864, 150006, -103088, 44330, -12216, 2107, -208, 9, -151313, 465626, -637314, 509272, -261850, 89844, -20573, 3032, -261, 10
Offset: 0
Examples
Triangle starts: 1; -5, 2; 22, -16, 3; -86, 92, -33, 4; 319, -448, 237, -56, 5; -1139, 1982, -1383, 484, -85, 6; 3964, -8224, 7122, -3296, 860, -120, 7; -13532, 32600, -33702, 19384, -6700, 1392, -161, 8; 45517, -124864, 150006, -103088, 44330, -12216, 2107, -208, 9; -151313, 465626, -637314, 509272, -261850, 89844, -20573, 3032, -261, 10; ...
Programs
-
PARI
T(n, k) = (k+1)*sum(i=0, n-k, (-3)^i*binomial(i+k+1, k+1)) for(n=0, 10, for(k=0, n, print1(T(n, k), ", ")))
Comments