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.

A092584 Numbers k such that sigma(phi(k)) == phi(sigma(k)) (mod k), that is, A033632(k)/k is an integer.

Original entry on oeis.org

1, 5, 9, 157, 225, 242, 516, 729, 3872, 13932, 14406, 17672, 18225, 20124, 21780, 29262, 29616, 45996, 65025, 76832, 92778, 95916, 106092, 106308, 114630, 114930, 121872, 125652, 140130, 140625, 145794, 149124, 160986, 179562, 185100, 234876
Offset: 1

Views

Author

Labos Elemer, Mar 01 2004

Keywords

Examples

			Includes but is not identical with A033632.
Below 10^7 only a(2) = 5 and a(4) = 157 give A033632(n)/n nonzero.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[250000], Divisible[DivisorSigma[1, EulerPhi[#]] - EulerPhi[DivisorSigma[1, #]] , #] &]  (* Amiram Eldar, Mar 12 2020 *)
  • PARI
    is(n)=sigma(eulerphi(n))==Mod(eulerphi(sigma(n)),n) \\ Charles R Greathouse IV, Nov 27 2013