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”).

A349363
G.f. A(x) satisfies: A(x) = 1 + x * A(x)^7 / (1 + x).
6
1, 1, 6, 57, 629, 7589, 96942, 1288729, 17643920, 247089010, 3522891561, 50964747400, 746241617226, 11038241689188, 164696773030055, 2475832560808858, 37462189433509758, 570112127356828846, 8720472842436039280, 133997057207982607092, 2067402314984991892461
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n-1,k-1) * binomial(7*k,k) / (6*k+1).
a(n) = (-1)^(n+1)* F([8/7, 9/7, 10/7, 11/7, 12/7, 13/7, 1-n], [4/3, 3/2, 5/3, 11/6, 2, 13/6], 7^7/6^6), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 15 2021
a(n) ~ 776887^(n + 1/2) / (343 * sqrt(Pi) * n^(3/2) * 2^(6*n + 2) * 3^(6*n + 3/2)). - Vaclav Kotesovec, Nov 17 2021
MAPLE
a:= n-> coeff(series(RootOf(1+x*A^7/(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]^7/(1 + x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
Table[Sum[(-1)^(n - k) Binomial[n - 1, k - 1] Binomial[7 k, k]/(6 k + 1), {k, 0, n}], {n, 0, 20}]
CROSSREFS
Sequence in context: A246235 A213105 A138414 * A130565 A124556 A369514
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 15 2021
STATUS
approved