login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A349291
G.f. A(x) satisfies: A(x) = 1 / ((1 - x) * (1 - x * A(x)^5)).
11
1, 2, 13, 139, 1775, 24886, 370099, 5733304, 91518691, 1494815215, 24862931821, 419674102147, 7170713484877, 123783319369420, 2155542171446485, 37820343323942566, 667957770644685811, 11865421405897931581, 211856917750711562695, 3800040255017879663415
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n+4*k,5*k) * binomial(6*k,k) / (5*k+1).
a(n) ~ sqrt(1 + 4*r) / (2^(6/5) * 3^(7/10) * sqrt(5*Pi*(1-r)) * n^(3/2) * r^(n + 1/5)), where r = 0.051436794119208432185504972091697516647... is the real root of the equation 6^6 * r = 5^5 * (1-r)^5. - Vaclav Kotesovec, Nov 14 2021
MATHEMATICA
nmax = 19; A[_] = 0; Do[A[x_] = 1/((1 - x) (1 - x A[x]^5)) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
Table[Sum[Binomial[n + 4 k, 5 k] Binomial[6 k, k]/(5 k + 1), {k, 0, n}], {n, 0, 19}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 13 2021
STATUS
approved