I am currently working on writing a procedure in Maple. What I need to be able to do is factor a number. The few commands I know to help with this are;
ifactor(12); (2)^2(3)
divisors(12); {1, 2, 3, 4, 6, 12}
But what I am wanting is to factor a larger number and have Maple give it to me in pairs. For example
12 - (1,12),(2,6),(3,4)