OFFSET
1,1
COMMENTS
EXAMPLE
112 is in the sequence since its noninfinitary divisors are {2, 4, 8, 14, 28, 56} whose sum is 112.
MATHEMATICA
f[p_, e_] := p^(2^(-1 + Position[Reverse @ IntegerDigits[e, 2], _?(# == 1 &)])); nisigma[1] = 0; nisigma[n_] := DivisorSigma[1, n] - Times @@ (Flatten @ (f @@@ FactorInteger[n]) + 1); Select[Range[500000], nisigma[#] == # &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Sep 20 2019
STATUS
approved