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 A256390 #19 Jan 19 2019 04:14:59 %S A256390 1,4,13,22,55,64,133,172,247,280,469,508,781,868,997,1144,1621,1714, %T A256390 2323,2488,2785,3010,3907,4078,4837,5176,5833,6178,7627,7798,9463, %U A256390 10102,10927,11530,12631,13006,15379,16150,17311,17926,20863,21256 %N A256390 a(n) = number of triples (a,b,c) of natural numbers a,b,c <= n with gcd(a,b)=gcd(b,c)=gcd(c,a)=1. %C A256390 The sequence has asymptotics rho*n^3+O(n^2 log^2n) with rho=prod_p(1-3/p^2+2/p^3)=0.2867474284344...(product on primes). See A065473. %H A256390 Juan Arias-de-Reyna, <a href="/A256390/b256390.txt">Table of n, a(n) for n = 1..1399</a> %H A256390 J. Arias de Reyna and R. Heyman, <a href="http://arxiv.org/abs/1403.2769">Counting tuples restricted by pairwise primality</a>, arXiv:1403.2769 [math.NT], 2014. %H A256390 J. Arias de Reyna, R. Heyman, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL18/Heyman/heyman6.html">Counting Tuples Restricted by Pairwise Coprimality Conditions</a>, J. Int. Seq. 18 (2015) 15.10.4 %F A256390 a(n) = sum_a sum_b sum_c mu(a) mu(b) mu(c) [n/gcd(a,b)][n/gcd(b,c)][n/gcd(c,a)], where mu(.) is Moebius function [x] integer part of x, and a,b,c run through natural numbers. %e A256390 a(3)=13 because the 13 triples (1,1,1), (1,1,2), (1,2,1), (2,1,1), (1,1,3), (1,3,1), (3,1,1), (1,2,3), (1,3,2), (2,1,3), (2,3,1), (3,1,2), (3,2,1). %t A256390 A[M_] := A[M] = Module[{X, a1, a2, a3, K, count, k}, %t A256390 X = Flatten[ %t A256390 Table[{a1, a2, a3}, {a1, 1, M}, {a2, 1, M}, {a3, 1, M}], 2]; %t A256390 K = Length[X]; %t A256390 count = 0; %t A256390 For[k = 1, k <= K, k++, %t A256390 {a1, a2, a3} = X[[k]]; %t A256390 If[(GCD[a1, a2] == 1) && (GCD[a2, a3] == 1) && (GCD[a3, a1] == %t A256390 1), count = count + 1]]; %t A256390 count]; %t A256390 Table[A[n], {n, 1, 100}] %Y A256390 Cf. A256391. %K A256390 nonn %O A256390 1,2 %A A256390 _Juan Arias-de-Reyna_, Mar 27 2015