A229926 Integer areas of the integer-sided triangles T(n) defined by the property: a(0) = 6 ; for n > 0, a(n) is the area A where the smallest side of T(n) is the greatest side of T(n-1).
6, 12, 24, 48, 96, 192, 384, 768, 1080, 1080, 3888, 4320, 15360, 69120, 69120, 248832, 349920, 349920, 1259712, 342144, 7226112, 10782720, 17031168, 18095616, 19226592, 21660210, 30270240, 44706816, 81544320, 128798208
Offset: 0
Keywords
Crossrefs
Cf. A188158.
Programs
-
Maple
with(numtheory):nn:=15000:a:=5: printf ( "%d %d %d %d %d \n",1,6,3,4,a): for n from 2 to 40 do: ii:=0: 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) then ii:=1:printf ( "%d %d %d %d %d \n",n,x0,a,b,c): a:=max(b,c): else fi: od: od: od:
Comments