OFFSET
1,1
COMMENTS
Area of the obtuse scalene triangle with sides of lengths 2, 5 and 6. 3rd smallest area of triangle with distinct integer sides.
MATHEMATICA
a=2; b=5; c=6; s=(a+b+c)/2; area=Sqrt[s*(s-a)*(s-b)*(s-c)]; RealDigits[N[area, 200]]
PROG
(PARI) sqrt(351)/4 \\ Charles R Greathouse IV, Apr 25 2016
CROSSREFS
KEYWORD
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jun 25 2010
STATUS
approved