This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A210645 #18 Feb 16 2025 08:33:17 %S A210645 84,336,756,1344,2100,3024,4116,5376,6804,8400,10164,12096,14196, %T A210645 16464,18900,21504,24276,27216,30324,33600,37044,40656,44436,48384, %U A210645 52500,56784,61236,65856,70644,75600,80724,86016,91476,97104,102900,108864,114996,121296 %N A210645 Area A of the triangles such that A, the sides and one of the altitudes are four consecutive integers of an arithmetic progression d. %C A210645 See the first link for the comments. We use Heron's Formula for a triangle: A = sqrt(s*(s-a)*(s-b)*(s-c)), where s = (a+b+c)/2.The sides and one of the altitudes are of the form q+d, q, q-d, q-2d. %H A210645 Eric Weisstein, <a href="https://mathworld.wolfram.com/Altitude.html">Altitude</a> %F A210645 Conjecture: a(n) = 84*n^2. a(n) = 3*a(n-1)-3*a(n-2)+a(n-3). G.f.: 84*x*(1+x)/(1-x)^3. - _Colin Barker_, Apr 19 2012 %e A210645 84 is in the sequence because (a, b, c, h) = (15, 14, 13, 12) => A = sqrt(21*(21-15)*(21-14)*(21-13)) = sqrt(7056) = 84 but A = (1/2)*h*b = (1/2)*12*14 = 84. %p A210645 with(numtheory):T:=array(1..1000):k:=0:nn:=800:for q from 1 to nn do: for d from 1 to nn do: a:=q+d:b:=q:c:=q-d:h1:=q-2*d:p:=(a+b+c)/2:s:=p*(p-a)*(p-b)*(p-c):if s>0 then s1:=sqrt(s): h11:=2*s1/a: h22:=2*s1/b:h33:=2*s1/c:if s1=floor(s1) and (h1=h11 or h1=h22 or h1=h33) then k:=k+1:T[k]:=s1:else fi:fi:od:od: L := [seq(T[i],i=1..k)]:L1:=convert(T,set):A:=sort(L1, `<`): print(A): %Y A210645 Cf. A188158, A210643. %K A210645 nonn %O A210645 1,1 %A A210645 _Michel Lagneau_, Mar 26 2012