OFFSET
1,2
COMMENTS
Sort all rectangles with integer side lengths by the radius of the circle that circumscribes them. Ties are broken by sorting by area. The terms of the sequence are the areas of the rectangles.
EXAMPLE
a(1) is a 1 X 1 rectangle; r = sqrt(1^2 + 1^2) = sqrt(2); A = 1.
a(2) is a 2 X 1 rectangle; r = sqrt(2^2 + 1^2) = sqrt(5); A = 2.
MATHEMATICA
Times @@@ Take[Flatten[ SortBy[#, Times @@ # &] & /@ GatherBy[ SortBy[ Union[Sort /@ Tuples[ Range[70], 2]], Total[#^2] &], Total[#^2] &], 1], 70] (* Giovanni Resta, Jul 18 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Dave Rutt, Jul 04 2019
EXTENSIONS
More terms from Giovanni Resta, Jul 17 2019
STATUS
approved