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

A306628
Expansion of e.g.f. log(Sum_{k>=0} (k*x)^k).
2
1, 7, 140, 5394, 336024, 30663840, 3846629520, 634415055120, 133073632016640, 34596321663980160, 10919217470376902400, 4113179201266142515200, 1822997615295693513600000, 939158618068666181592806400, 556530141861219809204393472000
OFFSET
1,2
LINKS
FORMULA
a(n) ~ n! * n^n. - Vaclav Kotesovec, Mar 02 2019
MATHEMATICA
nmax = 20; Rest[CoefficientList[Series[Log[1 + Sum[(k*x)^k, {k, 1, nmax}]], {x, 0, nmax}], x] * Range[0, nmax]!] (* Vaclav Kotesovec, Mar 02 2019 *)
PROG
(PARI) N=20; x='x+O('x^N); Vec(serlaplace(log(sum(k=0, N, (k*x)^k))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 01 2019
STATUS
approved