Let m and n be an integer and m > n. You can generate triples with:
a = 2mn
b = m^2 - n^2
c = m^2 + n^2
For example, let m = 4 and n = 3.
a = 2(3)(4) = 24
b = 4^2 - 3^2 = 7
c = 4^2 + 3^2 = 25
Therefore, you'd have the triple (24, 7, 25).
Check:
24^2 + 7^2 = 25^2
==> 576 + 49 = 625
==> 625...