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

A192165
Monotonic ordering of nonnegative differences 4^i-7^j, for 40>= i>=0, j>=0.
3
0, 3, 9, 15, 57, 63, 207, 249, 255, 681, 975, 1017, 1023, 1695, 3753, 4047, 4089, 4095, 13983, 16041, 16335, 16377, 16383, 48729, 63135, 65193, 65487, 65529, 65535, 144495, 225033, 245337, 259743, 261801, 262095, 262137, 262143, 930927, 1031769, 1046175
OFFSET
1,2
MATHEMATICA
c = 4; d = 7; 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. A192166.
Sequence in context: A247967 A062804 A110960 * A050869 A323679 A038547
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved