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 A308216 #7 Jun 16 2020 14:31:29 %S A308216 0,0,0,0,0,0,3,0,4,0,10,0,12,12,21,14,24,24,44,27,67,40,85,54,104,82, %T A308216 126,101,149,123,201,160,244,187,292,230,327,294,382,329,439,403,539, %U A308216 444,625,508,699,594,775,688,879,786,986,869,1124,954,1244,1071 %N A308216 Sum of the largest side lengths of all integer-sided obtuse triangles with perimeter n. %H A308216 Wikipedia, <a href="https://en.wikipedia.org/wiki/Integer_triangle">Integer Triangle</a> %F A308216 a(n) = Sum_{k=1..floor(n/3)} Sum_{i=k..floor((n-k)/2)} (1-sign(floor((i^2 + k^2)/(n-i-k)^2))) * sign(floor((i+k)/(n-i-k+1))) (n-i-k). %t A308216 Table[Sum[Sum[(n - i - k) (1 - Sign[Floor[(i^2 + k^2)/(n - i - k)^2]]) Sign[Floor[(i + k)/(n - i - k + 1)]], {i, k, Floor[(n - k)/2]}], {k, Floor[n/3]}], {n, 100}] %Y A308216 Cf. A308214. %K A308216 nonn %O A308216 1,7 %A A308216 _Wesley Ivan Hurt_, May 15 2019