login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349373
Dirichlet convolution of Kimberling's paraphrases (A003602) with Dirichlet inverse of Euler phi (A023900).
5
1, 0, 0, -1, -1, 0, -2, -2, -1, 0, -4, 0, -5, 0, 2, -3, -7, 0, -8, 1, 3, 0, -10, 0, -3, 0, -2, 2, -13, 0, -14, -4, 5, 0, 8, 1, -17, 0, 6, 2, -19, 0, -20, 4, 5, 0, -22, 0, -5, 0, 8, 5, -25, 0, 14, 4, 9, 0, -28, -2, -29, 0, 8, -5, 17, 0, -32, 7, 11, 0, -34, 2, -35, 0, 4, 8, 23, 0, -38, 3, -3, 0, -40, -3, 23, 0, 14, 8
OFFSET
1,7
LINKS
FORMULA
a(n) = Sum_{d|n} A003602(n/d) * A023900(d).
MATHEMATICA
f[p_, e_] := (1 - p); d[1] = 1; d[n_] := Times @@ f @@@ FactorInteger[n]; k[n_] := (n / 2^IntegerExponent[n, 2] + 1)/2; a[n_] := DivisorSum[n, k[#] * d[n/#] &]; Array[a, 100] (* Amiram Eldar, Nov 16 2021 *)
PROG
(PARI)
A003602(n) = (1+(n>>valuation(n, 2)))/2;
A023900(n) = factorback(apply(p -> 1-p, factor(n)[, 1]));
A349373(n) = sumdiv(n, d, A003602(n/d)*A023900(d));
CROSSREFS
Cf. A347954, A347955, A347956, A349136, A349370, A349371, A349372, A349374, A349375, A349390, A349431, A349444, A349447 for Dirichlet convolutions of other sequences with A003602.
Sequence in context: A065177 A064044 A213980 * A144912 A306708 A145337
KEYWORD
sign
AUTHOR
Antti Karttunen, Nov 15 2021
STATUS
approved