expanding sums



On Tue, May 6, 2008 at 2:54 PM, Zach <elzacho at gmail.com> wrote:
> block([ret:[]], for n:0 thru 4 do ret:cons(f[n](x), ret), reverse(ret));

This works, but simpler would be:

   makelist( f[n](x), n, 0, 4)

           -s