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.

A370690 Denominator of sigma(phi(n))/phi(sigma(n)), where sigma is the sum of the divisors function and phi is the Euler totient function.

Original entry on oeis.org

1, 2, 2, 2, 2, 4, 1, 8, 1, 6, 2, 12, 3, 2, 8, 2, 6, 2, 8, 4, 4, 2, 2, 16, 5, 3, 16, 6, 1, 8, 2, 36, 8, 18, 4, 18, 18, 16, 2, 24, 2, 8, 5, 4, 2, 2, 2, 60, 3, 10, 8, 7, 9, 32, 4, 8, 32, 3, 8, 48, 5, 4, 48, 2, 6, 8, 2, 4, 8, 4, 1, 8, 12, 36, 2, 48, 4, 4, 4, 20, 11
Offset: 1

Views

Author

Amiram Eldar, Feb 27 2024

Keywords

Comments

See A370689 for details.

Crossrefs

Cf. A000010, A000203, A033632, A062401, A062402, A065395, A066930 (positions of 1's), A073858, A289336, A289412, A370689 (numerators).

Programs

  • Mathematica
    Table[DivisorSigma[1, EulerPhi[n]]/EulerPhi[DivisorSigma[1, n]], {n, 1, 100}] // Denominator
  • PARI
    a(n) = {my(f = factor(n)); denominator(sigma(eulerphi(f)) / eulerphi(sigma(f)));}