A346684 a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(8*k,k) / (7*k + 1).
1, 0, 8, 84, 1156, 17122, 268262, 4370086, 73281938, 1256608767, 21933420953, 388400019583, 6960642974905, 126008367913375, 2300862338502425, 42326714610861679, 783717720798538121, 14594469249932149279, 273161824453612674593, 5135931850101477641707
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..768
Programs
-
Mathematica
Table[Sum[(-1)^(n - k) Binomial[8 k, k]/(7 k + 1), {k, 0, n}], {n, 0, 19}] nmax = 19; A[] = 0; Do[A[x] = 1/(1 + x) + x (1 + x)^7 A[x]^8 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
-
PARI
a(n) = sum(k=0, n, (-1)^(n-k)*binomial(8*k, k)/(7*k + 1)); \\ Michel Marcus, Jul 29 2021
Formula
G.f. A(x) satisfies: A(x) = 1 / (1 + x) + x * (1 + x)^7 * A(x)^8.
a(n) ~ 2^(24*n + 25) / (17600759 * sqrt(Pi) * n^(3/2) * 7^(7*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021
Comments