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”).

A054875
Number of pairwise incongruent triangles with integer sides and positive integer area and longest side of length n.
6
0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 2, 0, 3, 1, 3, 1, 0, 3, 2, 0, 0, 3, 4, 4, 0, 1, 2, 7, 0, 1, 0, 3, 3, 2, 5, 0, 6, 7, 4, 4, 0, 2, 4, 0, 0, 5, 0, 6, 7, 10, 4, 1, 3, 4, 0, 4, 0, 10, 3, 0, 3, 1, 11, 3, 0, 8, 1, 5, 0, 4, 6, 7, 13, 0, 3, 9, 0, 10, 0, 6, 0
OFFSET
1,13
LINKS
MATHEMATICA
okQ[x_, y_, z_] := If[x + y <= z, False, Module[{s = (x + y + z)/2}, IntegerQ[ Sqrt[s(s-x)(s-y)(s-z)]]] ]; a[n_] := Module[{num = 0}, Do[Do[If[okQ[x, y, n], num++], {x, 1, y}], {y, 1, n}]; num]; Array[a, 100] (* Amiram Eldar, Nov 22 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, May 26 2000
EXTENSIONS
Name and offset changed to align with 2012 changes to A054876 by Peter Munn, Nov 23 2018
STATUS
approved