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!)
A306942 Expansion of 1/((1 - x)^9 + x^9). 2
1, 9, 45, 165, 495, 1287, 3003, 6435, 12870, 24309, 43740, 75411, 124830, 197505, 293436, 389367, 389367, 0, -1562274, -6216183, -18365697, -47600136, -113879520, -257123889, -554298228, -1148646906, -2297293812, -4443424371, -8313049440, -15011769204 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (9,-36,84,-126,126,-84,36,-9).
FORMULA
a(n) = Sum_{k=0..floor(n/9)} (-1)^k*binomial(n+8,9*k+8).
a(n) = 9*a(n-1) - 36*a(n-2) + 84*a(n-3) - 126*a(n-4) + 126*a(n-5) - 84*a(n-6) + 36*a(n-7) - 9*a(n-8) for n > 7.
MATHEMATICA
CoefficientList[Series[1/((1-x)^9+x^9), {x, 0, 30}], x] (* Harvey P. Dale, Sep 25 2019 *)
PROG
(PARI) {a(n) = sum(k=0, n\9, (-1)^k*binomial(n+8, 9*k+8))}
(PARI) N=66; x='x+O('x^N); Vec(1/((1-x)^9+x^9))
CROSSREFS
Column 9 of A306914.
Cf. A306939.
Sequence in context: A341138 A008501 A341206 * A289354 A008491 A023034
KEYWORD
sign,easy
AUTHOR
Seiichi Manyama, Mar 17 2019
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 19:36 EDT 2024. Contains 371962 sequences. (Running on oeis4.)