OFFSET
1,2
COMMENTS
sigma_9(k) is the sum of the 9th powers of the divisors of k (A013957).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..250
MATHEMATICA
Do[If[Mod[DivisorSigma[9, n]-EulerPhi[n]^9, n]==0, Print[n]], {n, 1, 10^5}]
PROG
(PARI) isok(n) = !((sigma(n, 9) - eulerphi(n)^9) % n); \\ Michel Marcus, Mar 02 2014
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
Definition corrected by Michel Marcus, Mar 02 2014
STATUS
approved