OFFSET
1,2
COMMENTS
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 840.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
Wacław Sierpiński, Number Of Divisors And Their Sum, Elementary theory of numbers, Warszawa, 1964.
EXAMPLE
for n=108,phi(108) = 36,phi(36)=12, rad(108)=6 and sigma(6) = 12
MAPLE
with(numtheory): for n from 1 to 1000000 do : t1:= ifactors(n)[2] : t2 :=mul(t1[i][1], i=1..nops(t1)): if phi(phi(n)) = sigma(t2)then print (n): else fi: od :
MATHEMATICA
Select[Range[50000], EulerPhi[EulerPhi[#]]==DivisorSigma[1, Times@@ FactorInteger[ #][[All, 1]]]&] (* Harvey P. Dale, Aug 21 2016 *)
PROG
(Magma) [1] cat [m:m in [2..42000]|EulerPhi((EulerPhi(m))) eq &+Divisors(&*PrimeDivisors(m))]; // Marius A. Burtea, Jul 10 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 23 2010
STATUS
approved