Kakuro sum combinations
The reference table mapping each (cell-count, target-sum) pair to its valid digit combinations. The foundational lookup that anchors most kakuro deduction.
The kakuro sum-combinations table is the foundational reference for kakuro solving. For every possible combination of (number of cells in a run, target sum), the table lists the valid digit sets that can produce that sum without repeating a digit. A 2-cell run with target 3 has only one valid combination: {1, 2}. A 3-cell run with target 6 has only {1, 2, 3}. A 3-cell run with target 12 has several: {1, 2, 9}, {1, 3, 8}, {1, 4, 7}, {1, 5, 6}, {2, 3, 7}, {2, 4, 6}, {3, 4, 5}.
For every (cell-count, target-sum) pair, the valid digit combinations. Sums with exactly one combination — the unique sums — are highlighted in coral; those are the entries most worth memorising.
2 cells
| Sum | Combinations |
|---|---|
| 3 | 1+2 |
| 4 | 1+3 |
| 5 | 1+4, 2+3 |
| 6 | 1+5, 2+4 |
| 7 | 1+6, 2+5, 3+4 |
| 8 | 1+7, 2+6, 3+5 |
| 9 | 1+8, 2+7, 3+6, 4+5 |
| 10 | 1+9, 2+8, 3+7, 4+6 |
| 11 | 2+9, 3+8, 4+7, 5+6 |
| 12 | 3+9, 4+8, 5+7 |
| 13 | 4+9, 5+8, 6+7 |
| 14 | 5+9, 6+8 |
| 15 | 6+9, 7+8 |
| 16 | 7+9 |
| 17 | 8+9 |
3 cells
| Sum | Combinations |
|---|---|
| 6 | 1+2+3 |
| 7 | 1+2+4 |
| 8 | 1+2+5, 1+3+4 |
| 9 | 1+2+6, 1+3+5, 2+3+4 |
| 10 | 1+2+7, 1+3+6, 1+4+5, 2+3+5 |
| 11 | 1+2+8, 1+3+7, 1+4+6, 2+3+6, 2+4+5 |
| 12 | 1+2+9, 1+3+8, 1+4+7, 1+5+6, 2+3+7, 2+4+6, 3+4+5 |
| 13 | 1+3+9, 1+4+8, 1+5+7, 2+3+8, 2+4+7, 2+5+6, 3+4+6 |
| 14 | 1+4+9, 1+5+8, 1+6+7, 2+3+9, 2+4+8, 2+5+7, 3+4+7, 3+5+6 |
| 15 | 1+5+9, 1+6+8, 2+4+9, 2+5+8, 2+6+7, 3+4+8, 3+5+7, 4+5+6 |
| 16 | 1+6+9, 1+7+8, 2+5+9, 2+6+8, 3+4+9, 3+5+8, 3+6+7, 4+5+7 |
| 17 | 1+7+9, 2+6+9, 2+7+8, 3+5+9, 3+6+8, 4+5+8, 4+6+7 |
| 18 | 1+8+9, 2+7+9, 3+6+9, 3+7+8, 4+5+9, 4+6+8, 5+6+7 |
| 19 | 2+8+9, 3+7+9, 4+6+9, 4+7+8, 5+6+8 |
| 20 | 3+8+9, 4+7+9, 5+6+9, 5+7+8 |
| 21 | 4+8+9, 5+7+9, 6+7+8 |
| 22 | 5+8+9, 6+7+9 |
| 23 | 6+8+9 |
| 24 | 7+8+9 |
4 cells
| Sum | Combinations |
|---|---|
| 10 | 1+2+3+4 |
| 11 | 1+2+3+5 |
| 12 | 1+2+3+6, 1+2+4+5 |
| 13 | 1+2+3+7, 1+2+4+6, 1+3+4+5 |
| 14 | 1+2+3+8, 1+2+4+7, 1+2+5+6, 1+3+4+6, 2+3+4+5 |
| 15 | 1+2+3+9, 1+2+4+8, 1+2+5+7, 1+3+4+7, 1+3+5+6, 2+3+4+6 |
| 16 | 1+2+4+9, 1+2+5+8, 1+2+6+7, 1+3+4+8, 1+3+5+7, 1+4+5+6, 2+3+4+7, 2+3+5+6 |
| 17 | 1+2+5+9, 1+2+6+8, 1+3+4+9, 1+3+5+8, 1+3+6+7, 1+4+5+7, 2+3+4+8, 2+3+5+7, 2+4+5+6 |
| 18 | 1+2+6+9, 1+2+7+8, 1+3+5+9, 1+3+6+8, 1+4+5+8, 1+4+6+7, 2+3+4+9, 2+3+5+8, 2+3+6+7, 2+4+5+7, 3+4+5+6 |
| 19 | 1+2+7+9, 1+3+6+9, 1+3+7+8, 1+4+5+9, 1+4+6+8, 1+5+6+7, 2+3+5+9, 2+3+6+8, 2+4+5+8, 2+4+6+7, 3+4+5+7 |
| 20 | 1+2+8+9, 1+3+7+9, 1+4+6+9, 1+4+7+8, 1+5+6+8, 2+3+6+9, 2+3+7+8, 2+4+5+9, 2+4+6+8, 2+5+6+7, 3+4+5+8, 3+4+6+7 |
| 21 | 1+3+8+9, 1+4+7+9, 1+5+6+9, 1+5+7+8, 2+3+7+9, 2+4+6+9, 2+4+7+8, 2+5+6+8, 3+4+5+9, 3+4+6+8, 3+5+6+7 |
| 22 | 1+4+8+9, 1+5+7+9, 1+6+7+8, 2+3+8+9, 2+4+7+9, 2+5+6+9, 2+5+7+8, 3+4+6+9, 3+4+7+8, 3+5+6+8, 4+5+6+7 |
| 23 | 1+5+8+9, 1+6+7+9, 2+4+8+9, 2+5+7+9, 2+6+7+8, 3+4+7+9, 3+5+6+9, 3+5+7+8, 4+5+6+8 |
| 24 | 1+6+8+9, 2+5+8+9, 2+6+7+9, 3+4+8+9, 3+5+7+9, 3+6+7+8, 4+5+6+9, 4+5+7+8 |
| 25 | 1+7+8+9, 2+6+8+9, 3+5+8+9, 3+6+7+9, 4+5+7+9, 4+6+7+8 |
| 26 | 2+7+8+9, 3+6+8+9, 4+5+8+9, 4+6+7+9, 5+6+7+8 |
| 27 | 3+7+8+9, 4+6+8+9, 5+6+7+9 |
| 28 | 4+7+8+9, 5+6+8+9 |
| 29 | 5+7+8+9 |
| 30 | 6+7+8+9 |
5 cells
| Sum | Combinations |
|---|---|
| 15 | 1+2+3+4+5 |
| 16 | 1+2+3+4+6 |
| 17 | 1+2+3+4+7, 1+2+3+5+6 |
| 18 | 1+2+3+4+8, 1+2+3+5+7, 1+2+4+5+6 |
| 19 | 1+2+3+4+9, 1+2+3+5+8, 1+2+3+6+7, 1+2+4+5+7, 1+3+4+5+6 |
| 20 | 1+2+3+5+9, 1+2+3+6+8, 1+2+4+5+8, 1+2+4+6+7, 1+3+4+5+7, 2+3+4+5+6 |
| 21 | 1+2+3+6+9, 1+2+3+7+8, 1+2+4+5+9, 1+2+4+6+8, 1+2+5+6+7, 1+3+4+5+8, 1+3+4+6+7, 2+3+4+5+7 |
| 22 | 1+2+3+7+9, 1+2+4+6+9, 1+2+4+7+8, 1+2+5+6+8, 1+3+4+5+9, 1+3+4+6+8, 1+3+5+6+7, 2+3+4+5+8, 2+3+4+6+7 |
| 23 | 1+2+3+8+9, 1+2+4+7+9, 1+2+5+6+9, 1+2+5+7+8, 1+3+4+6+9, 1+3+4+7+8, 1+3+5+6+8, 1+4+5+6+7, 2+3+4+5+9, 2+3+4+6+8, 2+3+5+6+7 |
| 24 | 1+2+4+8+9, 1+2+5+7+9, 1+2+6+7+8, 1+3+4+7+9, 1+3+5+6+9, 1+3+5+7+8, 1+4+5+6+8, 2+3+4+6+9, 2+3+4+7+8, 2+3+5+6+8, 2+4+5+6+7 |
| 25 | 1+2+5+8+9, 1+2+6+7+9, 1+3+4+8+9, 1+3+5+7+9, 1+3+6+7+8, 1+4+5+6+9, 1+4+5+7+8, 2+3+4+7+9, 2+3+5+6+9, 2+3+5+7+8, 2+4+5+6+8, 3+4+5+6+7 |
| 26 | 1+2+6+8+9, 1+3+5+8+9, 1+3+6+7+9, 1+4+5+7+9, 1+4+6+7+8, 2+3+4+8+9, 2+3+5+7+9, 2+3+6+7+8, 2+4+5+6+9, 2+4+5+7+8, 3+4+5+6+8 |
| 27 | 1+2+7+8+9, 1+3+6+8+9, 1+4+5+8+9, 1+4+6+7+9, 1+5+6+7+8, 2+3+5+8+9, 2+3+6+7+9, 2+4+5+7+9, 2+4+6+7+8, 3+4+5+6+9, 3+4+5+7+8 |
| 28 | 1+3+7+8+9, 1+4+6+8+9, 1+5+6+7+9, 2+3+6+8+9, 2+4+5+8+9, 2+4+6+7+9, 2+5+6+7+8, 3+4+5+7+9, 3+4+6+7+8 |
| 29 | 1+4+7+8+9, 1+5+6+8+9, 2+3+7+8+9, 2+4+6+8+9, 2+5+6+7+9, 3+4+5+8+9, 3+4+6+7+9, 3+5+6+7+8 |
| 30 | 1+5+7+8+9, 2+4+7+8+9, 2+5+6+8+9, 3+4+6+8+9, 3+5+6+7+9, 4+5+6+7+8 |
| 31 | 1+6+7+8+9, 2+5+7+8+9, 3+4+7+8+9, 3+5+6+8+9, 4+5+6+7+9 |
| 32 | 2+6+7+8+9, 3+5+7+8+9, 4+5+6+8+9 |
| 33 | 3+6+7+8+9, 4+5+7+8+9 |
| 34 | 4+6+7+8+9 |
| 35 | 5+6+7+8+9 |
6 cells
| Sum | Combinations |
|---|---|
| 21 | 1+2+3+4+5+6 |
| 22 | 1+2+3+4+5+7 |
| 23 | 1+2+3+4+5+8, 1+2+3+4+6+7 |
| 24 | 1+2+3+4+5+9, 1+2+3+4+6+8, 1+2+3+5+6+7 |
| 25 | 1+2+3+4+6+9, 1+2+3+4+7+8, 1+2+3+5+6+8, 1+2+4+5+6+7 |
| 26 | 1+2+3+4+7+9, 1+2+3+5+6+9, 1+2+3+5+7+8, 1+2+4+5+6+8, 1+3+4+5+6+7 |
| 27 | 1+2+3+4+8+9, 1+2+3+5+7+9, 1+2+3+6+7+8, 1+2+4+5+6+9, 1+2+4+5+7+8, 1+3+4+5+6+8, 2+3+4+5+6+7 |
| 28 | 1+2+3+5+8+9, 1+2+3+6+7+9, 1+2+4+5+7+9, 1+2+4+6+7+8, 1+3+4+5+6+9, 1+3+4+5+7+8, 2+3+4+5+6+8 |
| 29 | 1+2+3+6+8+9, 1+2+4+5+8+9, 1+2+4+6+7+9, 1+2+5+6+7+8, 1+3+4+5+7+9, 1+3+4+6+7+8, 2+3+4+5+6+9, 2+3+4+5+7+8 |
| 30 | 1+2+3+7+8+9, 1+2+4+6+8+9, 1+2+5+6+7+9, 1+3+4+5+8+9, 1+3+4+6+7+9, 1+3+5+6+7+8, 2+3+4+5+7+9, 2+3+4+6+7+8 |
| 31 | 1+2+4+7+8+9, 1+2+5+6+8+9, 1+3+4+6+8+9, 1+3+5+6+7+9, 1+4+5+6+7+8, 2+3+4+5+8+9, 2+3+4+6+7+9, 2+3+5+6+7+8 |
| 32 | 1+2+5+7+8+9, 1+3+4+7+8+9, 1+3+5+6+8+9, 1+4+5+6+7+9, 2+3+4+6+8+9, 2+3+5+6+7+9, 2+4+5+6+7+8 |
| 33 | 1+2+6+7+8+9, 1+3+5+7+8+9, 1+4+5+6+8+9, 2+3+4+7+8+9, 2+3+5+6+8+9, 2+4+5+6+7+9, 3+4+5+6+7+8 |
| 34 | 1+3+6+7+8+9, 1+4+5+7+8+9, 2+3+5+7+8+9, 2+4+5+6+8+9, 3+4+5+6+7+9 |
| 35 | 1+4+6+7+8+9, 2+3+6+7+8+9, 2+4+5+7+8+9, 3+4+5+6+8+9 |
| 36 | 1+5+6+7+8+9, 2+4+6+7+8+9, 3+4+5+7+8+9 |
| 37 | 2+5+6+7+8+9, 3+4+6+7+8+9 |
| 38 | 3+5+6+7+8+9 |
| 39 | 4+5+6+7+8+9 |
7 cells
| Sum | Combinations |
|---|---|
| 28 | 1+2+3+4+5+6+7 |
| 29 | 1+2+3+4+5+6+8 |
| 30 | 1+2+3+4+5+6+9, 1+2+3+4+5+7+8 |
| 31 | 1+2+3+4+5+7+9, 1+2+3+4+6+7+8 |
| 32 | 1+2+3+4+5+8+9, 1+2+3+4+6+7+9, 1+2+3+5+6+7+8 |
| 33 | 1+2+3+4+6+8+9, 1+2+3+5+6+7+9, 1+2+4+5+6+7+8 |
| 34 | 1+2+3+4+7+8+9, 1+2+3+5+6+8+9, 1+2+4+5+6+7+9, 1+3+4+5+6+7+8 |
| 35 | 1+2+3+5+7+8+9, 1+2+4+5+6+8+9, 1+3+4+5+6+7+9, 2+3+4+5+6+7+8 |
| 36 | 1+2+3+6+7+8+9, 1+2+4+5+7+8+9, 1+3+4+5+6+8+9, 2+3+4+5+6+7+9 |
| 37 | 1+2+4+6+7+8+9, 1+3+4+5+7+8+9, 2+3+4+5+6+8+9 |
| 38 | 1+2+5+6+7+8+9, 1+3+4+6+7+8+9, 2+3+4+5+7+8+9 |
| 39 | 1+3+5+6+7+8+9, 2+3+4+6+7+8+9 |
| 40 | 1+4+5+6+7+8+9, 2+3+5+6+7+8+9 |
| 41 | 2+4+5+6+7+8+9 |
| 42 | 3+4+5+6+7+8+9 |
8 cells
| Sum | Combinations |
|---|---|
| 36 | 1+2+3+4+5+6+7+8 |
| 37 | 1+2+3+4+5+6+7+9 |
| 38 | 1+2+3+4+5+6+8+9 |
| 39 | 1+2+3+4+5+7+8+9 |
| 40 | 1+2+3+4+6+7+8+9 |
| 41 | 1+2+3+5+6+7+8+9 |
| 42 | 1+2+4+5+6+7+8+9 |
| 43 | 1+3+4+5+6+7+8+9 |
| 44 | 2+3+4+5+6+7+8+9 |
9 cells
| Sum | Combinations |
|---|---|
| 45 | 1+2+3+4+5+6+7+8+9 |
How the table is used
A kakuro solver consults the table at every step. Looking at a run with a known cell count and target sum, the player asks: which digit combinations are valid? If only one combination exists — a unique sum — every cell in the run must be one of those specific digits, and the cross-reference with intersecting runs usually pins them to specific cells. If several combinations exist, the player narrows by combining the run's possibilities with the cells' other runs.
The table's structure makes certain (cell-count, target-sum) pairs especially valuable. Tight targets — sums close to the minimum or maximum — produce unique or near-unique combinations. The minimum sum for N cells is 1+2+...+N (the sum of the first N digits); the maximum is (10-N)+(11-N)+...+9. Sums right at those extremes are forced; sums in the middle of the range have many combinations.
The unique-sum entries are the ones to memorise
Most kakuro experts know the unique-sum entries by rote. They're the cases where the cell count and target sum together force exactly one digit set. Examples:
- 2 cells: sums 3 ({1, 2}), 4 ({1, 3}), 16 ({7, 9}), 17 ({8, 9}).
- 3 cells: sums 6 ({1, 2, 3}), 7 ({1, 2, 4}), 23 ({6, 8, 9}), 24 ({7, 8, 9}).
- 4 cells: sums 10 ({1, 2, 3, 4}), 11 ({1, 2, 3, 5}), 29 ({5, 7, 8, 9}), 30 ({6, 7, 8, 9}).
Higher cell counts have unique sums at the same kind of extremes. Most kakuros lean heavily on these unique-sum entries because they produce eliminations directly without needing further deduction.
The opposite extreme — sums with maximum flexibility
The middle-range targets — for example, 4 cells summing to 22 — have many valid combinations and contribute less directly. Solvers often skip these in early scans and revisit them after the unique-sum runs have placed enough digits to narrow them via cross-reference.
Why this is the centerpiece reference
Most kakuro techniques build on this table. Unique sum is its direct application; partial cage combinations' kakuro analogue tracks how the table's entries narrow as cells get filled. Even advanced moves like kakuro-pair and kakuro-triple use the table as the underlying combination source.
The widget at the top of this entry presents the full lookup. For day-to-day kakuro solving, internalising the unique-sum entries above gets you most of the way; the table is there for the runs that don't fall into the memorised set.
See also
- Unique sum— A kakuro run whose cell count and target sum together force exactly one valid digit combination — the most direct deductive move in the puzzle.
- Run (kakuro)— A horizontal or vertical sum-segment in a kakuro grid. The white cells from one clue cell to the next, which must sum to the clue's target without repeating a digit.
- Kakuro— A Japanese number-placement puzzle. Cross-sums act like a crossword grid; players fill white cells with digits 1–9 so each run sums to its target without repeating a digit.
- Kakuro pair— Two cells in a kakuro run sharing the same two-digit possible set. The two digits are confined to those two cells, eliminating them from every other cell of the run.
Read more
- Meet Kakuro
An introduction to Kakuro — what it is, how it differs from Sudoku, and why people who like number-logic puzzles often end up preferring it.