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!)
A306940 Expansion of 1/((1 - x)^6 + x^6). 2
1, 6, 21, 56, 126, 252, 461, 780, 1209, 1638, 1638, 0, -6187, -23238, -63783, -151316, -326382, -652764, -1217483, -2107560, -3322995, -4538430, -4538430, 0, 16942381, 63239286, 172791861, 408855776, 880983606, 1761967212, 3287837741, 5694626340 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/6)} (-1)^k*binomial(n+5,6*k+5).
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - 2*a(n-6) for n > 5.
MATHEMATICA
CoefficientList[Series[1/((1 - x)^6 + x^6), {x, 0, 31}], x] (* Amiram Eldar, May 25 2021 *)
LinearRecurrence[{6, -15, 20, -15, 6, -2}, {1, 6, 21, 56, 126, 252}, 40] (* Harvey P. Dale, May 31 2021 *)
PROG
(PARI) {a(n) = sum(k=0, n\6, (-1)^k*binomial(n+5, 6*k+5))}
(PARI) N=66; x='x+O('x^N); Vec(1/((1-x)^6+x^6))
CROSSREFS
Column 6 of A306914.
Sequence in context: A015640 A138780 A108907 * A120478 A008488 A023031
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)