A323757 Modified exponential perfect numbers: numbers k such that A241405(k) = 2*k.
6, 60, 90, 264, 3960, 8736, 87360, 131040, 1868160
Offset: 1
Links
- A. V. Lelechenko, The Quest for the Generalized Perfect Numbers, Theoretical and Applied Aspects of Cybernetics, Proceedings, The 4th International Scientific Conference of Students and Young Scientists, Kyiv, 2014.
- David Moews, Perfect, amicable and sociable numbers.
Programs
-
Mathematica
f[p_, e_] := DivisorSum[e+1, p^(#-1)&]; mesigma[1]=1; mesigma[n_] := Times @@ f @@@FactorInteger@n; mePerfectQ[n_] := mesigma[n]==2n; Select[Range[10000], mePerfectQ]
-
PARI
f(n) = {my(f=factor(n)); prod(i=1, #f[, 1], sumdiv(f[i, 2]+1, d, f[i, 1]^(d-1)));} \\ A241405 isok(n) = f(n) == 2*n; \\ Michel Marcus, Jan 30 2019
Comments