login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A131119
a(n) = (-1)^n * Sum_{i=1..floor(n/2)} i * floor(n/(n-i)).
1
0, 0, 2, -1, 5, -3, 9, -6, 14, -10, 20, -15, 27, -21, 35, -28, 44, -36, 54, -45, 65, -55, 77, -66, 90, -78, 104, -91, 119, -105, 135, -120, 152, -136, 170, -153, 189, -171, 209, -190, 230, -210, 252, -231, 275, -253, 299, -276, 324, -300, 350, -325, 377, -351, 405
OFFSET
0,3
COMMENTS
Alternate A000096 and -A000217. Differences: A131723.
MATHEMATICA
Table[(-1)^n*Sum[i*Floor[n/(n - i)], {i, Floor[n/2]}], {n, 0, 80}] (* Wesley Ivan Hurt, Nov 26 2020 *)
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Paul Curtz, Sep 24 2007
EXTENSIONS
New name and more terms from Wesley Ivan Hurt, Nov 26 2020
STATUS
approved