login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A224301 Sorted areas of primitive integer Heronian triangles. 7
6, 12, 12, 24, 30, 36, 36, 42, 60, 60, 60, 60, 66, 72, 84, 84, 84, 84, 90, 90, 114, 120, 120, 120, 126, 126, 126, 132, 156, 156, 168, 168, 168, 180, 180, 198, 204, 210, 210, 210, 210, 210, 210, 216, 234, 240, 252, 252, 252, 264, 264, 270, 288, 300, 300, 306 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence gives the sorted areas of primitive triangles which have integer side lengths and integer areas.
LINKS
EXAMPLE
The smallest Heronian triangle is (3,4,5) as perimeter and area are integers. The first term of the sequence is thus the area of this triangle, which is 6.
MATHEMATICA
AMax=400;
Do[
c=p/b;
a1=Sqrt[b^2+c^2+2Sqrt[b^2c^2-4A^2]];
a2=Sqrt[b^2+c^2-2Sqrt[b^2c^2-4A^2]];
If[IntegerQ[a2]&&GCD[a2, b, c]==1&&a1>a2>=b, A//Sow(*{A, a2, b, c}//Sow*)];
If[IntegerQ[a1]&&GCD[a1, b, c]==1, A//Sow(*{A, a1, b, c}//Sow*)];
, {A, 6, AMax, 6}
, {p, 4A^2//Divisors//Select[#, EvenQ[#]&&#>=2A&]&//#/2+2A^2/#&//Select[#, IntegerQ]&}
, {b, p//Divisors//Select[#, #^2>=p&]&}
]//Reap//Last//Last
{a1, a2, c}=.;
(* Albert Lau, May 20 2016 *)
CROSSREFS
Sequence in context: A070149 A315597 A315598 * A181798 A323332 A330922
KEYWORD
nonn
AUTHOR
Mihir Mathur, Apr 03 2013
EXTENSIONS
Definition corrected by Giovanni Resta, Apr 03 2013
More terms from Giovanni Resta, Apr 03 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 10:46 EDT 2024. Contains 371779 sequences. (Running on oeis4.)