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

A192116
Monotonic ordering of nonnegative differences 2^i-6^j, for 40>=i>=0, j>=0.
3
0, 1, 2, 3, 7, 10, 15, 26, 28, 31, 40, 58, 63, 92, 122, 127, 220, 250, 255, 296, 416, 476, 506, 511, 752, 808, 988, 1018, 1023, 1832, 2012, 2042, 2047, 2800, 3880, 4060, 4090, 4095, 6896, 7976, 8156, 8186, 8191, 8608, 15088, 16168, 16348, 16378, 16383, 18880
OFFSET
1,3
MATHEMATICA
c = 2; d = 6; 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. A192117.
Sequence in context: A344232 A370639 A361859 * A088163 A048448 A240302
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 23 2011
STATUS
approved