A237576 Smallest integer areas of integer-sided triangles such that the perimeter equals n times the smallest side.
0, 0, 0, 6, 60, 30, 210, 24, 84, 60, 198, 330, 1716, 546, 2730, 252, 4080, 36, 5814, 210, 7980, 2310, 10626, 924, 1380, 1248, 90, 4914, 4176, 6090, 26970, 480, 32736, 1224, 39270, 1938, 46620, 2394, 54834, 4560, 63960, 4620, 74046, 19866, 85140, 22770, 97290
Offset: 1
Keywords
Crossrefs
Cf. A188158.
Programs
-
Maple
with(numtheory):nn:=600:for n from 4 to 50 do: ii:=0:for a from 1 to nn while(ii=0) do: for b from a to nn while(ii=0) do: for c from b to nn while(ii=0) do: p:=(a+b+c)/2 : x:=p*(p-a)*(p-b)*(p-c): if x>0 then x0:= sqrt(x):else fi:if x0=floor(x0) and 2*p=n*a then ii:=1:printf ( "%d %d %d %d %d \n",n,x0,a,b,c):else fi:od:od:od:od:
-
Mathematica
nn=600;lst={};Do[k=0;Do[s=(a+b+c)/2;If[IntegerQ[s],area2=s (s-a) (s-b) (s-c);If[0
Comments