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

A192193
Monotonic ordering of nonnegative differences 5^i-6^j, for 40>= i>=0, j>=0.
3
0, 4, 19, 24, 89, 119, 124, 409, 589, 619, 624, 1829, 2909, 3089, 3119, 3124, 7849, 14329, 15409, 15589, 15619, 15624, 31469, 70349, 76829, 77909, 78089, 78119, 78124, 110689, 273509, 343969, 382849, 389329, 390409, 390589, 390619, 390624, 1673189, 1906469
OFFSET
1,2
MATHEMATICA
c = 5; 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. A192194.
Sequence in context: A116980 A296602 A022135 * A028564 A282506 A047715
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 25 2011
STATUS
approved