cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A121460 Triangle read by rows: T(n,k) is the number of nondecreasing Dyck paths of semilength n, having k returns to the x-axis (1<=k<=n).

This page as a plain text file.
%I A121460 #16 Jul 01 2025 08:48:37
%S A121460 1,1,1,2,2,1,5,4,3,1,13,9,7,4,1,34,22,16,11,5,1,89,56,38,27,16,6,1,
%T A121460 233,145,94,65,43,22,7,1,610,378,239,159,108,65,29,8,1,1597,988,617,
%U A121460 398,267,173,94,37,9,1,4181,2585,1605,1015,665,440,267,131,46,10,1,10946,6766
%N A121460 Triangle read by rows: T(n,k) is the number of nondecreasing Dyck paths of semilength n, having k returns to the x-axis (1<=k<=n).
%C A121460 Also the number of directed column-convex polyominoes of area n, having k cells in the bottom row. Row sums are the odd-subscripted Fibonacci numbers (A001519). T(n,1)=fibonacci(2n-3) for n>=2 (A001519). T(n,2)=1+fibonacci(2n-4)=A055588(n-2). T(n,3)=n-3+fibonacci(2n-5). Sum(k*T(n,k),k=1..n)=A061667(n-1).
%H A121460 Elena Barcucci, Alberto del Lungo, S. Fezzi, and Renzo 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.
%H A121460 Elena Barcucci, Renzo Pinzani, and Renzo Sprugnoli, <a href="http://dx.doi.org/10.1007/3-540-56610-4_71">Directed column-convex polyominoes by recurrence relations</a>, Lecture Notes in Computer Science, No. 668, Springer, Berlin (1993), pp. 282-298.
%H A121460 Emeric Deutsch and Helmut Prodinger, <a href="http://dx.doi.org/10.1016/S0304-3975(03)00222-6">A bijection between directed column-convex polyominoes and ordered trees of height at most three</a>, Theoretical Comp. Science, 307, 2003, 319-325.
%H A121460 Rigoberto Flórez, Leandro Junes, and José L. Ramírez, <a href="https://doi.org/10.1016/j.disc.2019.06.018">Enumerating several aspects of non-decreasing Dyck paths</a>, Discrete Mathematics (2019) Vol. 342, Issue 11, 3079-3097. See page 3087.
%H A121460 Juan B. Gil, Felix H. Xu, and William Y. Zhu, <a href="https://arxiv.org/abs/2506.15800">Odd-indexed Fibonacci numbers via pattern-avoiding permutations</a>, arXiv:2506.15800 [math.CO], 2025. See p. 7.
%F A121460 T(n,k) = binomial(n-2,k-2)+Sum(fibonacci(2j-1)*binomial(n-2-j,k-2), j=1..n-k).
%F A121460 G.f.: G(t,z)=tz(1-2z)(1-z)/[(1-3z+z^2)(1-z-tz)].
%e A121460 T(4,2)=4 because we have UUDDUUDD, UDUUUDDD, UUUDDDUD and UDUUDUDD, where U=(1,1) and D=(1,-1) (the Dyck path UUDUDDUD does not qualify: it does have 2 returns to the x-axis but it is not nondecreasing since its valleys are at altitudes 1 and 0).
%e A121460 Triangle starts:
%e A121460   1;
%e A121460   1,1;
%e A121460   2,2,1;
%e A121460   5,4,3,1;
%e A121460   13,9,7,4,1;
%e A121460   34,22,16,11,5,1;
%e A121460   ...
%p A121460 with(combinat): T:=(n,k)->binomial(n-2,k-2)+add(fibonacci(2*j-1)*binomial(n-2-j,k-2),j=1..n-k): for n from 1 to 12 do seq(T(n,k),k=1..n) od; # yields sequence in triangular form
%Y A121460 Cf. A001519, A055588, A061667.
%K A121460 nonn,tabl
%O A121460 1,4
%A A121460 _Emeric Deutsch_, Jul 31 2006