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”).

A266086
Alternating sum of 9-gonal (or nonagonal) numbers.
1
0, -1, 8, -16, 30, -45, 66, -88, 116, -145, 180, -216, 258, -301, 350, -400, 456, -513, 576, -640, 710, -781, 858, -936, 1020, -1105, 1196, -1288, 1386, -1485, 1590, -1696, 1808, -1921, 2040, -2160, 2286, -2413, 2546, -2680, 2820, -2961, 3108, -3256, 3410
OFFSET
0,3
LINKS
OEIS Wiki, Figurate numbers
Eric Weisstein's World of Mathematics, Nonagonal Number
FORMULA
G.f.: -x*(1 - 6*x)/((1 - x)*(1 + x)^3).
a(n) = ((14*n^2 + 4*n - 5)*(-1)^n + 5)/8.
a(n) = Sum_{k = 0..n} (-1)^k*A001106(k).
Lim_{n -> infinity} a(n + 1)/a(n) = -1.
MATHEMATICA
Table[((14 n^2 + 4 n - 5) (-1)^n + 5)/8, {n, 0, 44}]
CoefficientList[Series[(x - 6 x^2)/(x^4 + 2 x^3 - 2 x - 1), {x, 0, 50}], x] (* Vincenzo Librandi, Dec 21 2015 *)
PROG
(Magma) [(14*(-1)^n*n^2 + 4*(-1)^n*n - 5*(-1)^n + 5)/8: n in [0..50]]; // Vincenzo Librandi, Dec 21 2015
(PARI) x='x+O('x^100); concat(0, Vec(-x*(1-6*x)/((1-x)*(1+x)^3))) \\ Altug Alkan, Dec 21 2015
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Ilya Gutkovskiy, Dec 21 2015
STATUS
approved