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!)
A306847 a(n) = Sum_{k=0..floor(n/6)} binomial(n,6*k). 4
1, 1, 1, 1, 1, 1, 2, 8, 29, 85, 211, 463, 926, 1730, 3095, 5461, 9829, 18565, 37130, 77540, 164921, 349525, 728575, 1486675, 2973350, 5858126, 11450531, 22369621, 43942081, 87087001, 174174002, 350739488, 708653429, 1431655765, 2884834891, 5791193143 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
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) for n > 5.
a(n) = (4^n + (1 - t)^n + (1 + t)^n + (3 - t)^n + (3 + t)^n)/(6*2^n) for n > 0 and a(0) = 1, where t = i*sqrt(3) and i = sqrt(-1). - Bruno Berselli, Mar 13 2019
MATHEMATICA
a[n_] := Sum[Binomial[n, 6*k], {k, 0, Floor[n/6]}]; Array[a, 36, 0] (* Amiram Eldar, Jun 21 2021 *)
PROG
(PARI) {a(n) = sum(k=0, n\6, 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 A306846.
Sequence in context: A061230 A241627 A293169 * A364523 A107025 A212385
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Mar 13 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 March 28 21:57 EDT 2024. Contains 371254 sequences. (Running on oeis4.)