login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A212136
Number of (w,x,y,z) with all terms in {1,...,n} and w*x+y*z>n^2.
2
0, 1, 7, 25, 60, 126, 222, 387, 599, 903, 1295, 1830, 2458, 3322, 4317, 5539, 6993, 8773, 10766, 13198, 15906, 19095, 22707, 26879, 31376, 36684, 42500, 49024, 56131, 64205, 72833, 82742, 93314, 104934, 117500, 131277, 146003, 162489
OFFSET
0,3
COMMENTS
A212136(n)+A212150(n)=n^4. For a guide to related sequences, see A211795.
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w*x + y*z > n^2, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 40]] (* A212136 *)
(* Peter J. C. Moses, Apr 13 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A266709 A162264 A034135 * A213392 A061600 A098538
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 07 2012
EXTENSIONS
Offset changed to 0 by Georg Fischer, Feb 02 2022
STATUS
approved