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!)
A306941 Expansion of 1/((1 - x)^8 + x^8). 2
1, 8, 36, 120, 330, 792, 1716, 3432, 6434, 11424, 19312, 31008, 46512, 62016, 62016, 0, -245156, -961376, -2787760, -7065760, -16478280, -36159840, -75522960, -151045920, -290021896, -534308096, -940325760, -1564496128, -2406819200, -3249142272, -3249142272 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/8)} (-1)^k*binomial(n+7,8*k+7).
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - 2*a(n-8) for n > 7.
MATHEMATICA
CoefficientList[Series[1/((1 - x)^8 + x^8), {x, 0, 30}], x] (* Amiram Eldar, May 25 2021 *)
PROG
(PARI) {a(n) = sum(k=0, n\8, (-1)^k*binomial(n+7, 8*k+7))}
(PARI) N=66; x='x+O('x^N); Vec(1/((1-x)^8+x^8))
CROSSREFS
Column 8 of A306914.
Sequence in context: A341137 A051192 A008500 * A008490 A023033 A341205
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 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)