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!)
A121531 Triangle read by rows: T(n,k) is the number of nondecreasing Dyck paths of semilength n and having k double rises at an even level (n >= 1, k >= 0). A nondecreasing Dyck path is a Dyck path for which the sequence of the altitudes of the valleys is nondecreasing. 2

%I #8 Nov 26 2019 04:36:32

%S 1,2,4,1,7,6,12,20,2,20,51,18,33,115,80,5,54,240,262,54,88,477,725,

%T 294,13,143,916,1803,1158,161,232,1716,4170,3768,1026,34,376,3155,

%U 9152,10815,4684,475,609,5717,19311,28418,17432,3449,89,986,10240,39520

%N Triangle read by rows: T(n,k) is the number of nondecreasing Dyck paths of semilength n and having k double rises at an even level (n >= 1, k >= 0). A nondecreasing Dyck path is a Dyck path for which the sequence of the altitudes of the valleys is nondecreasing.

%C Row n contains ceiling(n/2) terms.

%C Row sums are the odd-indexed Fibonacci numbers (A001519).

%C T(n,0) = Fibonacci(n+2) - 1 = A000071(n+2).

%C Sum_{k>=0} k*T(n,k) = A121532(n).

%H E. Barcucci, A. Del Lungo, S. Fezzi and R. Pinzani, <a href="http://dx.doi.org/10.1016/S0012-365X(97)82778-1">Nondecreasing Dyck paths and q-Fibonacci numbers</a>, Discrete Math., 170, 1997, 211-217.

%F G.f.: G = G(t,z) = z(1 - 2tz^2 - tz^3)(1-tz^2)/((1 - z - tz^2)(1 - z - z^2 - 3tz^2 - tz^3 + t^2*z^4)).

%e T(5,2)=2 because we have UU/UU/UDDDDD and UU/UDDU/UDDD, where U=(1,1) and D=(1,-1) (the double rises at an even level are indicated by a /).

%e Triangle starts:

%e 1;

%e 2;

%e 4, 1;

%e 7, 6;

%e 12, 20, 2;

%e 20, 51, 18;

%e 33, 115, 80, 5;

%p G:=z*(1-2*t*z^2-t*z^3)*(1-t*z^2)/(1-z-t*z^2)/(1-z-z^2-3*t*z^2-t*z^3+t^2*z^4): Gser:=simplify(series(G,z=0,18)): for n from 1 to 15 do P[n]:=sort(coeff(Gser,z,n)) od: for n from 1 to 15 do seq(coeff(P[n],t,j),j=0..ceil(n/2)-1) od; # yields sequence in triangular form

%Y Cf. A001519, A121529, A121532.

%K nonn,tabf

%O 1,2

%A _Emeric Deutsch_, Aug 05 2006

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 August 20 12:27 EDT 2024. Contains 375331 sequences. (Running on oeis4.)