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!)
A369101 Dirichlet g.f.: zeta(s-3)^2 * (1 - 2^(4-s)) / zeta(s). 0
1, -1, 53, -64, 249, -53, 685, -960, 2133, -249, 2661, -3392, 4393, -685, 13197, -11264, 9825, -2133, 13717, -15936, 36305, -2661, 24333, -50880, 46625, -4393, 76545, -43840, 48777, -13197, 59581, -118784, 141033, -9825, 170565, -136512, 101305, -13717, 232829 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
In general, for k > 0, if Dirichlet g.f. is zeta(s-k)^2 * (1 - 2^(k+1-s)) / zeta(s), then a(n) ~ log(2) * n^(k+1) / ((k+1) * zeta(k+1)).
LINKS
FORMULA
Sum_{k=1..n} a(k) ~ 45 * log(2) * n^4 / (2*Pi^4).
Multiplicative with a(2^e) = -(7*e-6)*8^(e-1), and a(p^e) = p^(3*e-3) * (1 + (e+1)*(p^3-1)) for an odd prime p. - Amiram Eldar, Jan 13 2024
MATHEMATICA
Table[Sum[DivisorSum[k, #^3*MoebiusMu[k/#]&]*(-1)^(n/k+1)*(n/k)^3, {k, Divisors[n]}], {n, 1, 50}]
f[p_, e_] := p^(3*e-3) * (1 + (e+1)*(p^3-1)); f[2, e_] := -(7*e-6)*8^(e-1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Jan 13 2024 *)
PROG
(PARI) a(n) = {my(f = factor(n), p, e); prod(i = 1, #f~, p = f[i, 1]; e=f[i, 2]; if(p == 2, -(7*e-6)*8^(e-1), p^(3*e-3) * (1 + (e+1)*(p^3-1)))); } \\ Amiram Eldar, Jan 13 2024
CROSSREFS
Cf. A048272 (k=0), A332794 (k=1), A368929 (k=2).
Sequence in context: A097415 A061946 A039531 * A115936 A182571 A034965
KEYWORD
sign,mult
AUTHOR
Vaclav Kotesovec, Jan 13 2024
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 June 21 03:10 EDT 2024. Contains 373535 sequences. (Running on oeis4.)