We call a right-triangle to be clean-repeat if it satisfies the following properties:
Trivially, the triangle with side length 3-4-5 is a clean-repeat because its area is 6.
The triangle with side lengths 693-1924-2045 is also a clean-repeat because its area is
How many other right-triangles are clean-repeat?
Disclaimer: I don't know how to solve this question. But I conjectured that the answer is correct.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I too don't have a solution but since discussion pages now have became almost obsolete I intend to spark some discussion here.
My focus here will be on primitive Pythagorean triples, mostly because I have an unproven hunch that the next clean-repeat would be primitive. Since every primitive triple ( a , b , c ) can be represented by integers m , n via ( m 2 − n 2 , 2 m n , m 2 + n 2 ) , the area of such a triangle is A = 2 a b = n m ( n + m ) ( m − n ) given that m > n .
From here it is easy to prove that:
I wrote some code to generate these and it is given below as
gen_mod
. I like how after so many years brilliant still doesn't support multiple code blocks so I dumped everything there as you would see.Either ways, the above mod rules act as very quick filters for candidate A . From these filters, you can see that A has to be either of the form 4 4 4 . . . 4 4 4 or 6 6 6 . . . 6 6 6 . Of course we are only considering primitive triples here. I also provided some very simple code to generate candidate A s.
I will update this post when I get a fast prime factorizer working. So far I've search to 48 digits to no avail.