A293929 Smallest number in base 10 that cannot be collapsed to a single digit using fewer than n plus signs.
0, 10, 19, 118, 3187, 3014173, 3003344034004
Offset: 0
Examples
For n=3, the a(3)=118 solution reflects the fact that 1+18 = 19, 1+9 = 10 and 1+0 = 1. Alternatively, 1+1+8 = 10 and 1+0 = 1. Three plus signs are required in both cases. For a(4)=3187, one plus sign is required to obtain 31+87 = 118 = a(3).
Links
- S. Butler, R. Graham and R. Stong, Inserting Plus Signs and Adding, The American Mathematical Monthly, 123(3), March 2016, 274-279.
- Simon Demers, Minimum number of plus signs needed to collapse every integer 1..10^7-1=9999999. Calculated using brute-force approach. Starting with i=1 and sequentially for each subsequent integer with d digits, all 2^(d-1)-1 possibilities to insert plus signs are considered in the first application. Then, lookup the minimum number of plus signs required to collapse each resulting integer after the first addition is performed. This dataset confirms a(1)=10, a(2)=19, a(3)=118, a(4)=3187, a(5)=3014173.
- Simon Demers, The smallest number that cannot be collapsed using fewer than 6 plus signs is 3003344034004, Amer. Math. Monthly, 126 (April 2019) 351.
Formula
a(n) <= ((a(n-1)-1)^2)/3 + a(n-2) for n > 1 (conjectured). This would provide a relatively tight upper bound on a(n). If the Demers-Stauduhar conjecture in the Comments turns out to be true, this upper bound will always be an integer. - Simon Demers, Nov 29 2017
Extensions
a(6) (found by Simon Demers) added by Stan Wagon, May 02 2019
Comments