Every integer can be expressed as a sum of three triangular numbers.
Given two integers N=a+b+c and M=x+y+z , how to express the product N*M as a sum of three triangular numbers. Example:
11=0+1+10 and 13=0+3+10 ; the product 11*13=143=10+28+105
How to write the product N*M=F(a,b,c,x,y,z) +G(a,b,c,x,y,z) +H(a,b,c,x,y,z) as three triangular numbers?