OFFSET
1,1
COMMENTS
Sandor proved that this sequence is infinite.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Jozsef Sandor, On the composition of some arithmetic functions, II, Journal of Inequalities in Pure and Applied Mathematics, Vol. 6, No. 3 (2005), Article 73.
EXAMPLE
26 is in the sequence since psi(phi(26)) = psi(12) = 24, and 2 * phi(psi(26)) = 2 * phi(42) = 2 * 12 = 24.
MATHEMATICA
psi[1] = 1; psi[n_] := n * Times @@ (1 + 1/Transpose[FactorInteger[n]][[1]]); Select[Range[1000], psi[EulerPhi[#]] == 2 * EulerPhi[psi[#]] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Dec 26 2019
STATUS
approved