A386425 Odd composites k such that sigma(k) has the same powerful part as k, where sigma is the sum of divisors function.
153, 801, 1773, 3725, 4689, 4753, 5013, 6957, 8577, 8725, 9549, 9873, 11493, 13437, 14409, 15381, 18621, 19269, 21213, 21537, 23481, 25101, 26073, 26225, 28989, 29161, 29313, 29961, 32229, 33849, 34173, 36117, 38061, 39033, 40653, 42597, 43893, 47457, 47781, 48725, 48753, 51669, 52317, 54261, 56953, 57177, 57501
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
rad[n_] := Times @@ First /@ FactorInteger[n];a057521[n_] := n/Denominator[n/rad[n]^2];Select[Range[9,57501,2],!PrimeQ[#]&&a057521[DivisorSigma[1,#]]==a057521[#]&] (* James C. McMahon, Aug 18 2025 *)
-
PARI
A057521(n)=my(f=factor(n)); prod(i=1, #f~, if(f[i, 2]>1, f[i, 1]^f[i, 2], 1)) isA386425(n) = ((n>1) && (n%2) && !isprime(n) && (A057521(sigma(n))==A057521(n)));
Comments