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!)
A334643 a(n) is the total number of down steps between the second and third up steps in all 2_1-Dyck paths of length 3*n. A 2_1-Dyck path is a lattice path with steps (1, 2), (1, -1) that starts and ends at y = 0 and stays above the line y = -1. 2
0, 0, 16, 53, 209, 963, 4816, 25367, 138531, 777041, 4449511, 25901655, 152818458, 911755012, 5491420104, 33343242196, 203881825163, 1254342228285, 7759025239189, 48227078649155, 301056318504165, 1886647802277315, 11864793375611820, 74854437302309175 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
For n = 2, there is no 3rd up step, a(2) = 16 enumerates the total number of down steps between the 2nd up step and the end of the path.
LINKS
A. Asinowski, B. Hackl, and S. Selkirk, Down step statistics in generalized Dyck paths, arXiv:2007.15562 [math.CO], 2020.
FORMULA
a(0) = a(1) = 0 and a(n) = binomial(3*n+1, n)/(3*n+1) + 4*Sum_{j=1..2}binomial(3*j+2, j)*binomial(3*(n-j), n-j)/((3*j+2)*(n-j+1)) - 7*[n=2] for n > 1, where [ ] is the Iverson bracket.
EXAMPLE
For n = 2, the 2_1-Dyck paths are UUDDDD, UDUDDD, UDDUDD, UDDDUD, DUDDUD, DUDUDD, DUUDDD. In total, there are a(2) = 4 + 3 + 2 + 1 + 1 + 2 + 3 = 16 down steps between the 2nd up step and the end of the path.
PROG
(SageMath) [binomial(3*n + 1, n)/(3*n + 1) + 4*sum([binomial(3*j + 2, j)*binomial(3*(n - j), n - j)/(3*j + 2)/(n - j + 1) for j in srange(1, 3)]) - 7*(n==2) if n >= 2 else 0 for n in srange(30)] # Benjamin Hackl, May 12 2020
CROSSREFS
Sequence in context: A117273 A137515 A164324 * A197246 A187104 A137741
KEYWORD
nonn,easy
AUTHOR
Benjamin Hackl, May 12 2020
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 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)