OFFSET
1,1
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000 (first 2197 terms from Zak Seidov)
Zak Seidov, Table of n=1..6093, A072294(n), A120131(n), A120132(n), A120133(n) (with A120131(n) <=1000)
Michael Somos, Heronian Triangle Table
P. Yiu, Heron triangles with sides < 100 Appendix Chap. 9.3 pp. 81/360 in 'Recreational Mathematics'.
MATHEMATICA
nn = 200; 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}]; lst (* T. D. Noe, Mar 23 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Jul 12 2002
EXTENSIONS
More terms from Ray Chandler, Jul 02 2004
STATUS
approved