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