cp's OEIS Frontend

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.

A225529 Number of distinct products i*j over all pairs (i,j) with i,j >= 0 and i+j <= n and gcd(i,j) <= 1.

This page as a plain text file.
%I A225529 #12 Aug 02 2019 20:58:27
%S A225529 1,1,2,3,4,6,7,9,11,14,16,20,22,26,29,32,35,41,44,50,54,59,63,70,74,
%T A225529 80,85,92,98,108,112,121,129,137,144,153,158,170,177,186,192,204,210,
%U A225529 222,231,240,249,262,270,284,293,305,315,331,340,353
%N A225529 Number of distinct products i*j over all pairs (i,j) with i,j >= 0 and i+j <= n and gcd(i,j) <= 1.
%C A225529 Note that gcd(0,m) = m for any m.
%H A225529 Robert Price, <a href="/A225529/b225529.txt">Table of n, a(n) for n = 0..400</a>
%t A225529 f[n_]:=Length[Complement[Union[Flatten[Table[If[i+j≤n&&GCD[i,j]<=1, {i*j}], {i, 0, n}, {j, 0, n}], 1]], {Null}]]; Table[f[n], {n, 0, 100}]
%Y A225529 Cf. A018805, A027430, A100448, A100449, A100450, A213207, A213208.
%K A225529 nonn,easy
%O A225529 0,3
%A A225529 _Robert Price_, May 09 2013