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!)
A133585 Expansion of x - x^2*(2*x+1)*(x^2-2) / ( (x^2-x-1)*(x^2+x-1) ). 3
1, 2, 4, 5, 10, 13, 26, 34, 68, 89, 178, 233, 466, 610, 1220, 1597, 3194, 4181, 8362, 10946, 21892, 28657, 57314, 75025, 150050, 196418, 392836, 514229, 1028458, 1346269, 2692538, 3524578, 7049156, 9227465, 18454930, 24157817 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A133585 is a companion to A133586.
LINKS
FORMULA
Equals the matrix-matrix-vector product A133566 * A133080 * A000045 (previous name).
For even-indexed terms, a(n) = F(n+1). For odd-indexed terms (n>1), a(n) = 2*a(n-1), A126358.
EXAMPLE
a(4) = F(5) = 5.
a(5) = 2*a(4) = 2*5 = 10.
MAPLE
A133585aux := proc(n, k)
add(A133566(n, j)*A133080(j, k), j=k..n) ;
end proc:
A000045 := proc(n)
combinat[fibonacci](n) ;
end proc:
A133585 := proc(n)
add(A133585aux(n, j)*A000045(j), j=0..n) ;
end proc: # R. J. Mathar, Jun 20 2015
MATHEMATICA
CoefficientList[Series[1 - x (2 x + 1) (x^2 - 2)/((x^2 - x - 1) (x^2 + x - 1)), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 21 2015 *)
LinearRecurrence[{0, 3, 0, -1}, {1, 2, 4, 5, 10}, 40] (* Harvey P. Dale, Mar 04 2019 *)
PROG
(PARI) a(n)=if(n>1, ([0, 1, 0, 0; 0, 0, 1, 0; 0, 0, 0, 1; -1, 0, 3, 0]^(n-2)*[2; 4; 5; 10])[1, 1], 1) \\ Charles R Greathouse IV, Jun 20 2015
CROSSREFS
Sequence in context: A325107 A064383 A018360 * A218936 A264855 A154318
KEYWORD
nonn,easy
AUTHOR
Gary W. Adamson, Sep 18 2007
EXTENSIONS
Previous name corrected and new name from R. J. Mathar, Jun 20 2015
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)