[go: up one dir, main page]

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

A192166
Monotonic ordering of nonnegative differences 7^i-4^j, for 40>=i>=0, j>=0.
3
0, 3, 6, 33, 45, 48, 87, 279, 327, 339, 342, 423, 1377, 2145, 2337, 2385, 2397, 2400, 12711, 15783, 16551, 16743, 16791, 16803, 16806, 52113, 101265, 113553, 116625, 117393, 117585, 117633, 117645, 117648, 561399, 758007, 807159, 819447, 822519, 823287
OFFSET
1,2
MATHEMATICA
c = 7; 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. A192165.
Sequence in context: A133665 A124178 A284633 * A297444 A184508 A101142
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved