login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A212107 Number of (w,x,y,z) with all terms in {1,...,n} and w >= harmonic mean of {x,y,z}. 3

%I #9 Dec 04 2016 19:46:29

%S 0,1,9,48,160,384,798,1468,2517,4041,6172,9063,12870,17746,23907,

%T 31581,40933,52227,65721,81676,100401,122136,147205,175944,208716,

%U 245833,287685,334665,387211,445701,510642,582343,661380,748185,843286

%N Number of (w,x,y,z) with all terms in {1,...,n} and w >= harmonic mean of {x,y,z}.

%C a(n)+A212106(n)=n^4.

%C A 4-tuple (w,x,y,z) is counted if 3/w>=1/x+1/y+1/z.

%C For a guide to related sequences, see A211795.

%t t = Compile[{{n, _Integer}}, Module[{s = 0},

%t (Do[If[w*(y*z + z*x + x*y) >= 3 x*y*z, s = s + 1],

%t {w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];

%t Map[t[#] &, Range[0, 40]] (* A212107 *)

%t (* _Peter J. C. Moses_, Apr 13 2012 *)

%Y Cf. A211795, A212103.

%K nonn

%O 0,3

%A _Clark Kimberling_, May 04 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)