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!)
A112576 A Chebyshev-related transform of the Fibonacci numbers. 6
0, 1, 1, 4, 6, 16, 29, 67, 132, 288, 588, 1253, 2597, 5480, 11430, 24020, 50233, 105383, 220632, 462528, 968808, 2030377, 4253641, 8913436, 18675174, 39131464, 81989909, 171795691, 359958780, 754224480, 1580315220, 3311234189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Transform of the Fibonacci numbers by the Chebyshev related transform which maps g(x) -> (1/(1-x^2))g(x/(1-x^2)).
LINKS
D. Huylebrouck, The Meta-Golden Ratio Chi, Proceedings of Bridges 2014: Mathematics, Music, Art, Architecture, Culture.
FORMULA
G.f.: x/(1-x-3*x^2+x^3+x^4).
a(n) = Sum_{k=0..floor(n/2)} C(n-k, k)*F(n-2*k).
a(n) = Sum_{k=0..n} C((n+k)/2, k)*(1+(-1)^(n-k))*F(k)/2.
a(n) = (Fibonacci(n+1, (1+sqrt(5))/2) - Fibonacci(n+1, (1-sqrt(5))/2) )/sqrt(5), where Fibonacci(n,x) is the Fibonacci polynomial (see A011973). - G. C. Greubel, Jul 29 2019
MATHEMATICA
(* see A192232 for Mmca code. - M. F. Hasler, Apr 05 2016 *)
PROG
(PARI) Vec(x/(1-x-3*x^2+x^3+x^4)+O(x^40)) \\ M. F. Hasler, Apr 05 2016
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); [0] cat Coefficients(R!( x/(1-x-3*x^2+x^3+x^4) )); // G. C. Greubel, Jul 29 2019
(Sage) (x/(1-x-3*x^2+x^3+x^4)).series(x, 40).coefficients(x, sparse=False) # G. C. Greubel, Jul 29 2019
(GAP) a:=[0, 1, 1, 4];; for n in [5..40] do a[n]:=a[n-1]+3*a[n-2]-a[n-3] -a[n-4]; od; a; # G. C. Greubel, Jul 29 2019
CROSSREFS
Sequence in context: A261682 A102731 A007179 * A174804 A081487 A099430
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Sep 14 2005
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 13 16:16 EDT 2024. Contains 372522 sequences. (Running on oeis4.)