A107865 Matrix inverse of triangle A107862.
1, -1, 1, -1, -2, 1, -7, -4, -3, 1, -77, -26, -9, -4, 1, -1145, -287, -67, -16, -5, 1, -21410, -4412, -798, -139, -25, -6, 1, -481683, -86004, -13029, -1830, -251, -36, -7, 1, -12655196, -2017658, -268368, -32191, -3667, -412, -49, -8, 1, -379998938, -55134458, -6630228, -705680, -69868, -6657, -631
Offset: 0
Examples
Triangle begins: 1; -1,1; -1,-2,1; -7,-4,-3,1; -77,-26,-9,-4,1; -1145,-287,-67,-16,-5,1; -21410,-4412,-798,-139,-25,-6,1; -481683,-86004,-13029,-1830,-251,-36,-7,1; ...
Programs
-
PARI
{T(n,k)=(matrix(n+1,n+1,r,c,if(r>=c, binomial((r-1)*(r-2)/2-(c-1)*(c-2)/2+r-c,r-c)))^-1)[n+1,k+1]}
Comments