The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A104990 Matrix cube of triangle A104980. 3

%I #10 Jun 07 2021 04:38:12

%S 1,3,1,15,6,1,93,39,9,1,675,285,75,12,1,5577,2331,657,123,15,1,51555,

%T 21153,6207,1269,183,18,1,526809,211227,63549,13743,2181,255,21,1,

%U 5895819,2304321,704319,158325,26739,3453,339,24,1,71733585,27291843,8424813,1947711,343641,47355,5145,435,27,1

%N Matrix cube of triangle A104980.

%C Triangular matrix A104980 satisfies: SHIFT_LEFT(column 0 of A104980^p) = p*(column p+1 of A104980) for p>=0.

%H G. C. Greubel, <a href="/A104990/b104990.txt">Rows n = 0..50 of the triangle, flattened</a>

%F T(n+1, 0) = 3*A104980(n+4, 4) for n>=0.

%e Triangle begins:

%e 1;

%e 3, 1;

%e 15, 6, 1;

%e 93, 39, 9, 1;

%e 675, 285, 75, 12, 1;

%e 5577, 2331, 657, 123, 15, 1;

%e 51555, 21153, 6207, 1269, 183, 18, 1;

%e 526809, 211227, 63549, 13743, 2181, 255, 21, 1;

%e 5895819, 2304321, 704319, 158325, 26739, 3453, 339, 24, 1;

%e 71733585, 27291843, 8424813, 1947711, 343641, 47355, 5145, 435, 27, 1;

%t t[n_, k_]:= t[n, k]= If[k<0 || k>n, 0, If[k==n, 1, If[k==n-1, n, k*t[n, k+1] + Sum[t[j, 0]*t[n, j+k+1], {j, 0, n-k-1}]]]]; (* t = A104980 *)

%t M:= With[{q=20}, Table[If[j>i, 0, t[i, j]], {i,0,q}, {j,0,q}]];

%t Table[MatrixPower[M, 3][[n+1, k+1]], {n,0,12}, {k,0,n}]//Flatten (* _G. C. Greubel_, Jun 07 2021 *)

%o (PARI) T(n,k)=if(n<k || k<0,0,(matrix(n+1,n+1,m,j,if(m==j,1,if(m==j+1,-m+1, -polcoeff((1-1/sum(i=0,m,i!*x^i))/x+O(x^m),m-j-1))))^-3)[n+1,k+1])

%Y Cf. A104980, A104982 (column 0), A104991 (row sums).

%K nonn,tabl

%O 0,2

%A _Paul D. Hanna_, Apr 10 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 12 19:52 EDT 2024. Contains 373360 sequences. (Running on oeis4.)