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

A346768
a(n) = Sum_{k=0..n} Stirling2(n,k) * binomial(7*k,k) / (6*k + 1).
6
1, 1, 8, 92, 1289, 20518, 358611, 6749268, 135095116, 2851394415, 63066764910, 1454808403309, 34869538474423, 865771965143262, 22211885496614803, 587583912259110350, 15998031596388750905, 447598845624472993496, 12850922242548662924046, 378153449033278630907275
OFFSET
0,3
COMMENTS
Stirling transform of A002296.
LINKS
FORMULA
G.f.: Sum_{k>=0} ( binomial(7*k,k) / (6*k + 1) ) * x^k / Product_{j=0..k} (1 - j*x).
MATHEMATICA
Table[Sum[StirlingS2[n, k] Binomial[7 k, k]/(6 k + 1), {k, 0, n}], {n, 0, 19}]
nmax = 19; CoefficientList[Series[Sum[(Binomial[7 k, k]/(6 k + 1)) x^k/Product[1 - j x, {j, 0, k}], {k, 0, nmax}], {x, 0, nmax}], x]
nmax = 19; CoefficientList[Series[HypergeometricPFQ[{1/7, 2/7, 3/7, 4/7, 5/7, 6/7}, {1/3, 1/2, 2/3, 5/6, 1, 7/6}, 823543 (Exp[x] - 1)/46656], {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) a(n) = sum(k=0, n, stirling(n, k, 2)*binomial(7*k, k)/(6*k + 1)); \\ Michel Marcus, Aug 02 2021
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 02 2021
STATUS
approved