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

A192169
Monotonic ordering of nonnegative differences 4^i-9^j, for 40>= i>=0, j>=0.
3
0, 3, 7, 15, 55, 63, 175, 247, 255, 295, 943, 1015, 1023, 3367, 4015, 4087, 4095, 6487, 9823, 15655, 16303, 16375, 16383, 58975, 64807, 65455, 65527, 65535, 203095, 255583, 261415, 262063, 262135, 262143, 517135, 989527, 1042015, 1047847, 1048495, 1048567
OFFSET
1,2
MATHEMATICA
c = 4; d = 9; 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. A192170.
Sequence in context: A080567 A276969 A146448 * A290470 A268061 A298358
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 24 2011
STATUS
approved