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.

A067382 Numbers n such that sigma(phi(n))/sigma(n) = 2.

Original entry on oeis.org

13, 71, 89, 203, 305, 319, 667, 1363, 1421, 1525, 1711, 1889, 2407, 2933, 3103, 4609, 4615, 4843, 5191, 6583, 7123, 7625, 7627, 9947, 10063, 10411, 11107, 13543, 13891, 14587, 16327, 17023, 19693, 20851, 23075, 24331, 24721, 25027, 25723
Offset: 1

Views

Author

Dean Hickerson, Jan 20 2002

Keywords

Comments

Sequence is infinite. Contains subsequences like 5^i*61, 5^i*13*71, 7^i*29 ... (see also Farideh Firoozbakht's comment on A033631.) - vim(AT)gmx.li, Nov 03 2006

Crossrefs

Programs

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