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!)
A140736 Triangle read by rows, X^n * [1,0,0,0,...]; where X = a tridiagonal matrix with (1,0,1,0,1,...) in the main diagonal and (1,1,1,...) in the sub- and subsubdiagonals. 3
1, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 5, 4, 6, 3, 1, 1, 1, 7, 6, 15, 10, 10, 4, 1, 1, 1, 9, 8, 28, 21, 35, 20, 15, 5, 1, 1, 1, 11, 10, 45, 36, 84, 56, 70, 35, 21, 6, 1, 1, 1, 13, 12, 66, 55, 165, 120, 210, 126, 126, 56, 28, 7, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
COMMENTS
A140737 = triangle with reversed terms by rows. - Gary W. Adamson, May 25 2008
T(n,k) is the element in column 1 of row k of the n-th power of the (2n+1)X(2n+1) tridiagonal matrix X with X(r,c) = 1 if (r=c and r odd) or r=c+1 or r=c+2. - R. J. Mathar, Nov 14 2023
LINKS
EXAMPLE
First few rows of the triangle are:
1;
1, 1, 1;
1, 1, 3, 2, 1;
1, 1, 5, 4, 6, 3, 1;
1, 1, 7, 6, 15, 10, 10, 4, 1;
1, 1, 9, 8, 28, 21, 35, 20, 15, 5, 1;
1, 1, 11, 20, 45, 36, 84, 56, 70, 35, 21, 6, 1;
1, 1, 13, 12, 66, 55, 165, 120, 210, 126, 126, 56, 28, 7, 1;
...
MAPLE
A140736 := proc(n, k)
local X, r, c ;
X := Matrix(2*n+1, 2*n+1) ;
for r from 1 to 2*n+1 do
for c from 1 to 2*n+1 do
if r = c then
if type(r, 'odd') then
X[r, c] := 1 ;
else
X[r, c] := 0 ;
end if ;
elif r = c+1 or r=c+2 then
X[r, c] := 1 ;
end if;
end do:
end do:
LinearAlgebra[MatrixPower](X, n) ;
%[k, 1] ;
end proc:
seq(seq( A140736(n, k), k=1..2*n+1), n=0..12) ; # R. J. Mathar, Nov 14 2023
CROSSREFS
Cf. A001906 (row sums).
Cf. A140737, A005408 (3rd column), A005843 (4th column), A000384 (5th column), A014105 (6th column), A000447 (7th column)
Sequence in context: A106689 A348177 A027082 * A284993 A292068 A350942
KEYWORD
nonn,tabf,easy
AUTHOR
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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)