OFFSET
1,1
EXAMPLE
30 = 2 * 3 * 5 is present as sigma(30) = 72 = 2^3 * 3^2, and thus there is at least one odd prime factor (in this case 3) such that a higher power of the same prime divides the sum of divisors of the same number.
MATHEMATICA
Select[Range[2, 800], Function[{k, s}, AnyTrue[DeleteCases[FactorInteger[k][[All, 1]], 2], Mod[s, #^(1 + IntegerExponent[k, #])] == 0 &]] @@ {#, DivisorSigma[1, #]} &] (* Michael De Vlieger, Feb 16 2022 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 16 2022
STATUS
approved