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

A192201
Monotonic ordering of nonnegative differences 5^i-10^j, for 40>= i>=0, j>=0.
3
0, 4, 15, 24, 25, 115, 124, 525, 615, 624, 2125, 3025, 3115, 3124, 5625, 14625, 15525, 15615, 15624, 68125, 77125, 78025, 78115, 78124, 290625, 380625, 389625, 390525, 390615, 390624, 953125, 1853125, 1943125, 1952125, 1953025, 1953115, 1953124, 8765625
OFFSET
1,2
MATHEMATICA
c = 5; d = 10; 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. A192202.
Sequence in context: A167293 A376693 A267769 * A054308 A051531 A062835
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 25 2011
STATUS
approved