OFFSET
1,3
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..1000
EXAMPLE
Divisors of n=18: {1,2,3,6,9,18} -> a(18)=-1+2-3-6-9+18=1.
Divisors of n=15: {1,3,5,15} -> a(15)=-1-3-5+15=6, as
-1-3-5-15<1, 1-3-5-15<1, -1+3-5-15<1, 1+3-5-15<1, -1-3+5-15<1, 1-3+5-15<1,
-1+3+5-15<1, 1+3+5-15<1, 1-3-5+15>6, -1+3-5+15>6, 1+3-5+15>6, -1-3+5+15>6,
1-3+5+15>6, -1+3+5+15>6 and 1+3+5+15>6.
PROG
(PARI) for(n=1, 1000, nd=numdiv(n); d=divisors(n); nn=3048; for(j=0, 2^nd-1, s=0; for(h=0, nd-1, if(bittest(j, h)==0, s=s-d[h+1], s=s+d[h+1])); if(s>0, if(s<nn, nn=s))); write("b082729.txt", n " " nn)) /* Donovan Johnson, Sep 14 2013 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Apr 13 2003
STATUS
approved