-----maxima-admin@math.utexas.edu wrote: -----
> I am playing with maxima-5.9.1 and found that divisors() function
described
> in the Maxima manual is not implemented.
There is a divisors function in nset. In maxima 5.9.1, you'll need to load
nset to use divisors. An example
(%i9) load(nset)$
(%i10) divisors(28);
(%o10) {1,2,4,7,14,28}
For negative integer arguments, your divisors function and the one in nset
differ.
Regards,
Barton