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.

A230201 Numbers k such that sigma(phi(k)) < k.

Original entry on oeis.org

2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 30, 32, 34, 36, 40, 42, 44, 46, 48, 50, 54, 58, 60, 64, 66, 68, 70, 72, 78, 80, 84, 90, 92, 94, 96, 98, 100, 102, 106, 108, 110, 114, 118, 120, 126, 128, 130, 132, 136, 138, 140, 144, 150, 156, 160, 162, 166, 168
Offset: 1

Views

Author

Vladimir Letsko, Oct 11 2013

Keywords

Comments

All terms are even. However, sigma(phi(k)) may be equal to k for an odd number k if k+2 is a Fermat prime.

Crossrefs

Programs

  • Maple
    for n do if sigma(phi(n))
    				
  • Mathematica
    Select[Range[200], DivisorSigma[1, EulerPhi[#]] < # &] (* T. D. Noe, Oct 14 2013 *)
  • PARI
    isok(n) = sigma(eulerphi(n)) < n; \\ Michel Marcus, Oct 12 2013