Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A293632 Least integer k such that k/Fibonacci(n) >= 3/4. 3
1, 1, 2, 3, 4, 6, 10, 16, 26, 42, 67, 108, 175, 283, 458, 741, 1198, 1938, 3136, 5074, 8210, 13284, 21493, 34776, 56269, 91045, 147314, 238359, 385672, 624030, 1009702, 1633732, 2643434, 4277166, 6920599, 11197764, 18118363, 29316127, 47434490, 76750617 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f.: x*(1 - x + x^2 - x^3 - x^5)/((1 - x)*(1 - x + x^2)*(1 - x - x^2)*(1 + x + x^2)).
a(n) = 2*a(n-1) - a(n-2) + a(n-3) - a(n-4) + a(n-5) - a(n-7) for n >= 8.
a(n) = ceiling(3*Fibonacci(n)/4).
EXAMPLE
For n=8, (3/4)*Fibonacci(8) = (3/4)*21 = 15.75 hence a(8) = 16.
MATHEMATICA
z = 120; r = 3/4; f[n_] := Fibonacci[n];
Table[Floor[r*f[n]], {n, 1, z}]; (* A293631 *)
Table[Ceiling[r*f[n]], {n, 1, z}]; (* A293632 *)
Table[Round[r*f[n]], {n, 1, z}]; (* A293633 *)
LinearRecurrence[{2, -1, 1, -1, 1, 0, -1}, {1, 1, 2, 3, 4, 6, 10}, 40] (* Bruno Berselli, Feb 16 2018 *)
PROG
(PARI) a(n) = ceil(3*fibonacci(n)/4); \\ Andrew Howroyd, Feb 12 2018
CROSSREFS
Sequence in context: A346075 A352946 A342759 * A216783 A026502 A060163
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 14 2017
EXTENSIONS
Offset changed by Clark Kimberling, Feb 12 2018
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 August 6 10:20 EDT 2024. Contains 374969 sequences. (Running on oeis4.)