OFFSET
2,2
COMMENTS
In a 3 X n board (with n > 1) with numbers 1, 2 and 3, at least 2 of each, find the arrangement with more solutions connecting a pair of numbers 1 and a pair of number 2 and a pair of number 3, covering the entire board and without passing through the same square twice.
Terms a(5) and a(7)-a(12) from Giorgio Vecchi.
LINKS
Rodolfo Kurchan and Claudio Meller, Number Connections, Puzzle Fun, Problems (2024).
EXAMPLE
For n = 2 with the board
+---+---+
| 1 | 1 |
+---+---+
| 2 | 2 |
+---+---+
| 3 | 3 |
+---+---+
There is only 1 solution being the squares with these letters:
+---+---+
| A | B |
+---+---+
| C | D |
+---+---+
| E | F |
+---+---+
Solution:
1) AB - CD - EF
There is one solution so a(2) = 1.
.
For n = 3 with the board
+---+---+---+
| 1 | 3 | 3 |
+---+---+---+
| 1 | 2 | 2 |
+---+---+---+
| 1 | 2 | 2 |
+---+---+---+
the maximum number of solutions is 6 being the squares with this letters:
+---+---+---+
| A | B | C |
+---+---+---+
| D | E | F |
+---+---+---+
| G | H | I |
+---+---+---+
Solutions:
1) ADG - BC - HEFI
2) ADG - BC - FEHI
3) ADG - BC - EFIH
4) ADG - BC - EHIF
5) ADG - BEFC - HI
6) ADEHG - BC - FI
There are six solutions so a(3) = 6.
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Rodolfo Kurchan, Dec 22 2024
STATUS
approved