OFFSET
1,2
EXAMPLE
The digits of 8888^phi(8888) sum to 71104 and 71104 is divisible by 8888, so 8888 is in the sequence.
MATHEMATICA
Do[s = n^EulerPhi[n]; k = Plus @@ IntegerDigits[s]; If[Mod[k, n] == 0, Print[n]], {n, 1, 10000}]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Ryan Propper, Aug 06 2005
EXTENSIONS
More terms from Emeric Deutsch, Feb 05 2006
STATUS
approved