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 A192148 #6 Oct 21 2019 14:47:46 %S A192148 0,1,3,7,13,15,37,55,61,63,175,229,247,253,255,295,781,943,997,1015, %T A192148 1021,1023,1909,3367,3853,4015,4069,4087,4093,4095,6487,9823,14197, %U A192148 15655,16141,16303,16357,16375,16381,16383,45853,58975,63349,64807,65293,65455 %N A192148 Monotonic ordering of nonnegative differences 4^i-3^j, for 40>=i>=0, j>=0. %t A192148 c = 4; d = 3; t[i_, j_] := c^i - d^j; %t A192148 u = Table[t[i, j], {i, 0, 40}, {j, 0, i*Log[d, c]}]; %t A192148 v = Union[Flatten[u ]] %Y A192148 Cf. A192147. %K A192148 nonn %O A192148 1,3 %A A192148 _Clark Kimberling_, Jun 24 2011