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!)
A212755 Number of (w,x,y,z) with all terms in {0,...,n} and |w-x|=max{w,x,y,z}-min{w,x,y,z}. 2
1, 10, 37, 96, 205, 386, 665, 1072, 1641, 2410, 3421, 4720, 6357, 8386, 10865, 13856, 17425, 21642, 26581, 32320, 38941, 46530, 55177, 64976, 76025, 88426, 102285, 117712, 134821, 153730, 174561, 197440, 222497, 249866, 279685 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211795.
LINKS
FORMULA
a(n)=5*a(n-1)-10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5).
G.f.: ( -1-5*x+3*x^2-x^3 ) / (x-1)^5 .
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[Abs[w - x] == Max[w, x, y, z] - Min[w, x, y, z], s = s + 1],
{w, 0, n}, {x, 0, n}, {y, 0, n}, {z, 0, n}]; s)]];
Map[t[#] &, Range[0, 40]] (* A212755 *)
CROSSREFS
Cf. A211795.
Sequence in context: A096000 A047672 A200872 * A048480 A116970 A355044
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)