|
Search: id:A111940
|
|
|
| A111940 |
|
Triangle P, read by rows, that satisfies [P^-1](n,k) = P(n+1,k+1) for n>=k>=0, with P(k,k)=1 and P(k+1,1)=P(k+1,0) for k>=0, where [P^-1] denotes the matrix inverse of P. |
|
+0 4
|
|
| 1, 1, 1, -1, -1, 1, 0, 0, 1, 1, 0, 0, -1, -1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 1
(list; table; graph; listen)
|
|
|
OFFSET
|
0,1
|
|
|
FORMULA
|
The g.f. of column k of matrix power P^m (ignoring leading zeros) is: cos(m*acos(1-x^2/2))+(-1)^k*sin(m*acos(1-x^2/2))*(1-x/2)/sqrt(1-x^2/4).
|
|
EXAMPLE
|
Triangle P begins:
1;
1,1;
-1,-1,1;
0,0,1,1;
0,0,-1,-1,1;
0,0,0,0,1,1;
0,0,0,0,-1,-1,1;
0,0,0,0,0,0,1,1;
0,0,0,0,0,0,-1,-1,1; ...
where P^-1 shifts columns left and up one place:
1;
-1,1;
0,1,1;
0,-1,-1,1;
0,0,0,1,1;
0,0,0,-1,-1,1; ...
|
|
PROGRAM
|
(PARI) {P(n, k, q=-1)=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, B[i, j]=1, if(j==1, B[i, j]=(A^q)[i-1, 1], B[i, j]=(A^q)[i-1, j-1])); )); A=B); return(A[n+1, k+1]))}
|
|
CROSSREFS
|
Cf. A111941 (matrix log), A111942, A110503 (variant).
Sequence in context: A127244 A144778 A143142 this_sequence A129572 A070950 A141679
Adjacent sequences: A111937 A111938 A111939 this_sequence A111941 A111942 A111943
|
|
KEYWORD
|
sign,tabl
|
|
AUTHOR
|
Paul D. Hanna (pauldhanna(AT)juno.com), Aug 23 2005
|
|
|
Search completed in 0.002 seconds
|