INTEGER FACTOR

One of the neatest things MAPLE can do is it can quickly and easily factor large integers into products of prime numbers. Below are a few examples that illustrate both MAPLE's power and the syntax.

> ifactor(12);

``(2)^2*``(3)

> ifactor(1111111111111111111111111);

``(41)*``(271)*``(182521213001)*``(21401)*``(25601)...

> ifactor(12345678987654321);

``(3)^4*``(37)^2*``(333667)^2

>