OFFSET
1,2
COMMENTS
Next term after 6408 is greater than 10000.
EXAMPLE
The sum of the digits of phi(6039)^6039 is 42273 and 42273 is divisible by 6039, so 6039 is in the sequence.
MATHEMATICA
Do[s = EulerPhi[n]^n; k = Plus @@ IntegerDigits[s]; If[Mod[k, n] == 0, Print[n]], {n, 1, 10000}]
Select[Range[11000], Divisible[Total[IntegerDigits[EulerPhi[#]^#]], #]&] (* Harvey P. Dale, Oct 18 2014 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Ryan Propper, Aug 06 2005
EXTENSIONS
a(11) from Stefan Steinerberger, Jan 24 2006
STATUS
approved