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!)
A212754 Number of (w,x,y,z) with all terms in {0,...,n} and at least one of these conditions holds: w<R, x>R, y>R, z>R, where R = max{w,x,y,z} - min{w,x,y,z}. 2
0, 8, 53, 184, 472, 1008, 1905, 3296, 5336, 8200, 12085, 17208, 23808, 32144, 42497, 55168, 70480, 88776, 110421, 135800, 165320, 199408, 238513, 283104, 333672, 390728, 454805, 526456, 606256, 694800, 792705, 900608, 1019168 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211795.
LINKS
FORMULA
a(n)=4*a(n-1)-5*a(n-2)+5*a(n-4)-4*a(n-5)+a(n-6).
G.f.: -x*(8+21*x+12*x^2+x^3) / ( (1+x)*(x-1)^5 ).
MATHEMATICA
t = Compile[{{n, _Integer}},
Module[{s = 0}, (Do[
If[(w < # || x > # || y > # || z > #) &[
Max[w, x, y, z] - Min[w, x, y, z]], s++], {w, 0, n},
{x, 0, n}, {y, 0, n}, {z, 0, n}]; s)]];
Map[t[#] &, Range[0, 40]] (* A212754 *)
(* Peter J. C. Moses, May 24 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A306169 A316424 A317426 * A099622 A198846 A291662
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 28 2012
STATUS
approved

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 24 02:28 EDT 2024. Contains 371917 sequences. (Running on oeis4.)