A386424 Numbers k such that sigma(k) has the same powerful part as k, where sigma is the sum of divisors function.
1, 2, 5, 12, 13, 26, 29, 37, 41, 44, 56, 61, 73, 74, 76, 90, 101, 109, 113, 122, 137, 146, 153, 157, 172, 173, 181, 193, 218, 229, 236, 257, 268, 277, 281, 312, 313, 314, 317, 353, 362, 373, 386, 389, 397, 401, 409, 421, 433, 457, 458, 461, 509, 522, 524, 528, 541, 554, 560, 569, 601, 613, 617, 626, 641, 652, 653
Offset: 1
Links
Crossrefs
Programs
-
Mathematica
rad[n_] := Times @@ First /@ FactorInteger[n];a057521[n_] := n/Denominator[n/rad[n]^2];Select[Range[653],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)) isA386424(n) = (A057521(sigma(n))==A057521(n));
Comments