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

A192160
Monotonic ordering of nonnegative differences 10^i-3^j, for 40>=i>=0, j>=0.
3
0, 1, 7, 9, 19, 73, 91, 97, 99, 271, 757, 919, 973, 991, 997, 999, 3439, 7813, 9271, 9757, 9919, 9973, 9991, 9997, 9999, 40951, 80317, 93439, 97813, 99271, 99757, 99919, 99973, 99991, 99997, 99999, 468559, 822853, 940951, 980317, 993439, 997813, 999271
OFFSET
1,3
MATHEMATICA
c = 10; 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. A192159.
Sequence in context: A046257 A074343 A103853 * A139202 A243996 A125968
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved