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

A212135
Number of (w,x,y,z) with all terms in {1,...,n} and median<mean.
3
0, 0, 4, 24, 84, 220, 480, 924, 1624, 2664, 4140, 6160, 8844, 12324, 16744, 22260, 29040, 37264, 47124, 58824, 72580, 88620, 107184, 128524, 152904, 180600, 211900, 247104, 286524, 330484, 379320, 433380, 493024, 558624, 630564, 709240, 795060, 888444
OFFSET
0,3
COMMENTS
Also, the number of (w,x,y,z) with all terms in {1,...,n} and median>mean.
For a guide to related sequences, see A211795.
FORMULA
a(n) + A212134(n) = n^4.
a(n) = n*(n - 1)*(n^2 - n + 2)/2.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
G.f.: 4*x*(1 + x + x^2) / (1 - x)^5. - Colin Barker, Dec 02 2017
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0}, (Do[If[
Apply[Plus, Rest[Most[Sort[{w, x, y, z}]]]]/2 > (w + x + y + z)/4, s = s + 1], {w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Flatten[Map[{t[#]} &, Range[0, 20]]] (* A212135 *)
%/4 (* A002817 *)
PROG
(PARI) concat(vector(2), Vec(4*x*(1 + x + x^2) / (1 - x)^5 + O(x^40))) \\ Colin Barker, Dec 02 2017
CROSSREFS
Cf. A211795.
Sequence in context: A264184 A354476 A211071 * A210569 A334581 A341688
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 05 2012
STATUS
approved