A054862 (+2)-unitary sigma 3-multiple perfect number: numbers k such that (+2)usigma(k) = 3*k, where (+2)usigma(k) = A107759(k).
105, 45045, 237405, 101846745, 121486365, 274680671265
Offset: 1
Examples
(+2)usigma(12) = (2+4)*(2+3) = 30. Factorizations: 3*5*7, 3^2*5*7*11*13, 3*5*7^2*17*19, 3^2*5*7^2*11*13*17*19, 3^3*5*7*11*13*29*31, 3^3*5*7^2*11*13*17*19*29*31.
Programs
-
Mathematica
s[n_] := Times @@ (2 + Power @@@ FactorInteger[n]); s[1] = 1; Select[Range[2.5*10^5], s[#] == 3*# &] (* Amiram Eldar, Aug 26 2022 *)
Extensions
Offset corrected by Amiram Eldar, Aug 26 2022
Comments