OFFSET
1,2
COMMENTS
sigma_13(n) is the sum of the 13th powers of the divisors of n.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
MAPLE
with(numtheory); a := []: for n from 1 to 3000 do if sigma[13](n) mod phi(n) = 0 then a := [op(a), n]; fi; od: a;
MATHEMATICA
Select[Range[3000], Divisible[DivisorSigma[13, #], EulerPhi[#]] &] (* Amiram Eldar, Nov 02 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset corrected by Amiram Eldar, Nov 02 2019
STATUS
approved