A113395
Column 0 of triangle A113394, which equals the matrix cube of A113389.
Original entry on oeis.org
1, 9, 99, 1569, 34344, 980487, 34930455, 1502349459, 76058669082, 4443563603890, 294878418586620, 21942670402467153, 1811533845177895161, 164451065361854357011, 16291788187615516225925
Offset: 0
-
a(n)=local(A,B);A=Mat(1);for(m=2,n+1,B=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,B[i,j]=1,if(j==1, B[i,1]=1,B[i,j]=(A^(3*j-2))[i-j+1,1]));));A=B); (matrix(#A,#A,r,c,if(r>=c,(A^(3*c))[r-c+1,1]))^3)[n+1,1]
A114150
Triangle, read by rows, given by the product R^2*Q^-1 = Q^3*P^-2 using triangular matrices P=A113370, Q=A113381, R=A113389.
Original entry on oeis.org
1, 4, 1, 28, 7, 1, 326, 91, 10, 1, 5702, 1722, 190, 13, 1, 136724, 43764, 4945, 325, 16, 1, 4226334, 1415799, 163705, 10751, 496, 19, 1, 161385532, 56096733, 6617605, 437723, 19896, 703, 22, 1
Offset: 0
Triangle R^2*Q^-1 = Q^3*P^-2 begins:
1;
4,1;
28,7,1;
326,91,10,1;
5702,1722,190,13,1;
136724,43764,4945,325,16,1;
4226334,1415799,163705,10751,496,19,1; ...
Compare to P (A113370):
1;
1,1;
1,4,1;
1,28,7,1;
1,326,91,10,1;
1,5702,1722,190,13,1; ...
Thus R^2*Q^-1 = Q^3*P^-2 equals P shift left one column.
-
T(n,k)=local(P,Q,R,W);P=Mat(1);for(m=2,n+1,W=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,W[i,j]=1,if(j==1, W[i,1]=1,W[i,j]=(P^(3*j-2))[i-j+1,1]));));P=W); Q=matrix(#P,#P,r,c,if(r>=c,(P^(3*c-1))[r-c+1,1])); R=matrix(#P,#P,r,c,if(r>=c,(P^(3*c))[r-c+1,1])); (R^2*Q^-1)[n+1,k+1]
A114151
Triangle, read by rows, given by the product R^-2*Q^3 = Q^-1*P^2 using triangular matrices P=A113370, Q=A113381, R=A113389.
Original entry on oeis.org
1, 0, 1, 0, 3, 1, 0, 15, 6, 1, 0, 136, 66, 9, 1, 0, 1998, 1091, 153, 12, 1, 0, 41973, 24891, 3621, 276, 15, 1, 0, 1166263, 737061, 110637, 8482, 435, 18, 1, 0, 40747561, 27110418, 4176549, 323874, 16430, 630, 21, 1
Offset: 0
Triangle R^-2*Q^3 = Q^-1*P^2 begins:
1;
0,1;
0,3,1;
0,15,6,1;
0,136,66,9,1;
0,1998,1091,153,12,1;
0,41973,24891,3621,276,15,1; ...
Compare to R (A113389):
1;
3,1;
15,6,1;
136,66,9,1;
1998,1091,153,12,1;
41973,24891,3621,276,15,1; ...
Thus R^-2*Q^3 = Q^-1*P^2 equals R shift right one column.
-
T(n,k)=local(P,Q,R,W);P=Mat(1);for(m=2,n+1,W=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,W[i,j]=1,if(j==1, W[i,1]=1,W[i,j]=(P^(3*j-2))[i-j+1,1]));));P=W); Q=matrix(#P,#P,r,c,if(r>=c,(P^(3*c-1))[r-c+1,1])); R=matrix(#P,#P,r,c,if(r>=c,(P^(3*c))[r-c+1,1])); (Q^-1*P^2)[n+1,k+1]
A114152
Triangle, read by rows, given by the product R^3*P^-1 using triangular matrices P=A113370, R=A113389.
Original entry on oeis.org
1, 8, 1, 84, 14, 1, 1296, 252, 20, 1, 27850, 5957, 510, 26, 1, 784146, 179270, 16180, 858, 32, 1, 27630378, 6641502, 623115, 34125, 1296, 38, 1, 1177691946, 294524076, 28470525, 1599091, 61952, 1824, 44, 1
Offset: 0
Triangular matrix R^3*P^-1 begins:
1;
8,1;
84,14,1;
1296,252,20,1;
27850,5957,510,26,1;
784146,179270,16180,858,32,1;
27630378,6641502,623115,34125,1296,38,1; ...
Compare to P^2 (A113374):
1;
2,1;
6,8,1;
37,84,14,1;
429,1296,252,20,1;
7629,27850,5957,510,26,1; ...
Thus R^3*P^-1 equals P^2 shift left one column.
-
T(n,k)=local(P,Q,R,W);P=Mat(1);for(m=2,n+1,W=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,W[i,j]=1,if(j==1, W[i,1]=1,W[i,j]=(P^(3*j-2))[i-j+1,1]));));P=W); Q=matrix(#P,#P,r,c,if(r>=c,(P^(3*c-1))[r-c+1,1])); R=matrix(#P,#P,r,c,if(r>=c,(P^(3*c))[r-c+1,1])); (R^3*P^-1)[n+1,k+1]
A114153
Triangle, read by rows, given by the product R^-1*P^3 using triangular matrices P=A113370, R=A113389.
Original entry on oeis.org
1, 0, 1, 0, 6, 1, 0, 48, 12, 1, 0, 605, 186, 18, 1, 0, 11196, 3892, 414, 24, 1, 0, 280440, 106089, 12021, 732, 30, 1, 0, 8981460, 3620379, 429345, 27152, 1140, 36, 1, 0, 353283128, 149740555, 18386361, 1196910, 51445, 1638, 42, 1
Offset: 0
Triangle R^-1*P^3 begins:
1;
0,1;
0,6,1;
0,48,12,1;
0,605,186,18,1;
0,11196,3892,414,24,1;
0,280440,106089,12021,732,30,1; ...
Compare to R^2 (A113392):
1;
6,1;
48,12,1;
605,186,18,1;
11196,3892,414,24,1;
280440,106089,12021,732,30,1; ...
Thus R^-1*P^3 equals R^2 shift right one column.
-
T(n,k)=local(P,Q,R,W);P=Mat(1);for(m=2,n+1,W=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,W[i,j]=1,if(j==1, W[i,1]=1,W[i,j]=(P^(3*j-2))[i-j+1,1]));));P=W); Q=matrix(#P,#P,r,c,if(r>=c,(P^(3*c-1))[r-c+1,1])); R=matrix(#P,#P,r,c,if(r>=c,(P^(3*c))[r-c+1,1])); (R^-1*P^3)[n+1,k+1]
A114154
Triangle, read by rows, given by the product R^3*Q^-2 using triangular matrices Q=A113381, R=A113389.
Original entry on oeis.org
1, 5, 1, 45, 8, 1, 635, 120, 11, 1, 12815, 2556, 231, 14, 1, 343815, 71548, 6556, 378, 17, 1, 11651427, 2508528, 233706, 13391, 561, 20, 1, 480718723, 106427700, 10069521, 579047, 23817, 780, 23, 1
Offset: 0
Triangle R^3*Q^-2 begins:
1;
5,1;
45,8,1;
635,120,11,1;
12815,2556,231,14,1;
343815,71548,6556,378,17,1; ...
Compare to Q (A113381):
1;
2,1;
6,5,1;
37,45,8,1;
429,635,120,11,1;
7629,12815,2556,231,14,1; ...
Thus R^3*Q^-2 equals Q shift left one column.
-
T(n,k)=local(P,Q,R,W);P=Mat(1);for(m=2,n+1,W=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,W[i,j]=1,if(j==1, W[i,1]=1,W[i,j]=(P^(3*j-2))[i-j+1,1]));));P=W); Q=matrix(#P,#P,r,c,if(r>=c,(P^(3*c-1))[r-c+1,1])); R=matrix(#P,#P,r,c,if(r>=c,(P^(3*c))[r-c+1,1])); (R^3*Q^-2)[n+1,k+1]
A114159
Triangle, read by rows, equal to the matrix inverse of R=A113389.
Original entry on oeis.org
1, -3, 1, 3, -6, 1, 35, -12, -9, 1, 396, -29, -45, -12, 1, 6237, 582, -462, -96, -15, 1, 131613, 30684, -6408, -1534, -165, -18, 1, 3518993, 1300810, -96705, -34020, -3515, -252, -21, 1, 114244366, 59124226, -764835, -944334, -102180, -6675, -357, -24, 1
Offset: 0
Triangle R^-1 begins:
1;
-3,1;
3,-6,1;
35,-12,-9,1;
396,-29,-45,-12,1;
6237,582,-462,-96,-15,1;
131613,30684,-6408,-1534,-165,-18,1;
3518993,1300810,-96705,-34020,-3515,-252,-21,1;
...
Triangle R^-2 begins:
1;
-6,1;
24,-12,1;
79,30,-18,1;
324,356,18,-24,1;
42,5523,615,-12,-30,1;
-79346,112533,16731,640,-60,-36,1;
...
-
{T(n,k)=local(P,Q,R,W);P=Mat(1);for(m=2,n+1,W=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,W[i,j]=1,if(j==1, W[i,1]=1,W[i,j]=(P^(3*j-2))[i-j+1,1]));));P=W); R=matrix(#P,#P,r,c,if(r>=c,(P^(3*c))[r-c+1,1])); (R^-1)[n+1,k+1]}
A113374
Triangle, read by rows, equal to the matrix square of A113370. Also given by the product: P^2 = Q*(R^-2)*Q^3, using triangular matrices P=A113370, Q=A113381 and R=A113389.
Original entry on oeis.org
1, 2, 1, 6, 8, 1, 37, 84, 14, 1, 429, 1296, 252, 20, 1, 7629, 27850, 5957, 510, 26, 1, 185776, 784146, 179270, 16180, 858, 32, 1, 5817106, 27630378, 6641502, 623115, 34125, 1296, 38, 1, 224558216, 1177691946, 294524076, 28470525, 1599091, 61952
Offset: 0
Triangle A113370^2 begins:
1;
2,1;
6,8,1;
37,84,14,1;
429,1296,252,20,1;
7629,27850,5957,510,26,1;
185776,784146,179270,16180,858,32,1;
5817106,27630378,6641502,623115,34125,1296,38,1;
224558216,1177691946,294524076,28470525,1599091,61952,1824,44,1;
-
T(n,k)=local(A,B);A=Mat(1);for(m=2,n+1,B=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,B[i,j]=1,if(j==1, B[i,1]=1,B[i,j]=(A^(3*j-2))[i-j+1,1]));));A=B);(A^2)[n+1,k+1]
A113384
Triangle, read by rows, equal to the matrix square of A113381. Also given by: Q^2 = R*P = R*Q*(R^-2)*Q*R = P*Q*(P^-2)*Q*P, using triangular matrices P=A113370, Q=A113381 and R=A113389.
Original entry on oeis.org
1, 4, 1, 22, 10, 1, 212, 130, 16, 1, 3255, 2365, 328, 22, 1, 70777, 57695, 8640, 616, 28, 1, 2022897, 1798275, 284356, 21197, 994, 34, 1, 72375484, 68931064, 11358500, 875424, 42196, 1462, 40, 1, 3130502129, 3155772612, 537277044, 42499204
Offset: 0
Triangle A113381^2 begins:
1;
4,1;
22,10,1;
212,130,16,1;
3255,2365,328,22,1;
70777,57695,8640,616,28,1;
2022897,1798275,284356,21197,994,34,1;
72375484,68931064,11358500,875424,42196,1462,40,1;
3130502129,3155772612,537277044,42499204,2094365,73797,2020,46,1;
-
T(n,k)=local(A,B);A=Mat(1);for(m=2,n+1,B=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,B[i,j]=1,if(j==1, B[i,1]=1,B[i,j]=(A^(3*j-2))[i-j+1,1]));));A=B); (matrix(#A,#A,r,c,if(r>=c,(A^(3*c-1))[r-c+1,1]))^2)[n+1,k+1]
A113392
Triangle, read by rows, equal to the matrix square of triangle A113389. Also given by the matrix product: R^2 = Q^3*(P^-2)*Q, using triangular matrices P=A113370, Q=A113381 and R=A113389.
Original entry on oeis.org
1, 6, 1, 48, 12, 1, 605, 186, 18, 1, 11196, 3892, 414, 24, 1, 280440, 106089, 12021, 732, 30, 1, 8981460, 3620379, 429345, 27152, 1140, 36, 1, 353283128, 149740555, 18386361, 1196910, 51445, 1638, 42, 1, 16567072675, 7316974618, 923656512
Offset: 0
Triangle A113389^2 begins:
1;
6,1;
48,12,1;
605,186,18,1;
11196,3892,414,24,1;
280440,106089,12021,732,30,1;
8981460,3620379,429345,27152,1140,36,1;
353283128,149740555,18386361,1196910,51445,1638,42,1;
16567072675,7316974618,923656512,61515702,2696010,87060,2226,48,1;
-
T(n,k)=local(A,B);A=Mat(1);for(m=2,n+1,B=matrix(m,m); for(i=1,m, for(j=1,i,if(i<3 || j==i || j>m-1,B[i,j]=1,if(j==1, B[i,1]=1,B[i,j]=(A^(3*j-2))[i-j+1,1]));));A=B); (matrix(#A,#A,r,c,if(r>=c,(A^(3*c))[r-c+1,1]))^2)[n+1,k+1]
Showing 1-10 of 24 results.
Comments