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.

A124724 a(n) = (4/(n + 1)) * C(5*n, n).

Original entry on oeis.org

4, 10, 60, 455, 3876, 35420, 339300, 3362260, 34179860, 354465254, 3735373880, 39884521950, 430571952300, 4691735290080, 51534335175776, 570003171679020, 6343110854237300, 70968228417131850, 797820661622862900
Offset: 0

Views

Author

Paul Barry, Nov 05 2006

Keywords

Comments

a(n) is the total number of down steps between the first and second up steps in all 4-Dyck paths of length 5*(n+1). A 4-Dyck path is a nonnegative lattice path with steps (1,4), (1,-1) that starts and ends at y = 0. - Sarah Selkirk, May 07 2020

Crossrefs

Programs

  • Mathematica
    Array[(4/(# + 1))*Binomial[5 #, #] &, 28, 0] (* Michael De Vlieger, Apr 12 2023 *)
  • PARI
    a(n) = (4/(n+1)) * binomial(5*n,n); \\ Michel Marcus, May 08 2020

Formula

a(n) = C(5*n, n)/(4*n + 1) + 2*C(5*n + 1, n)/(4*n + 2) + 3*C(5*n + 2, n)/(4*n + 3) + 4*C(5*n + 3, n)/(4*n + 4).