This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A355515 #7 Jul 05 2022 10:34:41 %S A355515 2,5,18,31,137,928,1719,42047,82375,287453,779984,1272515,1765046, %T A355515 2257577,2750108,3242639,3735170,4227701,4720232,5212763,5705294, %U A355515 6197825,6690356,7182887,7675418,8167949,8660480,9153011,9645542,10138073,10630604,11123135,11615666,12108197 %N A355515 Sum of numerator and denominator in a rational approximation j/k of q = log(2)/log(3), such that j/k - q is a new minimum, i.e., q is approximated from above. %o A355515 (PARI) a355515(upto) = {my(q=log(2)/log(3), dmin=oo); for (m=1, upto, my(n=ceil(m*q), qq=n/m, d=qq-q); if (d<dmin, print1(n+m,", "); dmin=d))}; %o A355515 \\ needs increased precision for larger terms %o A355515 a355515(10^7) %Y A355515 Cf. A102525, A355512, A355513, A355514. %K A355515 nonn %O A355515 1,1 %A A355515 _Hugo Pfoertner_, Jul 05 2022