login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349362
G.f. A(x) satisfies: A(x) = 1 + x * A(x)^6 / (1 + x).
13
1, 1, 5, 40, 370, 3740, 40006, 445231, 5102165, 59799505, 713496815, 8637432580, 105826926716, 1309793896431, 16351672606365, 205665994855320, 2603696877136060, 33151784577226295, 424258396639960591, 5454120586840761631, 70402732493668027775
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n-1,k-1) * binomial(6*k,k) / (5*k+1).
a(n) = (-1)^(n+1)* F([7/6, 4/3, 3/2, 5/3, 11/6, 1-n], [7/5, 8/5, 9/5, 2, 11/5], 6^6/5^5), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 15 2021
a(n) ~ 43531^(n + 1/2) / (72 * sqrt(3*Pi) * n^(3/2) * 5^(5*n + 3/2)). - Vaclav Kotesovec, Nov 17 2021
MAPLE
a:= n-> coeff(series(RootOf(1+x*A^6/(1+x)-A, A), x, n+1), x, n):
seq(a(n), n=0..20); # Alois P. Heinz, Nov 15 2021
MATHEMATICA
nmax = 20; A[_] = 0; Do[A[x_] = 1 + x A[x]^6/(1 + x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
Table[Sum[(-1)^(n - k) Binomial[n - 1, k - 1] Binomial[6 k, k]/(5 k + 1), {k, 0, n}], {n, 0, 20}]
CROSSREFS
Sequence in context: A052788 A213104 A219560 * A359984 A271957 A220673
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 15 2021
STATUS
approved