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.

A068580 Let phi_m(x) = phi(phi(...(phi(x))...)) m times; sequence gives values of k such that phi_2(k) = tau(k).

Original entry on oeis.org

1, 5, 7, 15, 21, 22, 26, 40, 56, 66, 70, 78, 108, 120, 126, 168, 210
Offset: 1

Views

Author

Benoit Cloitre, Mar 26 2002

Keywords

Comments

Numbers k such that A010554(k) = A000005(k).

Crossrefs

Programs

  • Mathematica
    Select[Range[210], Nest[EulerPhi, #, 2] === DivisorSigma[0, #] &] (* Amiram Eldar, Jun 12 2022 *)
  • PARI
    is(k) = numdiv(k) == eulerphi(eulerphi(k)); \\ Jinyuan Wang, Apr 05 2020