Shortest addition chain
Starting from 1, build an increasing sequence where each new value sums two earlier values, reaching the target in as few steps as possible.
Instancetarget = 125
ObjectiveMinimize steps
Requirements
Challenge this record ↗- The chain starts at 1 and strictly increases
- Each value sums two earlier entries
- The final value equals the target