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!)
A356390 a(n) = n! * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d + 1) * d ) /k. 5
1, 3, 17, 74, 514, 3564, 30708, 250704, 2780496, 29982240, 373350240, 4639870080, 67024333440, 988156834560, 16914631507200, 271941778483200, 4999620452198400, 94617104704819200, 1925772463506124800, 39245319872575488000, 902004581585737728000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n! * Sum_{k=1..n} A000593(k)/k.
E.g.f.: -(1/(1-x)) * Sum_{k>0} (-x)^k/(k * (1 - x^k)).
E.g.f.: (1/(1-x)) * Sum_{k>0} log(1 + x^k).
a(n) ~ n! * n * Pi^2/12. - Vaclav Kotesovec, Aug 07 2022
MATHEMATICA
Table[n! * Sum[Sum[(-1)^(k/d + 1)*d, {d, Divisors[k]}]/k, {k, 1, n}], {n, 1, 20}] (* Vaclav Kotesovec, Aug 07 2022 *)
PROG
(PARI) a(n) = n!*sum(k=1, n, sumdiv(k, d, (-1)^(k/d+1)*d)/k);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(-sum(k=1, N, (-x)^k/(k*(1-x^k)))/(1-x)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, log(1+x^k))/(1-x)))
CROSSREFS
Sequence in context: A290411 A142868 A171875 * A100233 A015525 A062224
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 05 2022
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 May 1 19:28 EDT 2024. Contains 372176 sequences. (Running on oeis4.)