I noticed that $f(x) = x\phi(x)$ seems to be one-to-one, where $\phi(x)$ is Euler's Phi function.
In particular, I'm writing some numerical python code and the line I have looks something like
sorted([n*phi(n) for n in range(1,1000)])
and there are no duplicates in the list.
First, is it one-to-one?
Second, if it is, is there a simple proof sketch?
To prove that $x\phi(x)=y\phi(y)$ implies $x=y$, show that the largest prime dividing $xy$ must divide both $x$ and $y$ to the same power, then induct.