OFFSET
1,1
COMMENTS
For Eisenstein triple see A121992.
EXAMPLE
280 is in the list because (93,280,247) and (19,280,271) are primitive Eisenstein triples and 280 is the largest side and no other side is equal.
Consider (3,8,7) and (5,8,7), 8 is not in the list because 7 appear in both triple.
MATHEMATICA
max = 2000;
data = Do[Sqrt[-3 a^2 + 4 c^2] // If[IntegerQ[#] && GCD[a, c] == 1, {a, (a + #)/2, c} // Sow] &, {a, max}, {c, Sqrt[3]/2 a // Ceiling, a - 1}] // Reap // Last // Last;
Select[data[[;; , 1]] // Tally, #[[2]] > 1 &][[;; , 1]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Albert Lau, Aug 12 2014
STATUS
approved