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!)
A116077 Triangular matrix T, read by rows, such that the anticommutator of T and U shifts the columns of T up 1 row: {T,U}(n,k) = T(n+1,k), where U denotes the triangular matrix defined by U(n,k) = A000108(n-k) = Catalan(n-k) for n>=k and where T(n,n) = (n+1). 1
1, 2, 2, 7, 4, 3, 28, 13, 6, 4, 117, 48, 19, 8, 5, 496, 187, 68, 25, 10, 6, 2110, 748, 257, 88, 31, 12, 7, 8968, 3034, 1000, 327, 108, 37, 14, 8, 38017, 12400, 3958, 1252, 397, 128, 43, 16, 9, 160648, 50887, 15832, 4882, 1504, 467, 148, 49, 18, 10 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Difference between any two columns = A000984 (central binomial coefficients):
T(n+1,k+1) = T(n,k) + A000984(n-k).
LINKS
FORMULA
G.f. of column k: k/sqrt(1-4*x) + 4*x^2/(1+sqrt(1-4*x))^2/(1-4*x)^(3/2).
G.f.: A(x,y) = 1/sqrt(1-4*x)/(1-x*y)^2 + 4*x^2/(1+sqrt(1-4*x))^2/(1-4*x)^(3/2)/(1-x*y).
EXAMPLE
Triangular matrix T begins:
1;
2,2;
7,4,3;
28,13,6,4;
117,48,19,8,5;
496,187,68,25,10,6;
2110,748,257,88,31,12,7;
8968,3034,1000,327,108,37,14,8;
38017,12400,3958,1252,397,128,43,16,9; ...
Define triangular matrix U by U(n,k) = Catalan(n-k):
1;
1,1;
2,1,1;
5,2,1,1;
14,5,2,1,1; ...
Then anticommutator {T,U} = T*U + U*T is given by
{T,U}(n,k) = T(n+1,k):
2;
7,4;
28,13,6;
117,48,19,8;
496,187,68,25,10; ...
which equals T with columns shift up 1 row.
The commutator [T,U] = T*U - U*T is given by
[T,U](n,k) = 4^(n-k) - C(2*(n-k)+1,n-k):
0,
1,0,
6,1,0,
29,6,1,0,
130,29,6,1,0, ...
Further, commutator [U^-1,T] = (U^-1)*T - T*(U^-1) is
[U^-1,T](n,k) = 4^(n-k-1) if n>k, else 0:
0;
1,0;
4,1,0;
16,4,1,0;
64,16,4,1,0; ...
MATHEMATICA
T[n_, k_] := SeriesCoefficient[1/Sqrt[1 - 4 x]/(1 - x y)^2 + 4 x^2/(1 + Sqrt[1 - 4 x])^2/(1 - 4 x)^(3/2)/(1 - x y), {x, 0, n}, {y, 0, k}];
Table[T[n, k], {n, 0, 9}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jul 24 2019 *)
PROG
(PARI) {T(n, k)=local(X=x+x*O(x^n), Y=y+y*O(y^k)); polcoeff(polcoeff( 1/(1-X*Y)^2/sqrt(1-4*X)+4*X^2/(1+sqrt(1-4*X))^2/(1-4*X)^(3/2)/(1-X*Y), n, x), k, y)}
CROSSREFS
Cf. A116078 (column 0), A000108, A000984.
Sequence in context: A245286 A075428 A277199 * A074144 A239383 A325525
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Feb 04 2006
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 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)