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!)
A131805 Row sums of triangular array T: T(j,k) = -(k+1)/2 for odd k, T(j,k) = 0 for k = 0, T(j,k) = j+1-k/2 for even k > 0; 0 <= k <= j. 2
0, -1, 1, 0, 4, 3, 9, 8, 16, 15, 25, 24, 36, 35, 49, 48, 64, 63, 81, 80, 100, 99, 121, 120, 144, 143, 169, 168, 196, 195, 225, 224, 256, 255, 289, 288, 324, 323, 361, 360, 400, 399, 441, 440, 484, 483, 529, 528, 576, 575, 625, 624, 676, 675, 729, 728, 784, 783, 841 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Interleaving of A000290 and A067998 (starting at second term).
First differences are -1, 2, -1, 4, -1, 6, -1, 8, -1, 10, ...: a(n+1) - a(n) = (-1)^(n+1)*A124625(n+2).
Main diagonal of T is in A001057, antidiagonal sums are in A131804.
LINKS
FORMULA
a(0) = 0; a(n) = a(n-1) - (n mod 2) + n*(1 - (n mod 2)) for n > 0.
G.f.: x*(-1+2*x+x^2)/((1-x)^3*(1+x)^2).
a(n) = -A131118(2n) = (2n(n-1)+(2n+3)(-1)^n-3)/8. - Bruno Berselli, Mar 27 2012
EXAMPLE
First seven rows of T are
[ 0 ],
[ 0, -1 ],
[ 0, -1, 2 ],
[ 0, -1, 3, -2 ],
[ 0, -1, 4, -2, 3 ],
[ 0, -1, 5, -2, 4, -3 ],
[ 0, -1, 6, -2, 5, -3, 4 ]
PROG
(Magma) m:=59; M:=ZeroMatrix(IntegerRing(), m, m); for j:=1 to m do for k:=2 to j do if k mod 2 eq 0 then M[j, k]:= -k div 2; else M[j, k]:=j-(k div 2); end if; end for; end for; [ &+[ M[j, k]: k in [1..j] ]: j in [1..m] ];
(Magma) m:=29; &cat[ [ n^2, n^2-1 ]: n in [0..m] ];
(PARI) {m=58; for(n=0, m, r=n%2; print1(((n-r)/2)^2-r, ", "))}
(Maxima) makelist((2*n*(n-1)+(2*n+3)*(-1)^n-3)/8, n, 0, 58); /* Bruno Berselli, Mar 27 2012 */
CROSSREFS
Cf. A000290 (n^2), A067998 (n^2-2*n), A124625, A001057, A131804.
Cf. A131118.
Sequence in context: A365904 A370290 A275473 * A197694 A187770 A103218
KEYWORD
sign,easy
AUTHOR
Klaus Brockhaus, Jul 18 2007
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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)