login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A102920
Triangular matrix, read by rows, equal to the matrix square of A102098.
6
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,2
COMMENTS
Column 0 is A102921. Column 1 is A102922.
EXAMPLE
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],...
PROG
(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])}
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Jan 21 2005
STATUS
approved