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

A308345
Expansion of e.g.f. Sum_{k>=1} log(1/(1 - x^k/k)).
5
1, 2, 4, 15, 48, 310, 1440, 11970, 85120, 821016, 7257600, 91707000, 958003200, 13440913200, 178919989248, 2809456650000, 41845579776000, 763629026160000, 12804747411456000, 257140635922025856, 4918792391884800000, 106876408948152480000
OFFSET
1,2
LINKS
FORMULA
a(n) = n! * Sum_{d|n} 1/(d*(n/d)^d).
a(n) = A007841(n) - (1/n) * Sum_{k=1..n-1} k*binomial(n,k)*A007841(n-k)*a(k).
a(n) ~ 2 * (n-1)!. - Vaclav Kotesovec, Feb 16 2020
MATHEMATICA
nmax = 22; CoefficientList[Series[Sum[Log[1/(1 - x^k/k)], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
Table[n! Sum[1/(d (n/d)^d), {d, Divisors[n]}], {n, 1, 22}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 21 2019
STATUS
approved