A378383 Number of subwords of the form UDDD in nondecreasing Dyck paths of length 2*n.
0, 0, 0, 1, 5, 19, 64, 202, 612, 1803, 5206, 14809, 41650, 116114, 321478, 885169, 2426462, 6627499, 18048088, 49026874, 132901176, 359625015, 971639014, 2621683741, 7065545950, 19022080034, 51163908874, 137499581917, 369235213742, 990822728623, 2657069356996
Offset: 0
Links
- E. Barcucci, A. Del Lungo, S. Fezzi, and R. Pinzani, Nondecreasing Dyck paths and q-Fibonacci numbers, Discrete Math., 170 (1997), 211-217.
- Éva Czabarka, Rigoberto Flórez, Leandro Junes, and José L. Ramírez, Enumerations of peaks and valleys on non-decreasing Dyck paths, Discrete Math., Vol. 341, No. 10 (2018), pp. 2789-2807. See p. 2798.
- Rigoberto Flórez, Leandro Junes, Luisa M. Montoya, and José L. Ramírez, Counting Subwords in Non-Decreasing Dyck Paths, J. Int. Seq. (2025) Vol. 28, Art. No. 25.1.6. See pp. 15, 19.
- Rigoberto Flórez, Leandro Junes, and José L. Ramírez, Enumerating several aspects of non-decreasing Dyck paths, Discrete Mathematics, Vol. 342, Issue 11 (2019), 3079-3097. See page 3092.
- Index entries for linear recurrences with constant coefficients, signature (10,-39,74,-69,28,-4).
Programs
-
Mathematica
Table[If[n < 3, 0, (1/5)((n-3)LucasL[2n-5]+LucasL[2n-3]+Fibonacci[2n+2]-5(n+5) 2^(n-4))], {n,0,26}]
Comments