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

A346648
a(n) = Sum_{k=0..n} binomial(n,k) * binomial(6*k,k) / (5*k + 1).
12
1, 2, 9, 73, 751, 8587, 104425, 1323952, 17303503, 231455104, 3153167249, 43597546197, 610232050453, 8629733401556, 123114479858631, 1769728635257503, 25607523627970183, 372688563309335806, 5451995469296025115, 80122698147986922194, 1182341393088427774071
OFFSET
0,2
COMMENTS
Binomial transform of A002295.
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 / (1 - x) + x * (1 - x)^4 * A(x)^6.
G.f.: Sum_{k>=0} ( binomial(6*k,k) / (5*k + 1) ) * x^k / (1 - x)^(k+1).
a(n) ~ 49781^(n + 3/2) / (3359232 * sqrt(3*Pi) * n^(3/2) * 5^(5*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021
MATHEMATICA
Table[Sum[Binomial[n, k] Binomial[6 k, k]/(5 k + 1), {k, 0, n}], {n, 0, 20}]
nmax = 20; A[_] = 0; Do[A[x_] = 1/(1 - x) + x (1 - x)^4 A[x]^6 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
nmax = 20; CoefficientList[Series[Sum[(Binomial[6 k, k]/(5 k + 1)) x^k/(1 - x)^(k + 1), {k, 0, nmax}], {x, 0, nmax}], x]
Table[HypergeometricPFQ[{1/6, 1/3, 1/2, 2/3, 5/6, -n}, {2/5, 3/5, 4/5, 1, 6/5}, -46656/3125], {n, 0, 20}]
PROG
(PARI) a(n) = sum(k=0, n, binomial(n, k)*binomial(6*k, k)/(5*k + 1)); \\ Michel Marcus, Jul 26 2021
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 26 2021
STATUS
approved