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

A378544
a(n) is the sum of those divisors d of n for which A083345(d) is even, where A083345(n) is the numerator of Sum(e/p: n=Product(p^e)).
4
1, 1, 1, 1, 1, 1, 1, 1, 10, 1, 1, 13, 1, 1, 16, 17, 1, 10, 1, 21, 22, 1, 1, 13, 26, 1, 10, 29, 1, 16, 1, 17, 34, 1, 36, 22, 1, 1, 40, 21, 1, 22, 1, 45, 25, 1, 1, 29, 50, 26, 52, 53, 1, 10, 56, 29, 58, 1, 1, 48, 1, 1, 31, 17, 66, 34, 1, 69, 70, 36, 1, 22, 1, 1, 41, 77, 78, 40, 1, 37, 91, 1, 1, 62, 86, 1, 88, 45, 1, 25
OFFSET
1,9
FORMULA
a(n) = Sum_{d|n} d*A369001(d).
a(n) = A000203(n) - A378545(n).
PROG
(PARI)
A083345(n) = { my(f=factor(n)); numerator(vecsum(vector(#f~, i, f[i, 2]/f[i, 1]))); };
A369001(n) = !(A083345(n)%2);
A378544(n) = sumdiv(n, d, d*A369001(d));
CROSSREFS
Cf. also A378444 (number of such divisors).
Sequence in context: A347173 A351647 A168644 * A168620 A143683 A146773
KEYWORD
nonn,new
AUTHOR
Antti Karttunen, Nov 29 2024
STATUS
approved