A078148 Numbers k such that d(phi(k)) = phi(d(k)), where d=A000005 and phi=A000010.
1, 2, 4, 6, 16, 24, 30, 36, 64, 384, 408, 480, 510, 1024, 1296, 1560, 1680, 2304, 2640, 3480, 4096, 5440, 5520, 6360, 9240, 11280, 14040, 14160, 14400, 15120, 15960, 17880, 19320, 19920, 20760, 22848, 24480, 25680, 26880, 30360, 32280, 35160
Offset: 1
Keywords
Examples
k = 24: d(24) = 8, phi(8) = 4, phi(24) = 8, d(8) = 4, so 24 is a term.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..500 from T. D. Noe)
Programs
-
Mathematica
cm[x_] := DivisorSigma[0, EulerPhi[x]]-EulerPhi[DivisorSigma[0, x]] Do[s=cm[n]; If[Equal[s, 0], Print[n]], {n, 1, 100000}] Select[Range[36000],DivisorSigma[0,EulerPhi[#]]==EulerPhi[ DivisorSigma[ 0,#]]&] (* Harvey P. Dale, Sep 02 2013 *)
-
PARI
is(n)=numdiv(eulerphi(n))==eulerphi(numdiv(n)) \\ Charles R Greathouse IV, Feb 21 2013
Comments