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 A192147 #7 Oct 21 2019 14:45:36 %S A192147 0,2,5,8,11,17,23,26,65,77,80,179,227,239,242,473,665,713,725,728, %T A192147 1163,1931,2123,2171,2183,2186,2465,3299,5537,6305,6497,6545,6557, %U A192147 6560,15587,18659,19427,19619,19667,19679,19682,42665,54953,58025,58793,58985,59033 %N A192147 Monotonic ordering of nonnegative differences 3^i-4^j, for 40>= i>=0, j>=0. %e A192147 The differences accrue like this: %e A192147 1-1 %e A192147 3-1 %e A192147 9-4.....9-1 %e A192147 27-16...27-4....27-1 %e A192147 81-64...81-16...81-4...81-1 %t A192147 c = 3; d = 4; t[i_, j_] := c^i - d^j; %t A192147 u = Table[t[i, j], {i, 0, 40}, {j, 0, i*Log[d, c]}]; %t A192147 v = Union[Flatten[u ]] %Y A192147 Cf. A192148. %K A192147 nonn %O A192147 1,2 %A A192147 _Clark Kimberling_, Jun 24 2011