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”).

A212053
Number of (w,x,y,z) with all terms in {1,...,n} and w*x<=y*z+1.
3
0, 1, 13, 56, 158, 365, 725, 1312, 2198, 3477, 5245, 7624, 10742, 14725, 19725, 25920, 33470, 42557, 53397, 66176, 81150, 98525, 118533, 141456, 167606, 197189, 230509, 267920, 309726, 356205, 407805, 464744, 527494, 596389, 671789
OFFSET
0,3
COMMENTS
a(n)+A212054(n)=n^4. See A211795 for a guide to related sequences.
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w*x <= y*z + 1, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 50]] (* A212053 *)
(* Peter J. C. Moses, Apr 13 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A206372 A290396 A061161 * A264853 A210290 A007202
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 29 2012
STATUS
approved