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

A192202
Monotonic ordering of nonnegative differences 10^i-5^j, for 40>= i>=0, j>=0.
3
0, 5, 9, 75, 95, 99, 375, 875, 975, 995, 999, 6875, 9375, 9875, 9975, 9995, 9999, 21875, 84375, 96875, 99375, 99875, 99975, 99995, 99999, 234375, 609375, 921875, 984375, 996875, 999375, 999875, 999975, 999995, 999999, 8046875, 9609375, 9921875, 9984375
OFFSET
1,2
MATHEMATICA
c = 10; 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. A192201.
Sequence in context: A304538 A306123 A365580 * A249937 A344081 A171812
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 25 2011
STATUS
approved