OFFSET
1,1
COMMENTS
a(n) is the number of lattice paths from (0,0) to (4n,n) using only the steps (1,0) and (0,1) and whose only lattice points on the line y = x/4 are the path's endpoints.
FORMULA
a(n) = 5*A118971(n-1).
G.f.: 5*x*F(x)^4 where F(x) = 1 + x*F(x)^5 is the g.f. of A002294.
D-finite with recurrence 8*n*(4*n-3)*(2*n-1)*(4*n-1)*a(n) -5*(5*n-4)*(5*n-3)*(5*n-2)*(5*n-6)*a(n-1)=0., a(0)=1. - R. J. Mathar, Jan 26 2025
MATHEMATICA
Array[4 Binomial[5 #, #]/(5 # - 1) &, 20] (* Michael De Vlieger, Aug 21 2020 *)
PROG
(PARI) a(n) = {4*binomial(5*n, n)/(5*n-1)} \\ Andrew Howroyd, Aug 21 2020
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Lucas A. Brown, Aug 21 2020
STATUS
approved