login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A328193 Expansion of e.g.f. Sum_{k>=1} log(1/(1 + (-x)^k/k)). 1
1, 0, 4, 3, 48, 10, 1440, 1890, 85120, 49896, 7257600, 6883800, 958003200, 792277200, 178919989248, 194107914000, 41845579776000, 29714949264000, 12804747411456000, 12900082757417856, 4918792391884800000, 4594737608304480000, 2248001455555215360000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = n! * Sum_{d|n} (-1)^(n - d) / (d * (n/d)^d).
MAPLE
a:= n-> n!*add((-1)^(n-d)/(d*(n/d)^d), d=numtheory[divisors](n)):
seq(a(n), n=1..24); # Alois P. Heinz, Oct 30 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[Sum[Log[1/(1 + (-x)^k/k)], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
Table[n! Sum[(-1)^(n - d)/(d (n/d)^d), {d, Divisors[n]}], {n, 1, 23}]
CROSSREFS
Sequence in context: A362275 A324671 A249226 * A273878 A013335 A298314
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 30 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)