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