OFFSET
1,1
COMMENTS
All primes and all numbers of the form 3*2^k (k>1) are terms.
EXAMPLE
40 is a term because it has 8 divisors and 2+8+10+20 = 40.
MATHEMATICA
Select[Range[160], EvenQ[(d = DivisorSigma[0, #])] && MemberQ[Plus @@@ Subsets[Divisors[#], {d/2}], #] &] (* Amiram Eldar, Feb 28 2021 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Metin Sariyar, Feb 28 2021
STATUS
approved