OFFSET
1,2
COMMENTS
The weight wt(x) of a rational number x is defined to be the sum of the partial quotients in the continued fraction expansion of x. For example, 5/14 = [0,2,1,4], so wt(5/14) = 7. Here a(n) is the minimum, over all m, 1<=m<n, of wt(m/n).
It is conjectured by Kravitz and Sah that a(n) = O(log n).
LINKS
N. Kravitz and A. Sah, Linear extension numbers of n-element posets, Order 38 (2021), 49-66.
M. Shrader-Frechette, Modified Farey sequences and continued fractions, Math. Magazine 54 (1991), 60-63.
EXAMPLE
For n = 23, we have a(23) = 8 because 5/23 = [0,4,1,1,2] with weight 8, and this is the smallest over all fractions m/23 with 1<=m<23.
PROG
(PARI) a(n)=if(n==1, return(1)); my(r=oo, t); for(m=1, n-1, t=vecsum(contfrac(m/n)); if(t<r, r=t)); r \\ Charles R Greathouse IV, Dec 01 2024
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Jeffrey Shallit, Dec 01 2024
STATUS
approved