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!)
A327268 Dirichlet g.f.: 1 / (zeta(s) * zeta(s-1) * (1 - 2^(2 - s))). 3
1, 1, -4, 6, -6, -4, -8, 24, 3, -6, -12, -24, -14, -8, 24, 96, -18, 3, -20, -36, 32, -12, -24, -96, 5, -14, 0, -48, -30, 24, -32, 384, 48, -18, 48, 18, -38, -20, 56, -144, -42, 32, -44, -72, -18, -24, -48, -384, 7, 5, 72, -84, -54, 0, 72, -192, 80, -30, -60, 144, -62, -32, -24, 1536, 84 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Dirichlet inverse of A002129.
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d<n} A002129(n/d) * a(d).
Multiplicative with a(2) = 1, a(2^e) = 3*2^(2*e-3) for e >= 2, and for an odd prime p, a(p) = -(p+1), a(p^2) = p, and a(p^e) = 0 for e >= 3. - Amiram Eldar, Sep 15 2023
MATHEMATICA
a[1] = 1; a[n_] := Sum[Sum[(-1)^j j, {j, Divisors[n/d]}] a[d], {d, Most @ Divisors[n]}]; Table[a[n], {n, 1, 65}]
f[p_, e_] := Switch[e, 1, -(p+1), 2, p, _, 0]; f[2, e_] := 3*2^(2*e-3); f[2, 1] = 1; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Sep 15 2023 *)
CROSSREFS
Sequence in context: A286720 A201393 A327721 * A146208 A011227 A155907
KEYWORD
sign,easy,mult
AUTHOR
Ilya Gutkovskiy, Oct 22 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 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)