OFFSET
1,1
COMMENTS
The e-unitary perfect numbers are numbers k such that the sum of their exponential unitary divisors (A322857) equals 2k. The e-semiproper perfect numbers are numbers k such that the sum of their exponential semiproper divisors (A323309) equals 2k. Apparently most of the e-unitary perfect numbers are also e-semiproper perfect numbers: The first 41393 e-unitary perfect numbers are also the first 41393 e-semiproper perfect numbers, but the 41394th e-unitary perfect number is 4769856 which is not e-semiproper perfect. This number, which is the first term of this sequence, was found by Minculete.
LINKS
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.
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]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jan 10 2019
STATUS
approved