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

A192113
Monotonic ordering of nonnegative differences 4^i-2^j, for 40>=i>=0, j>=0.
2
0, 2, 3, 8, 12, 14, 15, 32, 48, 56, 60, 62, 63, 128, 192, 224, 240, 248, 252, 254, 255, 512, 768, 896, 960, 992, 1008, 1016, 1020, 1022, 1023, 2048, 3072, 3584, 3840, 3968, 4032, 4064, 4080, 4088, 4092, 4094, 4095, 8192, 12288, 14336, 15360, 15872, 16128
OFFSET
1,2
MATHEMATICA
c = 4; d = 2; 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. A192112.
Sequence in context: A042583 A128839 A368357 * A243192 A164817 A002958
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 23 2011
STATUS
approved