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!)
A110109 Triangle read by rows: T(n,k) (0 <= k <= n) is the number of left factors of Schroeder paths, going from (0,0) to (n,k) (a Schroeder path of length 2n is a lattice path from (0,0) to (2n,0) consisting of U=(1,1), D=(1,-1) and H=(2,0) steps and never going below the x-axis). 0
1, 0, 1, 2, 0, 1, 0, 4, 0, 1, 6, 0, 6, 0, 1, 0, 16, 0, 8, 0, 1, 22, 0, 30, 0, 10, 0, 1, 0, 68, 0, 48, 0, 12, 0, 1, 90, 0, 146, 0, 70, 0, 14, 0, 1, 0, 304, 0, 264, 0, 96, 0, 16, 0, 1, 394, 0, 714, 0, 430, 0, 126, 0, 18, 0, 1, 0, 1412, 0, 1408, 0, 652, 0, 160, 0, 20, 0, 1, 1806, 0, 3534, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Row sums yield A026003. T(2n,0)=A006318(n) (the large Schroeder numbers); T(2n+1,0)=0.
LINKS
D. Baccherini, D. Merlini and R. Sprugnoli, Level generating trees and proper Riordan arrays, Applicable Analysis and Discrete Mathematics, 2, 2008, 69-91 (see p. 89). [From Emeric Deutsch, Sep 21 2008]
Paul Barry, The Central Coefficients of a Family of Pascal-like Triangles and Colored Lattice Paths, J. Int. Seq., Vol. 22 (2019), Article 19.1.3.
FORMULA
T(n,k) = (2(k+1)/(n-k))*Sum_{j=0..(n-k)/2} binomial((n-k)/2, j)*binomial((n+k)/2+j, (n-k-2)/2) if k < n and n-k is even; T(n,n)=1; T(n,k)=0 if n-k is odd.
G.f. = R(z^2)/(1-tzR(z^2)), where R = 1 + zR + zR^2 = (1-z-sqrt(1-6z+z^2))/(2z) is the g.f. of the large Schroeder numbers.
T(n,k) = T(n-1,k-1) + T(n-1,k+1) + T(n-2,k), T(0,0)=1. - Philippe Deléham, Nov 18 2009
EXAMPLE
T(3,1)=4 because we have HU, UDU, UH and UUD.
Triangle begins:
1;
0, 1;
2, 0, 1;
0, 4, 0, 1;
6, 0, 6, 0, 1;
0, 16, 0, 8, 0, 1;
MAPLE
T:=proc(n, k) if k<n and n-k mod 2 = 0 then (2*(k+1)/(n-k))*sum(binomial((n-k)/2, j)*binomial((n+k)/2+j, (n-k-2)/2), j=0..(n-k)/2) elif k=n then 1 else 0 fi end: for n from 0 to 12 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
CROSSREFS
Sequence in context: A136688 A131321 A111959 * A145973 A155761 A067631
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Jul 12 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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)