A346672 a(n) = Sum_{k=0..n} binomial(8*k,k) / (7*k + 1).
1, 2, 10, 102, 1342, 19620, 305004, 4943352, 82595376, 1412486081, 24602515801, 434935956337, 7783978950825, 140752989839105, 2567623696254905, 47195200645619009, 873239636055018809, 16251426606785706209, 304007720310330530081, 5713101394865420846381
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..768
Programs
-
Mathematica
Table[Sum[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, binomial(8*k, k)/(7*k+1)); \\ Michel Marcus, Jul 28 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) / (15953673 * sqrt(Pi) * n^(3/2) * 7^(7*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021
Comments