OFFSET
1,2
COMMENTS
The sequence is infinite since it contains all the numbers of the form 11^i*23^j*47 for i,j > 0. Up to 10^11 the only terms not of this form are 1 and 7. - Giovanni Resta, Mar 15 2020
EXAMPLE
50 = 1^2 + 7^2 (sum of the squares of the divisors of 7) = 1^2 + 2^2 + 3^2 + 6^2 (sum of the squares of the divisors of 6 = phi(7)). So 7 is in the sequence.
MATHEMATICA
Select[Range[10!], DivisorSigma[2, #]==DivisorSigma[2, EulerPhi[#]]&]
PROG
(PARI) isok(m) = sigma(m, 2) == sigma(eulerphi(m), 2); \\ Michel Marcus, Mar 15 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Ivan N. Ianakiev, Mar 14 2020
EXTENSIONS
More terms from Giovanni Resta, Mar 15 2020
STATUS
approved