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

A355496
Expansion of Sum_{k>=0} (k^3 * x/(1 - x))^k.
4
1, 1, 65, 19812, 16836458, 30584805344, 101712712528352, 559155681922806328, 4726278437746021089208, 58187531579876705928027712, 1000523517685151396828602120640, 23235157037192774575979788565151104, 709057406693306876515431403267191583808
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=1..n} k^(3*k) * binomial(n-1,k-1) for n > 0.
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k^3*x/(1-x))^k))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, k^(3*k)*binomial(n-1, k-1)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 04 2022
STATUS
approved