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.

A212020 Number of (w,x,y,z) with all terms in {1,...,n} and w*x=3*y*z.

This page as a plain text file.
%I A212020 #5 Dec 04 2016 19:46:28
%S A212020 0,0,0,8,14,18,48,56,74,126,154,166,262,278,318,422,480,500,674,698,
%T A212020 800,956,1024,1052,1308,1378,1458,1698,1852,1888,2240,2280,2434,2686,
%U A212020 2794,2950,3472,3520,3640,3944,4234,4286,4800,4856,5102,5672
%N A212020 Number of (w,x,y,z) with all terms in {1,...,n} and w*x=3*y*z.
%C A212020 Each term is divisible by 2.  See A211795 for a guide to related sequences.
%t A212020 t = Compile[{{n, _Integer}}, Module[{s = 0},
%t A212020 (Do[If[w*x == 3 y*z, s = s + 1],
%t A212020 {w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
%t A212020 Map[t[#] &, Range[0, 50]] (* A212020 *)
%t A212020 %/2  (* integers *)
%t A212020 (* _Peter J. C. Moses_, Apr 13 2012 *)
%Y A212020 Cf. A211795.
%K A212020 nonn
%O A212020 0,4
%A A212020 _Clark Kimberling_, Apr 28 2012