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!)
A024851 Least m such that if r and s in {-F(2*h) + tau*F(2*h-1): h = 1,2,...,n} satisfy r < s, then r < k/m < s for some integer k, where F = A000045 (Fibonacci numbers) and tau = (1+sqrt(5))/2 (golden ratio). 3
2, 5, 12, 30, 77, 200, 522, 1365, 3572, 9350, 24477, 64080, 167762, 439205, 1149852, 3010350, 7881197, 20633240 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Possibly a duplicate of A188378. For a guide to related sequences, see A001000. - Clark Kimberling, Aug 09 2012
LINKS
EXAMPLE
Referring to the terminology introduced at A001000, m=5 is the (1st) separator of the set S = {f(1),f(2),f(3)}, where f(h) = - F(2*h) + tau*F(2*h-1). That is, a(3) = 5, since 1/5 < f(3) < 2/5 < f(2) < 3/5 < f(1), whereas fractions k/m for m<5 do not separate the elements of S in this manner.
MATHEMATICA
f[n_] := f[n] = -Fibonacci[2 n] + GoldenRatio*Fibonacci[2 n - 1]
leastSeparator[seq_] := Module[{n = 1},
Table[While[Or @@ (Ceiling[n #1[[1]]] <
2 + Floor[n #1[[2]]] &) /@ (Sort[#1, Greater] &) /@
Partition[Take[seq, k], 2, 1], n++]; n, {k, 2, Length[seq]}]];
t = Table[N[f[h], 40], {h, 1, 18}] (* A024851 *)
t1 = leastSeparator[t]
(* Peter J. C. Moses, Aug 01 2012 *)
CROSSREFS
Cf. A001000.
Sequence in context: A026938 A086622 A253831 * A188378 A145267 A103287
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
Extended, corrected, and edited by Clark Kimberling, Aug 09 2012
a(19) from Sean A. Irvine, Jul 26 2019
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 16:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)