cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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

Original entry on oeis.org

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

Views

Author

Antti Karttunen, Nov 27 2024

Keywords

Comments

Number of terms of A369003 that divide n.

Crossrefs

Inverse Möbius transform of A377874.
Cf. also A174273, A378443.

Programs

  • 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));

Formula

a(n) = Sum_{d|n} A377874(d).
a(n) = A000005(n) - A378444(n).