%I #52 Sep 30 2019 01:24:10
%S 1000,2000,3000,4000,5000,6000,7000,8000,9000,10000,11000,12000,13000,
%T 14000,15000,16000,17000,18000,19000,20000,21000,22000,23000,24000,
%U 25000,26000,27000,28000,29000,30000,31000,32000,33000,34000,35000
%N Integers that can be generated with a C/C++ expression that is shorter than their decimal representation.
%C From _Dmitry Kamenetsky_, Jul 24 2015: (Start)
%C By "expression" we mean a string representing a piece of code in C/C++ that evaluates to a positive integer, where we assume for simplicity that the result is converted to an integer using the floor operation. An expression can use the binary operators available in those languages and the digits '0' to '9', and we also allow "AeB" for A*10^B.
%C For example: "A+B" evaluates to A plus B, "A*B" evaluates to A multiplied by B, "A/B" is floor(A/B), "A<<B" is A*2^B.
%C This sequence lists every integer n having an expression whose length is strictly less than the decimal length of n; of course every integer n has an expression whose length is the same as the decimal length of n, namely "n". In some sense the numbers in this sequence can be considered simple, since they have a low Kolmogorov complexity.
%C We assume that there are no rounding errors or integer overflow during the evaluation of the expression.(End)
%H Dmitry Kamenetsky, <a href="/A168650/b168650.txt">Table of n, a(n) for n = 1..14238</a>
%H Dmitry Kamenetsky, <a href="/A168650/a168650.png">Plot showing the length of the shortest C/C++ expression that generates integers from 1 to 2000000.</a>
%H Ed Pegg, Jr., <a href="http://www.mathpuzzle.com/MAA/17-Integer%20Complexity/mathgames_04_12_04.html">Integer Complexity</a>, 2004.
%H L. Staiger, <a href="http://dx.doi.org/10.1016/S0304-3975(01)00102-5">The Kolmogorov complexity of real numbers</a>, Theoretical Computer Science, pp. 455-466, 2002.
%H E. Weisstein, <a href="http://mathworld.wolfram.com/IntegerComplexity.html">Integer Complexity</a>
%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Kolmogorov_complexity">Kolmogorov Complexity</a>
%H <a href="/index/Com#complexity">Index to sequences related to the complexity of n</a>
%e 1000 has 4 digits, but it can be generated with a 3-digit expression "1e3". The integers 43000, 116666, 114688, 199997 are also in the sequence, since they can be generated using the expressions "43e3", "7e5/6", "7<<14", "2e5-3" respectively.
%Y Cf. A005245, A117607, A118121, A168651, A168652.
%K nonn,base
%O 1,1
%A _Dmitry Kamenetsky_, Dec 01 2009
%E Name clarified by _Dmitry Kamenetsky_, Jul 24 2015