http://vvcap.net/db/3RxO1KX2d4LxgD714Tyh.htp
mult(x,y)= mult(x-1,y)+4 mult(0,4)=0
mult(1,4)=mult(0,4)+4 mult(2,4)=mult(1,4)+4 mult(3,4)=mult(2,4)+4
I'm not sure whether this is correct, but i think it does calculate the four time tables ? since it's just adding four to the previous one
I will show a method using Python code. This works for integer $m, n \ge 0$.