A102920 Triangular matrix, read by rows, equal to the matrix square of A102098.
1, 3, 4, 36, 40, 9, 1036, 1128, 189, 16, 56355, 61120, 9720, 576, 25, 5045370, 5466320, 857466, 47040, 1375, 36, 679409158, 735847800, 114915375, 6155008, 163500, 2808, 49, 129195427716, 139910204080, 21813099606, 1158059520, 29767000, 458136
Offset: 0
Examples
Rows begin: [1], [3,4], [36,40,9], [1036,1128,189,16], [56355,61120,9720,576,25], [5045370,5466320,857466,47040,1375,36], [679409158,735847800,114915375,6155008,163500,2808,49],...
Programs
-
PARI
{T(n,k)=local(A=matrix(1,1),B);A[1,1]=1; for (m=2,n+1,B=matrix(m,m);for (i=1,m, for (j=1,i, if(j==i,B[i,j]=j,B[i,j]=(A^3)[i-1,j]);));A=B); return((A^2)[n+1,k+1])}
Comments