A123673 Smaller side of right triangles with integer sides and integer side inscribed squares with two vertices on the hypotenuse.
111, 222, 333, 444, 555, 666, 777, 888, 999, 1110, 1145, 1221, 1332, 1443, 1554, 1665, 1776, 1887, 1998, 2109, 2220, 2290, 2331, 2442, 2553, 2664, 2775, 2886, 2997, 3108, 3219, 3272, 3330, 3435, 3441, 3552, 3663, 3774, 3885, 3996, 4107, 4218, 4329, 4440
Offset: 1
Keywords
Programs
-
PARI
g(n)= { for(x=1,n, for(y=x,n, z=sqrt(x^2+y^2); s=x*y*z/(z^2+x*y); if(s==floor(s), print1(floor(x)",") ) ) ) }
Comments