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!)
A356389 a(n) = n! * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d + 1) ) /k. 5
1, 2, 10, 34, 218, 1308, 10596, 74688, 793152, 7931520, 94504320, 1054218240, 14662840320, 205279764480, 3427909632000, 50923531008000, 907545606912000, 16335820924416000, 323185344975360000, 6220416698689536000, 140360358705186816000, 3087927891514109952000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n! * Sum_{k=1..n} A048272(k)/k.
E.g.f.: (1/(1-x)) * Sum_{k>0} log(1 + x^k)/k.
a(n) ~ n! * log(2) * (log(n) + 2*gamma - log(2)/2), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Aug 07 2022
MATHEMATICA
Table[n! * Sum[Sum[-(-1)^(k/d), {d, Divisors[k]}]/k, {k, 1, n}], {n, 1, 25}] (* Vaclav Kotesovec, Aug 07 2022 *)
Table[n! * Sum[(2*DivisorSigma[0, 2*k] - 3*DivisorSigma[0, k])/k, {k, 1, n}], {n, 1, 25}] (* Vaclav Kotesovec, Aug 07 2022 *)
PROG
(PARI) a(n) = n!*sum(k=1, n, sumdiv(k, d, (-1)^(k/d+1))/k);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, log(1+x^k)/k)/(1-x)))
CROSSREFS
Sequence in context: A108924 A281097 A221492 * A318696 A116898 A033261
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 August 21 11:52 EDT 2024. Contains 375353 sequences. (Running on oeis4.)