login
A349355
Dirichlet convolution of A003958 with A063441 (Dirichlet inverse of A003959), where A003958 and A003959 are fully multiplicative with a(p) = p-1 and p+1 respectively.
5
1, -2, -2, -2, -2, 4, -2, -2, -4, 4, -2, 4, -2, 4, 4, -2, -2, 8, -2, 4, 4, 4, -2, 4, -8, 4, -8, 4, -2, -8, -2, -2, 4, 4, 4, 8, -2, 4, 4, 4, -2, -8, -2, 4, 8, 4, -2, 4, -12, 16, 4, 4, -2, 16, 4, 4, 4, 4, -2, -8, -2, 4, 8, -2, 4, -8, -2, 4, 4, -8, -2, 8, -2, 4, 16, 4, 4, -8, -2, 4, -16, 4, -2, -8, 4, 4, 4, 4, -2, -16
OFFSET
1,2
COMMENTS
Multiplicative because both A003958 and A063441 are.
In Dirichlet ring this sequence works as a kind of replacement operator which replaces the factor A003959 with factor A003958. For example, convolving this with A003968 (the Möbius transform of A003959) produces A003966, the Möbius transform of A003958.
LINKS
FORMULA
a(n) = Sum_{d|n} A003958(n/d) * A063441(d).
Multiplicative with a(p^e) = -2*(p-1)^(e-1). - Amiram Eldar, Nov 16 2021
MATHEMATICA
f[p_, e_] := -2*(p - 1)^(e - 1); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Nov 16 2021 *)
PROG
(PARI)
A003958(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]--); factorback(f); };
A063441(n) = (moebius(n)*sigma(n)); \\ Also Dirichlet inverse of A003959.
A349355(n) = sumdiv(n, d, A003958(n/d)*A063441(d));
CROSSREFS
Cf. A003958, A003959, A003966, A003968, A063441, A349356 (Dirichlet inverse), A349357 (sum with it).
Cf. also A349382.
Sequence in context: A081755 A366538 A366536 * A353589 A237709 A250200
KEYWORD
sign,mult
AUTHOR
Antti Karttunen, Nov 16 2021
STATUS
approved