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!)
A307040 a(n) = Sum_{k=0..floor(n/6)} (-1)^k*binomial(n,6*k). 2
1, 1, 1, 1, 1, 1, 0, -6, -27, -83, -209, -461, -922, -1702, -2911, -4549, -6187, -6187, 0, 23238, 87021, 238337, 564719, 1217483, 2434966, 4542526, 7865521, 12403951, 16942381, 16942381, 0, -63239286, -236031147, -644886923, -1525870529, -3287837741, -6575675482 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
FORMULA
G.f.: (1 - x)^5/((1 - x)^6 + x^6).
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
a[n_] := Sum[(-1)^k * Binomial[n, 6*k], {k, 0, Floor[n/6]}]; Array[a, 37, 0] (* Amiram Eldar, May 25 2021 *)
PROG
(PARI) {a(n) = sum(k=0, n\6, (-1)^k*binomial(n, 6*k))}
(PARI) N=66; x='x+O('x^N); Vec((1-x)^5/((1-x)^6+x^6))
CROSSREFS
Column 6 of A307039.
Cf. A306847.
Sequence in context: A198958 A027313 A217365 * A124089 A250283 A100188
KEYWORD
sign,easy
AUTHOR
Seiichi Manyama, Mar 21 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 12:31 EDT 2024. Contains 371937 sequences. (Running on oeis4.)