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

A211917
Number of (w,x,y,z) with all terms in {1,...,n} and w*x<3*y*z.
2
0, 1, 15, 67, 210, 507, 1029, 1904, 3225, 5123, 7785, 11368, 16023, 22035, 29572, 38867, 50233, 63931, 80180, 99459, 121947, 148024, 178141, 212635, 251805, 296268, 346348, 402462, 465175, 534990, 612224, 697732, 791813, 895043
OFFSET
0,3
COMMENTS
a(n)+A211919(n)=n^4.
See A211795 for a guide to related sequences.
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w*x < 3 y*z, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 40]] (* A211917 *)
(* Peter J. C. Moses, Apr 13 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A211787 A265141 A336624 * A015876 A201126 A085474
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 27 2012
STATUS
approved