login
Matrix log of triangle A111835, which shifts columns left and up under matrix 8th power; these terms are the result of multiplying each element in row n and column k by (n-k)!.
8

%I #10 Jun 13 2017 22:36:29

%S 0,1,0,-6,8,0,142,-48,64,0,31800,1136,-384,512,0,-159468264,254400,

%T 9088,-3072,4096,0,-2481298801008,-1275746112,2035200,72704,-24576,

%U 32768,0,1414130111428687344,-19850390408064,-10205968896,16281600,581632,-196608,262144,0

%N Matrix log of triangle A111835, which shifts columns left and up under matrix 8th power; these terms are the result of multiplying each element in row n and column k by (n-k)!.

%C Column k equals 8^k multiplied by column 0 (A111839) when ignoring zeros above the diagonal.

%F T(n, k) = 8^k*T(n-k, 0) = A111839(n-k) for n>=k>=0.

%e Matrix log of A111835, with factorial denominators, begins:

%e 0;

%e 1/1!, 0;

%e -6/2!, 8/1!, 0;

%e 142/3!, -48/2!, 64/1!, 0;

%e 31800/4!, 1136/3!, -384/2!, 512/1!, 0;

%e -159468264/5!, 254400/4!, 9088/3!, -3072/2!, 4096/1!, 0; ...

%o (PARI) T(n,k,q=8)=local(A=Mat(1),B);if(n<k || k<0,0, for(m=1,n+1,B=matrix(m,m);for(i=1,m, for(j=1,i, if(j==i || j==1,B[i,j]=1,B[i,j]=(A^q)[i-1,j-1]);));A=B); B=sum(i=1,#A,-(A^0-A)^i/i);return((n-k)!*B[n+1,k+1]))

%Y Cf. A111835, A111839 (column 0); log matrices: A110504 (q=-1), A111813 (q=2), A111815 (q=3), A111818 (q=4), A111823 (q=5), A111828 (q=6), A111833 (q=7).

%K frac,sign,tabl

%O 0,4

%A _Gottfried Helms_ and _Paul D. Hanna_, Aug 22 2005