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!)
A271180 Expansion of (4*x^3-7*x^2+4*x-1)/(x^6-4*x^5+4*x^4+x^3-7*x^2+5*x-1). 0
1, 1, 5, 15, 45, 125, 342, 921, 2461, 6535, 17282, 45567, 119898, 315020, 826830, 2168583, 5684731, 14896459, 39024899, 102216045, 267693813, 700997144, 1835543565, 4806092673, 12583591525, 32946281848, 86258240735, 225834015840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n+1)*Sum_{k=0..n} (Sum_{i=0..n-k} (binomial(i+k,i)*2^i*binomial(2*k+2,n-i-k)*(-1)^(n-i-k))/(k+1)*F(k+1)), where F = A000045 (Fibonacci numbers).
a(n) = 5*a(n-1) - 7*a(n-2) + a(n-3) + 4*a(n-4) - 4*a(n-5) + a(n-6) for n>3, a(0)=1, a(1)=1, a(2)=5, a(3)=15.
MATHEMATICA
Table[(n + 1) Sum[Sum[(Binomial[i + k, i] 2^i Binomial[2 k + 2, n - i - k] (-1)^(n - i - k))/(k + 1) Fibonacci[k + 1], {i, 0, n - k}], {k, 0, n}], {n, 0, 27}] (* or *)
CoefficientList[Series[(4 x^3 - 7 x^2 + 4 x - 1)/(x^6 - 4 x^5 + 4 x^4 + x^3 - 7 x^2 + 5 x - 1), {x, 0, 27}], x] (* Michael De Vlieger, Apr 01 2016 *)
PROG
(Maxima) a(n):=(n+1)*sum(sum(binomial(i+k, i)*2^i*binomial(2*k+2, n-i-k)*(-1)^(n-i-k), i, 0, n-k)/(k+1)*fib(k+1), k, 0, n);
(PARI) x='x+O('x^99); Vec((4*x^3-7*x^2+4*x-1)/(x^6-4*x^5+4*x^4+x^3-7*x^2+5*x-1)) \\ Altug Alkan, Apr 01 2016
CROSSREFS
Sequence in context: A022813 A000334 A000335 * A200465 A084244 A005030
KEYWORD
nonn,easy
AUTHOR
Vladimir Kruchinin, Apr 01 2016
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)