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.

A212243 Number of (w,x,y,z) with all terms in {1,...,n} and 2wx+yz=n.

This page as a plain text file.
%I A212243 #5 Dec 04 2016 19:46:30
%S A212243 0,0,0,1,2,4,7,8,14,13,24,19,33,26,48,32,60,41,75,49,92,58,109,66,127,
%T A212243 76,146,88,168,96,184,106,212,122,227,126,263,140,271,158,304,163,326,
%U A212243 175,363,196,366,198,425,212,416,240,474,238,488,250,528,284
%N A212243 Number of (w,x,y,z) with all terms in {1,...,n} and 2wx+yz=n.
%C A212243 For a guide to related sequences, see A211795.
%t A212243 t = Compile[{{n, _Integer}}, Module[{s = 0},
%t A212243 (Do[If[2 w*x + y*z == n, s = s + 1],
%t A212243 {w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
%t A212243 Map[t[#] &, Range[0, 60]]  (* A212243 *)
%t A212243 (* _Peter J. C. Moses_, Apr 13 2012 *)
%Y A212243 Cf. A211795.
%K A212243 nonn
%O A212243 0,5
%A A212243 _Clark Kimberling_, May 08 2012