A323310 List of e-unitary perfect numbers that are not e-semiproper perfect numbers.
4769856, 23849280, 52468416, 81087552, 90627264, 109706688, 138325824, 147865536, 176484672, 195564096, 205103808, 224183232, 252802368, 262342080, 281421504, 290961216, 319580352, 338659776, 348199488, 357739200, 376818624, 395898048, 405437760, 424517184
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Nicusor Minculete, A new class of divisors: the exponential semiproper divisors, Bulletin of the Transilvania University of Brasov, Mathematics, Informatics, Physics, Series III, Vol. 7, No. 1 (2014), pp. 37-46.
Programs
-
Mathematica
fs[p_, e_] := If[e==1, p, p^e + p]; a[1]=1; essigma[n_] := Times @@ fs @@@ FactorInteger[n]; esPerfectQ[n_] := essigma[n]==2n; fu[p_, e_] := DivisorSum[e, p^# &, GCD[#, e/#]==1 &]; eusigma[n_] := Times @@ fu @@@ FactorInteger[n]; euPerfectQ[n_] := eusigma[n] == 2n; aQ[n_] := euPerfectQ[n] && !esPerfectQ[n]; Select[Range[1, 10^8], aQ]
Comments