A104905 Numbers m such that d(m)*phi(m) = sigma(m), where d(m) is number of positive divisors of m.
1, 3, 14, 42
Offset: 1
Examples
42 is in the sequence because d(42)=8; phi(42)=12; sigma(42)=96 & 8*12=96.
Programs
-
Mathematica
Do[If[DivisorSigma[0, n]*EulerPhi[n] == DivisorSigma[1, n], Print[n]], {n, 530000000}]
Extensions
Keywords full, fini from Max Alekseyev, Feb 08 2010
Comments