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!)
A346683 a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(7*k,k) / (6*k + 1). 5
1, 0, 7, 63, 756, 9716, 132062, 1865626, 27124049, 403197584, 6100155272, 93626517858, 1454221328232, 22815183746508, 361030984965596, 5755543515895284, 92350704790963431, 1490287557170676816, 24171116970619575559, 393808998160695560841, 6442255541764422795759 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 / (1 + x) + x * (1 + x)^6 * A(x)^7.
a(n) ~ 7^(7*n + 15/2) / (870199 * sqrt(Pi) * n^(3/2) * 2^(6*n + 2) * 3^(6*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021
MATHEMATICA
Table[Sum[(-1)^(n - k) Binomial[7 k, k]/(6 k + 1), {k, 0, n}], {n, 0, 20}]
nmax = 20; A[_] = 0; Do[A[x_] = 1/(1 + x) + x (1 + x)^6 A[x]^7 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*binomial(7*k, k)/(6*k + 1)); \\ Michel Marcus, Jul 29 2021
CROSSREFS
Sequence in context: A275577 A049464 A229078 * A084063 A184141 A349720
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 29 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 July 21 12:25 EDT 2024. Contains 374472 sequences. (Running on oeis4.)