A334786
a(n) is the total number of down steps before the first up step in all 4_2-Dyck paths of length 5*n. A 4_2-Dyck path is a lattice path with steps (1, 4), (1, -1) that starts and ends at y = 0 and stays above the line y = -2.
Original entry on oeis.org
0, 3, 16, 115, 950, 8510, 80388, 788392, 7950930, 81935425, 859005840, 9132977490, 98240702586, 1067197649840, 11691092372000, 129011823098160, 1432744619523530, 16000911127589355, 179590878292003200, 2024687100104286525, 22917687021180660940
Offset: 0
For n = 1, there are the 4_2-Dyck paths UDDDD, DUDDD, DDUDD. Before the first up step there are a(1) = 0 + 1 + 2 = 3 down steps in total.
-
a[0] = 0; a[n_] := 4 * Binomial[5*n, n]/(n+1) - 2 * Binomial[5*n+2, n]/(n+1); Array[a, 21, 0]
A334787
a(n) is the total number of down steps before the first up step in all 4_3-Dyck paths of length 5*n. A 4_3-Dyck path is a lattice path with steps (1, 4), (1, -1) that starts and ends at y = 0 and stays above the line y = -3.
Original entry on oeis.org
0, 6, 34, 251, 2105, 19040, 181076, 1784728, 18067803, 186754590, 1962728460, 20910164730, 225308533359, 2451112021568, 26885549373440, 297008527319440, 3301615350645935, 36903975448964670, 414518195957729886, 4676429192392769805, 52965796433899543810
Offset: 0
For n = 1, there are the 4_3-Dyck paths UDDDD, DUDDD, DDUDD, DDDUD. Before the first up step there are a(1) = 0 + 1 + 2 + 3 = 6 down steps in total.
-
a[0] = 0; a[n_] := 4 * Binomial[5*n, n]/(n+1) - Binomial[5*n+3, n]/(n+1); Array[a, 21, 0]
A346579
a(n) = (1/(5*n)) * Sum_{d|n} mu(n/d) * binomial(5*d,d).
Original entry on oeis.org
1, 4, 30, 240, 2125, 19776, 192129, 1922496, 19692504, 205444500, 2175519379, 23322637440, 252631900235, 2760767859780, 30400169155500, 336977763170048, 3757141504436392, 42107201575798248, 474084628585822412, 5359833703935374000, 60823006052351537106, 692556314455384443196
Offset: 1
-
Table[(1/(5 n)) Sum[MoebiusMu[n/d] Binomial[5 d, d], {d, Divisors[n]}], {n, 22}]
-
a(n) = sumdiv(n, d, moebius(n/d)*binomial(5*d,d))/(5*n); \\ Michel Marcus, Jul 24 2021
A346681
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(5*k,k) / (4*k + 1).
Original entry on oeis.org
1, 0, 5, 30, 255, 2275, 21476, 210404, 2120041, 21830314, 228713056, 2430255074, 26128088701, 283703487059, 3106713300821, 34270543858459, 380471319687826, 4247891403168599, 47665096853113576, 537244509843680309, 6079834137116933061, 69054467456964456599
Offset: 0
-
Table[Sum[(-1)^(n - k) Binomial[5 k, k]/(4 k + 1), {k, 0, n}], {n, 0, 21}]
nmax = 21; A[] = 0; Do[A[x] = 1/(1 + x) + x (1 + x)^4 A[x]^5 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
-
a(n) = sum(k=0, n, (-1)^(n-k)*binomial(5*k, k)/(4*k + 1)); \\ Michel Marcus, Jul 29 2021
A346766
a(n) = Sum_{k=0..n} Stirling2(n,k) * binomial(5*k,k) / (4*k + 1).
Original entry on oeis.org
1, 1, 6, 51, 531, 6331, 83532, 1195452, 18316582, 297727712, 5099398853, 91554269703, 1715910362408, 33457504204403, 676778172939139, 14168046060375184, 306327815585165519, 6827996259530724139, 156654003923243040925, 3694188118839057258940, 89428870506038692255920
Offset: 0
-
Table[Sum[StirlingS2[n, k] Binomial[5 k, k]/(4 k + 1), {k, 0, n}], {n, 0, 20}]
nmax = 20; CoefficientList[Series[Sum[(Binomial[5 k, k]/(4 k + 1)) x^k/Product[1 - j x, {j, 0, k}], {k, 0, nmax}], {x, 0, nmax}], x]
nmax = 20; CoefficientList[Series[HypergeometricPFQ[{1/5, 2/5, 3/5, 4/5}, {1/2, 3/4, 1, 5/4}, 3125 (Exp[x] - 1)/256], {x, 0, nmax}], x] Range[0, nmax]!
-
a(n) = sum(k=0, n, stirling(n, k, 2)*binomial(5*k, k)/(4*k + 1)); \\ Michel Marcus, Aug 03 2021
A346936
a(n) = Sum_{d|n} mu(n/d) * binomial(5*d,d) / (4*d+1).
Original entry on oeis.org
1, 4, 34, 280, 2529, 23712, 231879, 2330160, 23950320, 250540836, 2658968129, 28558319744, 309831575759, 3390416555996, 37377257156716, 414741861215840, 4628362722856424, 51912988232308104, 584909606696793884, 6617078646710069720, 75134301594081157746, 855968478539048248916
Offset: 1
-
Table[Sum[MoebiusMu[n/d] Binomial[5 d, d]/(4 d + 1), {d, Divisors[n]}], {n, 22}]
A364865
G.f. satisfies A(x) = 1 + x*A(x)^4 / (1 + x*A(x)^4).
Original entry on oeis.org
1, 1, 3, 11, 43, 170, 657, 2392, 7675, 17603, -11898, -529678, -4783303, -33099464, -201744488, -1130700432, -5917753701, -28985131575, -131668554663, -540199800203, -1862208441834, -4014999475540, 10784817197302, 222255824910088, 1973412557775753
Offset: 0
-
a(n) = sum(k=0, n, (-1)^k*2^(n-k)*binomial(n, k)*binomial(4*n+k+1, n)/(4*n+k+1));
A382000
E.g.f. A(x) satisfies A(x) = 1 + x*exp(2*x)*A(x)^5.
Original entry on oeis.org
1, 1, 14, 342, 12872, 659280, 42828912, 3375009568, 312860626304, 33361836534144, 4023352486200320, 541461682626399744, 80448618080927609856, 13079749459734097573888, 2309915877337042992324608, 440332184936376095626076160, 90117169223076699520606896128
Offset: 0
A386367
a(n) = Sum_{k=0..n-1} binomial(5*k,k) * binomial(5*n-5*k-2,n-k-1).
Original entry on oeis.org
0, 1, 13, 163, 2021, 24930, 306655, 3765448, 46182101, 565939603, 6931070490, 84845250370, 1038235255415, 12700966517968, 155336699256808, 1899439862390640, 23222289820948405, 283872591297526505, 3469680960837171415, 42404345427419774621, 518193229118757697930
Offset: 0
(1/5) * log( Sum_{k>=0} binomial(5*k,k)*x^k ) = x + 13*x^2/2 + 163*x^3/3 + 2021*x^4/4 + 4986*x^5 + ...
-
a(n) = sum(k=0, n-1, binomial(5*k, k)*binomial(5*n-5*k-2, n-k-1));
-
my(N=30, x='x+O('x^N), g=x*sum(k=0, N, binomial(5*k+3, k)/(k+1)*x^k)); concat(0, Vec(g*(1-g)/(1-5*g)^2))
A386566
a(n) = Sum_{k=0..n-1} binomial(5*k-1,k) * binomial(5*n-5*k,n-k-1).
Original entry on oeis.org
0, 1, 14, 181, 2284, 28506, 353630, 4370584, 53882392, 663116347, 8150224204, 100073884670, 1227826127020, 15055154471696, 184508186225552, 2260299193652496, 27679951219660080, 338872887728053465, 4147618793911034330, 50753529798492061819, 620942367878256638264
Offset: 0
(1/4) * log( Sum_{k>=0} binomial(5*k-1,k)*x^k ) = x + 7*x^2 + 181*x^3/3 + 571*x^4 + 28506*x^5/5 + ...
-
a(n) = sum(k=0, n-1, binomial(5*k-1, k)*binomial(5*n-5*k, n-k-1));
-
my(N=30, x='x+O('x^N), g=sum(k=0, N, binomial(5*k, k)/(4*k+1)*x^k)); concat(0, Vec(g*(g-1)/(5-4*g)^2))
Comments