The complexity
of an integer
is the least number of 1s needed to represent it using only additions,
multiplications, and parentheses.
For example, the numbers 1 through 10 can be minimally represented as
(1)
(2)
(3)
(4)
(5)
(6)
(7)
(8)
(9)
(10)
(11)
(12)
(13)
so the complexities for , 2, ..., are 1, 2, 3, 4, 5, 5, 6, 6, 6, 7, 8, 7, 8, ...
(OEIS A005245).
The smallest numbers of complexity , 2, ... are 1, 2, 3, 4, 5, 7, 10, 11, 17, 22, 23, 41, ...
(OEIS A005520).