OFFSET
1,2
COMMENTS
The Mathematica program examines all primitive Heronian triangles having longest side <= 900, which guarantees that we have found all triangles with area/6 <= 150. - T. D. Noe, Jun 22 2004
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000
MATHEMATICA
nn=900; lst={}; Do[s=(a+b+c)/2; If[IntegerQ[s] && GCD[a, b, c]==1, area2=s(s-a)(s-b)(s-c); If[area2>0 && IntegerQ[Sqrt[area2]], AppendTo[lst, Sqrt[area2]]]], {a, nn}, {b, a}, {c, b}]; Union[Select[lst, #<nn&]]/6
CROSSREFS
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Jun 18 2003
EXTENSIONS
More terms from T. D. Noe, Jun 22 2004
STATUS
approved