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!)
A212679 Number of (w,x,y,z) with all terms in {1,...,n} and |x-y|=|y-z|. 2
0, 1, 8, 33, 80, 165, 288, 469, 704, 1017, 1400, 1881, 2448, 3133, 3920, 4845, 5888, 7089, 8424, 9937, 11600, 13461, 15488, 17733, 20160, 22825, 25688, 28809, 32144, 35757, 39600, 43741, 48128, 52833, 57800, 63105, 68688, 74629, 80864 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
For a guide to related sequences, see A211795.
LINKS
FORMULA
a(n)=2*a(n-1)+a(n-2)-4*a(n-3)+a(n-4)+2*a(n-5)-a(n-6).
G.f.: (x + 6*x^2 + 16*x^3 + 10*x^4 + 3*x^5)/(1 - 2*x - x^2 + 4*x^3 - x^4 - 2*x^5 + x^6)
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[Abs[x - y] == Abs[y - z], s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 50]] (* A212679 *)
LinearRecurrence[{2, 1, -4, 1, 2, -1}, {0, 1, 8, 33, 80, 165}, 50]
CROSSREFS
Cf. A211795.
Sequence in context: A044466 A022274 A118312 * A204468 A140867 A212133
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 17 20:45 EDT 2024. Contains 371767 sequences. (Running on oeis4.)