login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A192147
Monotonic ordering of nonnegative differences 3^i-4^j, for 40>= i>=0, j>=0.
3
0, 2, 5, 8, 11, 17, 23, 26, 65, 77, 80, 179, 227, 239, 242, 473, 665, 713, 725, 728, 1163, 1931, 2123, 2171, 2183, 2186, 2465, 3299, 5537, 6305, 6497, 6545, 6557, 6560, 15587, 18659, 19427, 19619, 19667, 19679, 19682, 42665, 54953, 58025, 58793, 58985, 59033
OFFSET
1,2
EXAMPLE
The differences accrue like this:
1-1
3-1
9-4.....9-1
27-16...27-4....27-1
81-64...81-16...81-4...81-1
MATHEMATICA
c = 3; d = 4; t[i_, j_] := c^i - d^j;
u = Table[t[i, j], {i, 0, 40}, {j, 0, i*Log[d, c]}];
v = Union[Flatten[u ]]
CROSSREFS
Cf. A192148.
Sequence in context: A352143 A365808 A344719 * A226817 A154484 A129300
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved