A141494 a(n) is the "highest smallest" positive integer that cannot be obtained from the (n-1) optimized integers (to be defined for each n) using each number at most once and the three operators +, -, *.
1, 2, 5, 18, 70, 406
Offset: 1
Examples
a(4)=18 because every integer can be calculated up to 17, using the optimal numbers {2,3,10}. a(5)=70 because every integer can be calculated up to 69, using one of the two (!) optimal sequences {2,3,4,27} or {2,3,10,41}. a(6)=406 because every integer can be calculated up to 405, using the optimal numbers {2,3,4,84,111}.
Comments