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!)
A293552 a(n) is the least integer k such that k/Fibonacci(n) > 1/4. 2
0, 1, 1, 1, 1, 2, 2, 4, 6, 9, 14, 23, 36, 59, 95, 153, 247, 400, 646, 1046, 1692, 2737, 4428, 7165, 11592, 18757, 30349, 49105, 79453, 128558, 208010, 336568, 544578, 881145, 1425722, 2306867, 3732588, 6039455, 9772043, 15811497, 25583539, 41395036, 66978574 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
G.f.: -((x (-1 + x^2 + x^3 + x^5 + x^6))/((-1 + x) (1 + x) (1 - x + x^2) (-1 + x + x^2) (1 + x + x^2))).
a(n) = a(n-1) + a(n-2) + a(n-6) - a(n-7) - a(n-8) for n >= 9.
a(n) = ceiling(Fibonacci(n)/4).
a(n) = A004697(n) + 1 for n > 0.
MATHEMATICA
z = 120; r = 1/4; f[n_] := Fibonacci[n];
Table[Floor[r*f[n]], {n, 0, z}]; (* A004697 *)
Table[Ceiling[r*f[n]], {n, 0, z}]; (* A293552 *)
Table[Round[r*f[n]], {n, 0, z}]; (* A293553 *)
CROSSREFS
Sequence in context: A018139 A293640 A025049 * A293546 A366910 A052012
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 14 2017
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)