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!)
A356391 a(n) = n! * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d + 1) * d^2 ) /k. 5
1, 5, 35, 206, 1654, 13524, 130668, 1262064, 15027696, 178581600, 2407111200, 33276182400, 514020643200, 8130342124800, 144621487584000, 2537556118272000, 49206063078144000, 982811803276800000, 20991083543732736000, 454612169591580672000, 10763306565511514112000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n! * Sum_{k=1..n} A078306(k)/k.
E.g.f.: -(1/(1-x)) * Sum_{k>0} (-x)^k/(k * (1 - x^k)^2).
E.g.f.: (1/(1-x)) * Sum_{k>0} k * log(1 + x^k).
a(n) ~ n! * n^2 * 3 * zeta(3) / 8. - Vaclav Kotesovec, Aug 07 2022
MATHEMATICA
Table[n! * Sum[Sum[(-1)^(k/d + 1)*d^2, {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^2)/k);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(-sum(k=1, N, (-x)^k/(k*(1-x^k)^2))/(1-x)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, k*log(1+x^k))/(1-x)))
CROSSREFS
Sequence in context: A123008 A038143 A352404 * A221578 A320071 A024062
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 September 16 12:57 EDT 2024. Contains 375976 sequences. (Running on oeis4.)