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!)
A245534 a(n) = n^2 + floor(n/2)*(-1)^n. 1
1, 5, 8, 18, 23, 39, 46, 68, 77, 105, 116, 150, 163, 203, 218, 264, 281, 333, 352, 410, 431, 495, 518, 588, 613, 689, 716, 798, 827, 915, 946, 1040, 1073, 1173, 1208, 1314, 1351, 1463, 1502, 1620, 1661, 1785, 1828, 1958, 2003, 2139, 2186, 2328, 2377, 2525 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Consider the partitions of 2n into two parts: When n is odd, a(n) gives the total sum of the odd numbers from the smallest parts and the even numbers from the largest parts of these partitions. When n is even, a(n) gives the total sum of the even numbers from the smallest parts and the odd numbers from the largest parts (see example).
LINKS
FORMULA
G.f.: x*(1 + 4*x + x^2 + 2*x^3)/((1 + x)^2*(1 - x)^3).
a(n) = (4*n^2 + 1 + (2*n - 1)*(-1)^n)/4.
a(n) = A000290(n) + A001057(n-1) for n > 0.
a(n) = n^2 - Sum_{k=1..n-1} (-1)^k*k for n>1. Example: for n=5, a(5) = 5^2 - (4 - 3 + 2 - 1) = 23. - Bruno Berselli, May 23 2018
EXAMPLE
a(3) = 8; The partitions of 2*3 = 6 into two parts are: (5,1), (4,2), (3,3). Since 3 is odd, we sum the odd numbers from the smallest parts together with the even numbers from the largest parts to get: (1+3) + (4) = 8.
a(4) = 18; The partitions of 4*2 = 8 into two parts are: (7,1), (6,2), (5,3), (4,4). Since 4 is even, we sum the even numbers from the smallest parts together with the odd numbers from the largest parts to get: (2+4) + (5+7) = 18.
MAPLE
A245534:=n->n^2+floor(n/2)*(-1)^n: seq(A245534(n), n=1..50);
MATHEMATICA
Table[n^2 + Floor[n/2] (-1)^n, {n, 50}]
PROG
(Magma) [n^2+Floor(n/2)*(-1)^n: n in [1..50]];
(PARI) a(n) = n^2 + (n\2)*(-1)^n; \\ Michel Marcus, Aug 06 2014
CROSSREFS
Cf. A001057, A000290. See A245524 for a very similar sequence.
Sequence in context: A237276 A155086 A219049 * A302393 A342804 A226902
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Jul 25 2014
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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)