OFFSET
1,2
COMMENTS
sigma_11(k) is the sum of the 11th powers of the divisors of k (A013959).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
Do[If[Mod[DivisorSigma[11, n], n]==0, Print[n]], {n, 1, 40000}]
PROG
(PARI) isok(k) = (sigma(k, 11) % k) == 0; \\ Michel Marcus, Nov 09 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
a(37)-a(40) corrected and more terms added by Amiram Eldar, Nov 09 2019
STATUS
approved