This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A063011 #11 Jun 08 2018 19:49:13 %S A063011 60,780,2040,4200,12180,14760,15540,40260,65520,66780,92820,120120, %T A063011 189840,192720,199980,235620,277680,354960,453960,497640,595140, %U A063011 619020,643500,1021020,1063860,1075620,1265880,1484340,1609080,1761540 %N A063011 Ordered products of the sides of primitive Pythagorean triangles. %C A063011 It is an open question whether any two distinct Pythagorean triples can have the same product of their sides. %e A063011 a(1)=3*4*5=60; a(2)=5*12*13=780 (rather than 6*8*10=480, which would not be primitive). %t A063011 k=17000000;lst={};Do[Do[If[IntegerQ[a=Sqrt[c^2-b^2]]&&GCD[a,b,c]==1,If[a>=b,Break[]];x=a*b*c;If[x<=k,AppendTo[lst,x]]],{b,c-1,4,-1}],{c,5,700,1}];Union@lst (* _Vladimir Joseph Stephan Orlovsky_, Sep 05 2009 *) %t A063011 With[{nn=50},Take[(Times@@#)Sqrt[#[[1]]^2+#[[2]]^2]&/@Union[Sort/@ ({Times@@#, (Last[#]^2-First[#]^2)/2}&/@(Select[Subsets[Range[1,nn+1,2],{2}],GCD@@#==1&]))]//Union,nn]] (* _Harvey P. Dale_, Jun 08 2018 *) %Y A063011 Cf. A020882, A020883, A020884, A020885, A020886, A057096. %K A063011 nonn %O A063011 1,1 %A A063011 _Henry Bottomley_, Jul 26 2001