The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A119336 Expansion of (1-x)^4/((1-x)^6 - x^6). 4
1, 2, 3, 4, 5, 6, 8, 16, 45, 130, 341, 804, 1730, 3460, 6555, 12016, 21845, 40410, 77540, 155080, 320001, 669526, 1398101, 2884776, 5858126, 11716252, 23166783, 45536404, 89478485, 176565486, 350739488, 701478976, 1410132405, 2841788170 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums of A119335. Binomial transform of (1+x)/(1-x)^6.
Equals binomial transform of [1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, ...]. - Gary W. Adamson, Mar 14 2009
LINKS
FORMULA
a(n) = Sum_{k=0..n} Sum_{j=0..n-k} C(k,3j)*C(n-k,3j).
a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5), with a(0)=1, a(1)=2, a(2)=3, a(3)=4, a(4)=5. - Harvey P. Dale, Dec 25 2015
a(n) = Sum_{k=0..floor(n/6)} binomial(n+1,6*k+1). - Seiichi Manyama, Mar 22 2019
MATHEMATICA
CoefficientList[Series[(1-x)^4/((1-x)^6-x^6), {x, 0, 40}], x] (* or *) LinearRecurrence[{6, -15, 20, -15, 6}, {1, 2, 3, 4, 5}, 40] (* Harvey P. Dale, Dec 25 2015 *)
PROG
(PARI) {a(n) = sum(k=0, n\6, binomial(n+1, 6*k+1))} \\ Seiichi Manyama, Mar 22 2019
CROSSREFS
Sequence in context: A037402 A048332 A249158 * A133706 A081710 A364455
KEYWORD
easy,nonn
AUTHOR
Paul Barry, May 14 2006
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 May 19 13:25 EDT 2024. Contains 372694 sequences. (Running on oeis4.)