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”).

A192155
Monotonic ordering of nonnegative differences 3^i-8^j, for 40>= i>=0, j>=0.
3
0, 1, 2, 8, 17, 19, 26, 73, 80, 179, 217, 235, 242, 665, 721, 728, 1675, 2123, 2179, 2186, 2465, 6049, 6497, 6553, 6560, 15587, 19171, 19619, 19675, 19682, 26281, 54953, 58537, 58985, 59041, 59048, 144379, 173051, 176635, 177083, 177139, 177146, 269297
OFFSET
1,3
MATHEMATICA
c = 3; d = 8; 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. A192156.
Sequence in context: A279243 A162218 A103086 * A131362 A370854 A284395
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved