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!)
A211538 Number of ordered triples (w,x,y) with all terms in {1,...,n} and 2w=2n-2x-y. 8
0, 0, 0, 1, 3, 5, 9, 12, 18, 22, 30, 35, 45, 51, 63, 70, 84, 92, 108, 117, 135, 145, 165, 176, 198, 210, 234, 247, 273, 287, 315, 330, 360, 376, 408, 425, 459, 477, 513, 532, 570, 590, 630, 651, 693, 715, 759, 782, 828, 852, 900, 925, 975, 1001, 1053, 1080, 1134, 1162 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
For a guide to related sequences, see A211422.
Partial sums of A029578. - Reinhard Zumkeller, Nov 27 2012
LINKS
FORMULA
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5).
a(n) = (6*n^2-26*n+25-(2*n-7)*(-1)^n)/16, from Luce ETIENNE. [Bruno Berselli, Jun 03 2014]
From Wesley Ivan Hurt, May 18 2015: (Start)
G.f.: x^3*(1 + 2 x)/((1 - x)^3*(x + 1)^2).
a(n) = Sum_{i=ceiling((n-3)/2)..n-3} i. (End)
MAPLE
A211538:=n->(6*n^2-26*n+25-(2*n-7)*(-1)^n)/16: seq(A211538(n), n=1..100); # Wesley Ivan Hurt, May 18 2015
MATHEMATICA
t[n_] := t[n] = Flatten[Table[2 w + 2 x + y - 2 n, {w, n}, {x, n}, {y, n}]]; c[n_] := Count[t[n], 0]; t = Table[c[n], {n, 0, 70}]
Table[(6*n^2 - 26*n + 25 - (2*n - 7)*(-1)^n)/16, {n, 100}] (* Wesley Ivan Hurt, May 18 2015 *)
LinearRecurrence[{1, 2, -2, -1, 1}, {0, 0, 0, 1, 3}, 70] (* Vincenzo Librandi, May 19 2015 *)
PROG
(Haskell)
a211538 n = a211538_list !! (n-1)
a211538_list = scanl (+) 0 a029578_list
-- Reinhard Zumkeller, Nov 27 2012
(Magma) [(6*n^2-26*n+25-(2*n-7)*(-1)^n)/16: n in [1..60]]; // Bruno Berselli, Jun 03 2014
CROSSREFS
Cf. A211422.
Sequence in context: A234813 A060419 A005766 * A368613 A247799 A265702
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 15 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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)