You can put this solution on YOUR website! using pascal triangle to solve (1+x^3)^3 and expand
-------------------
3C0*1^3 + 3C1*1^2*x + 3C2*1*x^2 + 3C3*x^3
-------------
= 1*1 + 3*1*x + 3*1*x^2 + 1*1*x^3
-------
= 1 + 3x + 3x^2 + x^3
------------
Cheers,
Stan H.
------------