login
A378445
a(n) is the number of divisors d of n such that A083345(d) is odd, where A083345(n) is the numerator of Sum(e/p: n=Product(p^e)).
4
0, 1, 1, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 3, 2, 3, 1, 4, 1, 4, 2, 3, 1, 6, 1, 3, 2, 4, 1, 6, 1, 4, 2, 3, 2, 6, 1, 3, 2, 6, 1, 6, 1, 4, 3, 3, 1, 7, 1, 4, 2, 4, 1, 6, 2, 6, 2, 3, 1, 8, 1, 3, 3, 5, 2, 6, 1, 4, 2, 6, 1, 9, 1, 3, 3, 4, 2, 6, 1, 7, 2, 3, 1, 8, 2, 3, 2, 6, 1, 9, 2, 4, 2, 3, 2, 9, 1, 4, 3, 6, 1, 6, 1, 6, 4
OFFSET
1,4
COMMENTS
Number of terms of A369003 that divide n.
LINKS
FORMULA
a(n) = Sum_{d|n} A377874(d).
a(n) = A000005(n) - A378444(n).
PROG
(PARI)
A377874(n) = { my(f=factor(n)); (numerator(vecsum(vector(#f~, i, f[i, 2]/f[i, 1])))%2); };
A378445(n) = sumdiv(n, d, A377874(d));
CROSSREFS
Inverse Möbius transform of A377874.
Cf. also A174273, A378443.
Sequence in context: A116372 A232465 A382936 * A029242 A029236 A152188
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 27 2024
STATUS
approved