Simplifying the result of integrate



>if?you?load?partitions2deep.mac and?try intfudu(?(3*t+2)^5,t)
>you?get?the?factored?answer?for?the?indefinite?integral.

The file partitions.mac, but not partitions2deep.mac is in Maxima. The
intfudu function in partitions.mac also does this particular problem. 
Calling intfudu by using the integrate noun form is a bit of a trick:

 (%i5) load(abs_integrate)$

 (%i6) 'integrate((3*t+2)^5,t);
 (%o6) (3*t+2)^6/18

Or, call intfudu directly

 (%i7) intfudu((3*t+2)^5,t);
 (%o7) (3*t+2)^6/18

I could place partitions2deep into the folder along with partitions--I have
a copy of it, but I'm not sure if it is current.

--Barton