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

A192162
Monotonic ordering of nonnegative differences 5^i-4^j, for 40>= i>=0, j>=0.
3
0, 1, 4, 9, 21, 24, 61, 109, 121, 124, 369, 561, 609, 621, 624, 2101, 2869, 3061, 3109, 3121, 3124, 11529, 12589, 14601, 15369, 15561, 15609, 15621, 15624, 61741, 74029, 77101, 77869, 78061, 78109, 78121, 78124, 128481, 325089, 374241, 386529, 389601, 390369
OFFSET
1,3
MATHEMATICA
c = 5; d = 4; 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. A192161.
Sequence in context: A197869 A276319 A038805 * A251545 A228642 A334261
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved