OFFSET
1,1
COMMENTS
Empirical observation: Let phi(m) + phi(m + phi(m)) = A*m / B, GCD(A,B) = 1. For some (A,B) like (1,1) - this sequence, (2,3), (4,5), (4,7), (5,7), (7,9), (14,9), (8,11), ..., there exists (finitely/infinitely many ?) solutions to phi(m) + phi(m + phi(m)) = A*m / B. Experimentally it looks like for m = 3*A033845(n) = 18*A003586(n), phi(m) + phi(m + phi(m)) = 7*m / 9. - Ctibor O. Zizka, Apr 25 2025
Empirical observation: for a(n) <= 2^24, this sequence is the union of {2^k : k > 1}, {2^k*3 : k > 0}, {2^k*5 : k > 0}, {2^k*7 : k > 0}, {2^k*5*7 : k > 0}, {2^k*47 : k > 0}. - Michael De Vlieger, Sep 09 2025
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..123
Thomas Bloom, Problem 411, Erdős Problems.
Erdős problems database contributors, Erdős problem database, see no. 411.
Stefan Steinerberger, On an iterated arithmetic function problem of Erdos and Graham, arXiv:2504.08023 [math.NT], 2025.
MATHEMATICA
q[m_] := Module[{phi = EulerPhi[m]}, phi + EulerPhi[m + phi] == m]; Select[Range[10000], q] (* Amiram Eldar, Apr 14 2025 *)
PROG
(PARI) isok(m) = eulerphi(m) + eulerphi(m+eulerphi(m)) == m;
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Apr 14 2025
STATUS
approved
