OFFSET
1,1
COMMENTS
(1+e)-abundant numbers are numbers k such that A051378(k) > 2*k, i.e., numbers k whose sum of (1+e)-divisors exceeds 2*k.
Since all the recursive divisors (see A282446) of a number are also its (1+e)-divisors, the sequence of (1+e)-abundant numbers includes all the recursive abundant numbers (A333928). The first 21387 (1+e)-abundant numbers are also recursive abundant numbers. Therefore, this sequence includes only the (1+e)-abundant numbers that are not recursive abundant numbers.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
MATHEMATICA
oesigma[1] = 1; oesigma[n_] := Times @@ (1 + Sum[First[#]^d, {d, Divisors[Last[#]]}] &) /@ FactorInteger[n]; recDivQ[n_, 1] = True; recDivQ[n_, d_] := recDivQ[n, d] = Divisible[n, d] && AllTrue[FactorInteger[d], recDivQ[IntegerExponent[n, First[#]], Last[#]] &]; recDivs[n_] := Select[Divisors[n], recDivQ[n, #] &]; f[p_, e_] := 1 + Total[p^recDivs[e]]; recsigma[1] = 1; recsigma[n_] := Times @@ (f @@@ FactorInteger[n]); Select[Range[10^6], oesigma[#] > 2*# && recsigma[#] <= 2*# &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 13 2021
STATUS
approved