OFFSET
1,7
COMMENTS
See A066272 for definition of anti-divisor.
EXAMPLE
For n=17, anti-divisors={2,3,5,7,11}; differences={1,2,2,4}; a(17) = number of distinct differences = 3.
MAPLE
read("transforms");
A074746 := proc(n)
local advs ;
advs := sort(convert(antidivisors(n), list)) ;
nops(convert(DIFF(advs), set)) ;
end proc: # R. J. Mathar, Oct 01 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Sep 06 2002
STATUS
approved