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.

A067384 Numbers n such that sigma(phi(n))/sigma(n) = 4.

Original entry on oeis.org

121679, 1043909, 2350171, 2918263, 3396103, 3566807, 3688067, 4019467, 4562827, 5963407, 7300697, 7485979, 7853933, 8103301, 8364151, 9237779, 9514213, 9638527, 10531123, 11094619, 11384447, 12721937, 13576267
Offset: 1

Views

Author

Dean Hickerson, Jan 20 2002

Keywords

Comments

Subsequence of A066881. - R. J. Mathar, Sep 30 2008

Crossrefs

Programs

  • Mathematica
    For[ n=1, True, n++, If[ DivisorSigma[ 1, EulerPhi[ n ] ]/DivisorSigma[ 1, n ]==4, Print[ n ] ] ]
  • PARI
    is(n)=sigma(phi(n=factor(n)))/sigma(n)==4 \\ Charles R Greathouse IV, Nov 27 2013