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 A185953 #28 Mar 05 2019 04:58:07 %S A185953 0,0,1,1,5,1,11,6,12,5,31,6,45,14,21,24,79,15,101,27,49,37,149,28,126, %T A185953 56,109,57,241,28,277,106,137,100,183,62,395,128,193,102,489,65,541, %U A185953 165,203,189,649,116,551,170,347,231,829,147,506,234,434,307,1027,119,1101,364,450,412,727 %N A185953 Number of pairwise coprime triples of positive integers with largest element n (i.e., A015617(n) - A015617(n-1)). %D A185953 Robert Israel, Posting to Sequence Fans Mailing List, Feb 06, 2011 %H A185953 Alois P. Heinz, <a href="/A185953/b185953.txt">Table of n, a(n) for n = 1..10000</a> %t A185953 a[n_] := Sum[Boole[GCD[a, n] == 1 && GCD[b, n] == 1 && GCD[a, b] == 1], {a, 1, n-2}, {b, a+1, n-1}]; Array[a, 100] (* _Jean-François Alcover_, Mar 05 2019, from PARI *) %o A185953 (PARI) a(n)=sum(a=1,n-2,sum(b=a+1,n-1,gcd(a,n)==1&&gcd(b,n)==1&&gcd(a,b)==1)) \\ _Charles R Greathouse IV_, Apr 28 2015 %Y A185953 Cf. A015617. Row sums of triangle A186230. Column 3 of triangle A186972. %K A185953 nonn,look %O A185953 1,5 %A A185953 _N. J. A. Sloane_, Feb 07 2011