OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..4100
EXAMPLE
a(3) = 575 has divisors 1, 5, 23, 25, 115, 575. It is not distended because 1+5+23 >= 25, but the sums of all 2^6 subsets of divisors are distinct, so 575 is in the sequence.
MAPLE
filter:= proc(n) local d, sd, S, T, v;
d:= sort(convert(numtheory:-divisors(n), list));
sd:= ListTools:-PartialSums(d);
if min(d[2..-1]-sd[1..-2])> 0 then return false fi;
S:= {};
T:= combinat:-subsets(d);
while not T[finished] do
v:= convert(T[nextvalue](), `+`);
if member(v, S) then return false fi;
S:= S union {v};
od;
true
end proc:
select(filter, [$1..3000]);
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Feb 06 2020
STATUS
approved