login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A120133
Shortest side of primitive Heronian triangles, sorted on longest side(A120131), then on middle side(A120132) and finally on shortest side.
7
3, 5, 5, 5, 10, 4, 13, 9, 8, 16, 11, 7, 10, 13, 13, 12, 7, 14, 3, 17, 17, 20, 6, 17, 11, 5, 8, 15, 25, 19, 15, 13, 12, 24, 16, 17, 25, 10, 29, 13, 25, 15, 9, 17, 18, 29, 15, 17, 13, 25, 29, 21, 39, 26, 20, 25, 13, 27, 25, 37, 15, 5, 25, 24, 28, 4, 51, 26, 20, 25, 53, 33, 41, 17, 15, 11
OFFSET
1,1
LINKS
P. Yiu, Heron triangles with sides < 100, Recreational Mathematics, Appendix Chap. 9.3 pp. 81/360. (This is a download of 360 pages.)
MATHEMATICA
hQ[a_, b_, c_] := IntegerQ@ Sqrt@ Block[{s = (a+b+c)/2}, s (s-a) (s-b) (s-c)]; Reap[Do[If[ GCD[a, b, c] == 1 && hQ[a, b, c], Sow@c], {a, 60}, {b, a}, {c, a-b+1, b}]][[2, 1]] (* Giovanni Resta, May 21 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Jun 10 2006
STATUS
approved