OFFSET
1,1
COMMENTS
log(3)/log(2) = 1.5849625... (see A020857) is an irrational number. The fractions (2/1, 3/2, 5/3, 8/5, 11/7, 19/12, 46/29, 65/41, 84/53, 317/200, 401/253, 485/306, 569/359, 1054/665, ...) are a sequence of approximations to log(3)/log(2), where each is an improvement on its predecessors.
PROG
(Maxima) x:bfloat(log(3)/log(2)), fpprec:100, errold:2, for denominator:1 thru 10000 do (numerator:round(x*denominator), errnew:abs(x-numerator/denominator), if errnew < errold then (errold:errnew, print(numerator)));
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
K. G. Stier, Jan 29 2015
STATUS
approved