OFFSET
1,2
COMMENTS
There is some m > 1 such that a(n) > m*n for all n > 1. This follows from the positive density of numbers n such that n/phi(n) > 10. - Charles R Greathouse IV, Sep 07 2012
LINKS
V. Raman, Table of n, a(n) for n = 1..10000
EXAMPLE
phi(20301) = 13200, phi(6543) = 4356.
MATHEMATICA
Select[Range[45000], Sort[IntegerDigits[EulerPhi[#]]]==Sort[IntegerDigits[#]]&] (* Harvey P. Dale, Jul 25 2018 *)
PROG
(PARI) for(n=1, 10^5, if(vecsort(Vecsmall(Str(n)))==vecsort(Vecsmall(Str(eulerphi(n)))), print1(n", "))) \\ M. F. Hasler, Nov 28 2007
(Python)
from sympy import totient
A115921_list = [n for n in range(1, 10**4) if sorted(str(totient(n))) == sorted(str(n))] # Chai Wah Wu, Dec 13 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Resta, Feb 06 2006
EXTENSIONS
Edited by M. F. Hasler, Nov 28 2007
STATUS
approved