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!)
A212674 Number of (w,x,y,z) with all terms in {1,...,n} and w > |x-y| + |y-z|. 2
0, 1, 8, 35, 104, 247, 504, 925, 1568, 2501, 3800, 5551, 7848, 10795, 14504, 19097, 24704, 31465, 39528, 49051, 60200, 73151, 88088, 105205, 124704, 146797, 171704, 199655, 230888, 265651, 304200, 346801, 393728, 445265, 501704 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n)+A212673(n) = n^4. 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 + 4*x^2 + 8*x^3 + 4*x^4 + x^5)/(1 - 4*x + 5*x^2 - 5*x^4 + 4*x^5 - x^6). [corrected by Georg Fischer, May 10 2019]
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w > Abs[x - y] + Abs[y - z], s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 40]] (* A212674 *)
LinearRecurrence[{4, -5, 0, 5, -4, 1}, {0, 1, 8, 35, 104, 247}, 40]
CROSSREFS
Cf. A211795.
Sequence in context: A212903 A168566 A058102 * A279743 A189592 A285737
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 23 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 25 12:27 EDT 2024. Contains 371969 sequences. (Running on oeis4.)