OFFSET
1,1
LINKS
Ray Chandler, Table of n, a(n) for n = 1..5000 (first 300 terms from Zhining Yang)
FORMULA
a(n) = A120572(2n). - Ray Chandler, Jul 27 2017
EXAMPLE
For n = 4, a(4)=336 means for the smallest triangle (a,b,c) = (26,28,30), the area is 336, which is 4 times the perimeter 84.
PROG
(PARI) for(k=1, 50, n=0; A=10^9; d=4*k^2; e=3*d; for(b=1, sqrt(e), for (c=2*k, e/b, if(b*c>d&&c>=b, f = (b + c)*d / (b * c - d); if(f>=c, a=floor(f); if(a==f, n++; s=2*(a+b+c)*k; if(s<A, A=s)))))); print1(A, ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhining Yang, Jun 26 2017
STATUS
approved