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!)
A096591 Triangle T, read by rows, such that the matrix square shifts T one place diagonally left and upward, with T(n,0)=T(n,n)=1 for n>=0. 2
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 1, 5, 5, 2, 1, 1, 1, 8, 10, 5, 2, 1, 1, 1, 15, 22, 14, 5, 2, 1, 1, 1, 28, 47, 34, 14, 5, 2, 1, 1, 1, 61, 113, 88, 42, 14, 5, 2, 1, 1, 1, 133, 269, 223, 116, 42, 14, 5, 2, 1, 1, 1, 328, 705, 609, 333, 132, 42, 14, 5, 2, 1, 1, 1, 807, 1843, 1660 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Column with index 1 forms the row sums shift right. The convergent of the rows in reverse order is the Catalan sequence (A000108).
LINKS
FORMULA
T(n, k) = Sum_{i=0..n-1} T(n-2, i)*T(i, k-1) for n>1 and k>0; T(n, 0)=T(n, n)=1.
EXAMPLE
Rows begin:
[1],
[1,1],
[1,1,1],
[1,2,1,1],
[1,3,2,1,1],
[1,5,5,2,1,1],
[1,8,10,5,2,1,1],
[1,15,22,14,5,2,1,1],
[1,28,47,34,14,5,2,1,1],
[1,61,113,88,42,14,5,2,1,1],
[1,133,269,223,116,42,14,5,2,1,1],...
The matrix square of T is given by:
[1],
[2,1],
[3,2,1],
[5,5,2,1],
[8,10,5,2,1],
[15,22,14,5,2,1],
[28,47,34,14,5,2,1],
[61,113,88,42,14,5,2,1],
[133,269,223,116,42,14,5,2,1],...
which equals T shift one place diagonally left and upward.
PROG
(PARI) T(n, k)=if(n<k || k<0, 0, if(n==k || k==0, 1, sum(i=0, n-1, T(n-2, i)*T(i, k-1)); ))
CROSSREFS
Sequence in context: A225630 A129713 A096669 * A316074 A332954 A115568
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Jun 28 2004
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 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)