The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A323363 Dirichlet inverse of Dedekind's psi, A001615. 12
1, -3, -4, 3, -6, 12, -8, -3, 4, 18, -12, -12, -14, 24, 24, 3, -18, -12, -20, -18, 32, 36, -24, 12, 6, 42, -4, -24, -30, -72, -32, -3, 48, 54, 48, 12, -38, 60, 56, 18, -42, -96, -44, -36, -24, 72, -48, -12, 8, -18, 72, -42, -54, 12, 72, 24, 80, 90, -60, 72, -62, 96, -32, 3, 84, -144, -68, -54, 96, -144, -72, -12, -74, 114, -24 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x - Sum_{k>=2} psi(k) * A(x^k). - Ilya Gutkovskiy, Sep 04 2019
From Amiram Eldar, Oct 14 2020: (Start)
Multiplicative with a(p^e) = (-1)^e * (p+1).
a(n) = A008836(n) * A048250(n). (End)
Dirichlet g.f.: zeta(2*s)/(zeta(s-1)*zeta(s)). - Amiram Eldar, Dec 05 2022
MATHEMATICA
psi[n_] := If[n == 1, 1, n Times @@ (1 + 1/FactorInteger[n][[All, 1]])];
a[n_] := a[n] = If[n == 1, 1, -Sum[psi[n/d] a[d], {d, Most@ Divisors[n]}]];
Array[a, 75] (* Jean-François Alcover, Feb 15 2020 *)
f[p_, e_] := (-1)^e * (p + 1); a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* Amiram Eldar, Oct 14 2020 *)
PROG
(PARI)
A001615(n) = (n * sumdivmult(n, d, issquarefree(d)/d)); \\ From A001615
A323363(n) = if(1==n, 1, -sumdiv(n, d, if(d<n, A001615(n/d)*A323363(d), 0)));
CROSSREFS
Cf. A048250 (absolute values).
Sequence in context: A238162 A367503 A048250 * A073181 A183100 A340323
KEYWORD
sign,mult,easy
AUTHOR
Antti Karttunen, Jan 13 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 June 4 19:35 EDT 2024. Contains 373102 sequences. (Running on oeis4.)