OFFSET
1,2
COMMENTS
The Mathematica program below accesses a table of primitive Heronian triples (PHT) generated by Sascha Kurz (see Link). The list contains a triple for every possible PHT with a maximum side length of 10000. The triples are in the form (a,b,c) where a >= b >= c and where a <= 10000. - Frank M Jackson, Dec 04 2017
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000 (first 1500 terms from Frank M Jackson)
Sascha Kurz, On the generation of Heronian triangles, Serdica Journal of Computing. 2 (2) (2008): pp. 181-196.
Sascha Kurz, Lists of primitive Heronian triples, Bayreuth University.
Michael Somos, Heronian Triangle Table
P. Yiu, Heron triangles with sides < 100, Recreational Mathematics, Appendix Chap. 9.3 pp. 81/360. (This is a download of 360 pages.)
MATHEMATICA
lst1 = ReadList["C:/primitive_heronian_triangles_1_10000.txt", {Number, Number, Number}]; lst = Union@Table[lst1[[n]][[1]], {n, 1, Length[lst1]}]; Select[Range[10000], ! MemberQ[lst, #] &] (* For download of file of primitive Heronian triples see Link *) (* Frank M Jackson, Dec 04 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Jun 10 2006
STATUS
approved