cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A192167 Monotonic ordering of nonnegative differences 4^i-8^j, for 40>= i>=0, j>=0.

This page as a plain text file.
%I A192167 #6 Oct 21 2019 15:00:13
%S A192167 0,3,8,15,56,63,192,248,255,512,960,1016,1023,3584,4032,4088,4095,
%T A192167 12288,15872,16320,16376,16383,32768,61440,65024,65472,65528,65535,
%U A192167 229376,258048,261632,262080,262136,262143,786432,1015808,1044480,1048064,1048512,1048568
%N A192167 Monotonic ordering of nonnegative differences 4^i-8^j, for 40>= i>=0, j>=0.
%t A192167 c = 4; d = 8; t[i_, j_] := c^i - d^j;
%t A192167 u = Table[t[i, j], {i, 0, 40}, {j, 0, i*Log[d, c]}];
%t A192167 v = Union[Flatten[u ]]
%Y A192167 Cf. A192168.
%K A192167 nonn
%O A192167 1,2
%A A192167 _Clark Kimberling_, Jun 24 2011