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

A192114
Monotonic ordering of nonnegative differences 2^i-5^j, for 40>=i>=0, j>=0.
3
0, 1, 3, 7, 11, 15, 27, 31, 39, 59, 63, 103, 123, 127, 131, 231, 251, 255, 387, 399, 487, 507, 511, 759, 899, 971, 999, 1019, 1023, 1423, 1923, 2023, 2043, 2047, 3471, 3971, 4071, 4091, 4095, 5067, 7567, 8067, 8167, 8187, 8191, 13259, 15759, 16259, 16359
OFFSET
1,3
MATHEMATICA
c = 2; d = 5; 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. A192115.
Sequence in context: A182634 A365142 A173530 * A145052 A100900 A117829
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 23 2011
STATUS
approved