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 A308122 #8 Jun 18 2020 13:39:51 %S A308122 0,0,0,0,0,0,0,0,0,0,0,0,13,14,30,16,0,18,0,0,21,22,69,48,0,26,54,56, %T A308122 116,150,217,160,99,136,210,144,148,190,273,200,164,210,301,220,405, %U A308122 506,611,480,441,500,459,312,530,594,550,392,342,464,531,480,732 %N A308122 Sum of the perimeters of all scalene triangles with perimeter n whose side lengths are squarefree. %H A308122 Wikipedia, <a href="https://en.wikipedia.org/wiki/Integer_triangle">Integer Triangle</a> %F A308122 a(n) = n * A308103(n). %F A308122 a(n) = n * Sum_{k=1..floor((n-1)/3)} Sum_{i=k+1..floor((n-k-1)/2)} sign(floor((i+k)/(n-i-k+1))) * mu(i)^2 * mu(k)^2 * mu(n-i-k)^2, where mu is the Möbius function (A008683). %t A308122 Table[n*Sum[Sum[MoebiusMu[i]^2*MoebiusMu[k]^2*MoebiusMu[n - i - k]^2*Sign[Floor[(i + k)/(n - i - k + 1)]], {i, k + 1, Floor[(n - k - 1)/2]}], {k, Floor[(n - 1)/3]}], {n, 100}] %Y A308122 Cf. A008683, A308103. %K A308122 nonn %O A308122 1,13 %A A308122 _Wesley Ivan Hurt_, May 13 2019