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.

A066930 Numbers k such that phi(sigma(k)) divides sigma(phi(k)).

Original entry on oeis.org

1, 7, 9, 29, 71, 97, 109, 121, 139, 142, 175, 183, 194, 215, 225, 242, 244, 261, 278, 311, 344, 349, 355, 430, 497, 509, 516, 533, 556, 571, 605, 622, 631, 647, 673, 709, 729, 791, 817, 859, 911, 923, 1021, 1066, 1112, 1119, 1142, 1207, 1243, 1262, 1277
Offset: 1

Views

Author

Benoit Cloitre, Jan 26 2002

Keywords

Crossrefs

Cf. A000010 (phi), A000203 (sigma), A033632 (subsequence), A062401, A062402.

Programs

  • Mathematica
    Select[Range[1300],Divisible[DivisorSigma[1,EulerPhi[#]],EulerPhi[ DivisorSigma[ 1,#]]]&] (* Harvey P. Dale, Dec 15 2021 *)
  • PARI
    isok(k) = { sigma(eulerphi(k)) % eulerphi(sigma(k)) == 0 } \\ Harry J. Smith, Apr 08 2010