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!)
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. 3
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; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
The g.f. of column k of matrix power P^m (ignoring leading zeros) is:
cos(m*arccos(1-x^2/2)) + (-1)^k * sin(m*arccos(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; ...
PROG
(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]))}
for(n=0, 16, for(k=0, n, print1(P(n, k, -1), ", ")); print(""))
CROSSREFS
Cf. A111941 (matrix log), A111942, A110503 (variant).
Sequence in context: A175608 A285467 A194679 * A129572 A070950 A071031
KEYWORD
sign,tabl
AUTHOR
Paul D. Hanna, Aug 23 2005
STATUS
approved

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 April 24 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)