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”).

A378452
Dirichlet inverse of A007875, where A007875(n) = phi(2^omega(n)).
2
1, -1, -1, 0, -1, 0, -1, 0, 0, 0, -1, 1, -1, 0, 0, 0, -1, 1, -1, 1, 0, 0, -1, 0, 0, 0, 0, 1, -1, 2, -1, 0, 0, 0, 0, 0, -1, 0, 0, 0, -1, 2, -1, 1, 1, 0, -1, 0, 0, 1, 0, 1, -1, 0, 0, 0, 0, 0, -1, 0, -1, 0, 1, 0, 0, 2, -1, 1, 0, 2, -1, -1, -1, 0, 1, 1, 0, 2, -1, 0, 0, 0, -1, 0, 0, 0, 0, 0, -1, 0, 0, 1, 0, 0, 0, 0, -1, 1, 1, 0
OFFSET
1,30
COMMENTS
Inverse Möbius transform of A378453.
LINKS
FORMULA
a(1) = 1, and for n > 1, a(n) = -Sum_{d|n, d<n} A007875(n/d) * a(d).
a(n) = Sum_{d|n} A378453(d).
PROG
(PARI)
A007875(n) = eulerphi(2^omega(n));
memoA378452 = Map();
A378452(n) = if(1==n, 1, my(v); if(mapisdefined(memoA378452, n, &v), v, v = -sumdiv(n, d, if(d<n, A007875(n/d)*A378452(d), 0)); mapput(memoA378452, n, v); (v)));
CROSSREFS
Cf. A007875, A378453 (Möbius transform).
Sequence in context: A263774 A161519 A286561 * A068101 A094263 A049761
KEYWORD
sign,new
AUTHOR
Antti Karttunen, Nov 29 2024
STATUS
approved