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 A355514 #7 Jul 05 2022 10:34:55 %S A355514 1,3,8,13,44,75,106,243,380,517,654,791,2510,4229,5948,7667,9386, %T A355514 11105,12824,14543,16262,17981,19700,21419,23138,24857,26576,28295, %U A355514 30014,31733,33452,35171,36890,38609,40328,122703,205078,492531,27869189,166722603,305576017 %N A355514 Sum of numerator and denominator in a rational approximation j/k of q = log(2)/log(3), such that q - j/k is a new minimum, i.e., q is approximated from below. %o A355514 (PARI) a355514(upto) = {my(q=log(2)/log(3), dmin=oo);for (m=1, upto, my(n=floor(m*q), qq=n/m, d=q-qq); if (d<dmin, print1(n+m,", "); dmin=d))}; %o A355514 \\ needs increased precision for larger terms %o A355514 a355514(10^7) %Y A355514 Cf. A102525, A355512, A355513, A355515. %Y A355514 Terms are candidates for being in A355240, which shares 3, 8, 13, 44, 75. %K A355514 nonn %O A355514 1,2 %A A355514 _Hugo Pfoertner_, Jul 05 2022