login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A349362 G.f. A(x) satisfies: A(x) = 1 + x * A(x)^6 / (1 + x). 11
1, 1, 5, 40, 370, 3740, 40006, 445231, 5102165, 59799505, 713496815, 8637432580, 105826926716, 1309793896431, 16351672606365, 205665994855320, 2603696877136060, 33151784577226295, 424258396639960591, 5454120586840761631, 70402732493668027775 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 07:55 EDT 2024. Contains 371769 sequences. (Running on oeis4.)