OFFSET
1,1
COMMENTS
EXAMPLE
25 is an anti-weird number because it is anti-abundant (its anti-divisors are 2, 3, 7, 10, 17 and their sum is 39 > 25) and no subsets of its anti-divisors add up to 25.
MAPLE
# see A066272
isA192270 := proc(n) local a, S ; a := antidivisors(n) ; S := combinat[subsets](a) ; while not S[finished] do if convert(S[nextvalue](), `+`) = n then return true; end if; end do; false ; end proc:
isA192268 := proc(n) A066417(n) > n ; end proc:
isA192271 := proc(n) isA192268(n) and not isA192270(n) ; end proc:
for n from 1 to 40 do if isA192271(n) then printf("%d, ", n) ; end if; end do: # R. J. Mathar, Jul 04 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Jun 28 2011
STATUS
approved