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!)
A074677 a(n) = Sum_{i = 0..floor(n/2)} (-1)^(i + floor(n/2)) F(2*i + e), where F = A000045 (Fibonacci numbers) and e = (1-(-1)^n)/2. 5
0, 1, 1, 1, 2, 4, 6, 9, 15, 25, 40, 64, 104, 169, 273, 441, 714, 1156, 1870, 3025, 4895, 7921, 12816, 20736, 33552, 54289, 87841, 142129, 229970, 372100, 602070, 974169, 1576239, 2550409, 4126648, 6677056, 10803704, 17480761, 28284465, 45765225, 74049690 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Essentially the same as A006498 (g.f. 1/(1-x-x^3-x^4)).
a(n) is the convolution of F(n) with the sequence (1,0,-1,0,1,0,-1,0,...), A056594.
LINKS
Victoria Zhuravleva, Diophantine approximations with Fibonacci numbers, Journal de théorie des nombres de Bordeaux, 25 no. 2 (2013), p. 499-520. See Lemma 5.1.
FORMULA
a(n) = a(n-1) + a(n-3) + a(n-4) for n>3, a(0)=0, a(1)=1, a(2)=1, a(3)=1.
G.f.: x/(1 - x - x^3 - x^4).
a(n) = Fibonacci(ceiling(n/2))*Fibonacci(floor(n/2+1)). - Alois P. Heinz, Jan 15 2024
MATHEMATICA
CoefficientList[Series[x/(1 - x - x^3 - x^4), {x, 0, 40}], x]
PROG
(Haskell)
a074677 n = a074677_list !! (n-1)
a074677_list = 0 : 1 : 1 : 1 : zipWith (+) a074677_list
(zipWith (+) (tail a074677_list) (drop 3 a074677_list))
-- Reinhard Zumkeller, Dec 28 2011
(Sage) [sum((-1)^(i+floor(n/2))*fibonacci(2*i+(1-(-1)^n)/2) for i in (0..floor(n/2))) for n in [0..50]]; # Bruno Berselli, Mar 15 2016
(Magma) [&+[(-1)^(i+Floor(n/2))*Fibonacci(2*i+(1-(-1)^n) div 2): i in [0..Floor(n/2)]]: n in [0..50]]; // Bruno Berselli, Mar 15 2016
(PARI) concat(0, Vec(x/((1+x^2)*(1-x-x^2)) + O(x^50))) \\ Colin Barker, Mar 15 2016
CROSSREFS
Sequence in context: A157679 A057602 A171646 * A006498 A179997 A101756
KEYWORD
nonn,easy
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Aug 30 2002
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 24 05:44 EDT 2024. Contains 371918 sequences. (Running on oeis4.)