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

A356688
a(n) = n! * Sum_{k=0..n} k^(3*n)/k!.
3
1, 1, 66, 21225, 18952156, 36175231585, 126556309395486, 733064060959310689, 6540867625730306094360, 85180334386943946887707617, 1552697061493449955344530003290, 38315904135534199560725372265381721, 1245605749857294018587318829355458646068
OFFSET
0,3
LINKS
FORMULA
E.g.f.: Sum_{k>=0} (k^3 * x)^k / (k! * (1 - k^3 * x)).
MATHEMATICA
a[n_] := n! * Sum[k^(3*n)/k!, {k, 0, n}]; a[0] = 1; Array[a, 13, 0] (* Amiram Eldar, Aug 23 2022 *)
PROG
(PARI) a(n) = n!*sum(k=0, n, k^(3*n)/k!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (k^3*x)^k/(k!*(1-k^3*x)))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2022
STATUS
approved