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

A212063
Number of (w,x,y,z) with all terms in {1,...,n} and w^2<x*y*z.
3
0, 0, 8, 50, 169, 440, 943, 1796, 3118, 5090, 7877, 11683, 16708, 23253, 31552, 41892, 54589, 70030, 88524, 110484, 136289, 166434, 201327, 241465, 287278, 339444, 398407, 464742, 539068, 622021, 714192, 816319, 929007, 1053100
OFFSET
0,3
COMMENTS
a(n)+A212064(n)=n^4. For a guide to related sequences, see A211795.
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w^2 < x*y*z, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 50]] (* A212063 *)
(* Peter J. C. Moses, Apr 13 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A301487 A299686 A133426 * A300318 A290617 A163228
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 30 2012
STATUS
approved