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

A192152
Monotonic ordering of nonnegative differences 6^i-3^j, for 40>= i>=0, j>=0.
3
0, 3, 5, 9, 27, 33, 35, 135, 189, 207, 213, 215, 567, 1053, 1215, 1269, 1287, 1293, 1295, 5589, 7047, 7533, 7695, 7749, 7767, 7773, 7775, 26973, 40095, 44469, 45927, 46413, 46575, 46629, 46647, 46653, 46655, 85293, 102789, 220887, 260253, 273375, 277749
OFFSET
1,2
MATHEMATICA
c = 6; d = 3; 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. A192151.
Sequence in context: A171877 A339068 A004044 * A217098 A262314 A338604
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved