A379241 Maximum number of connections for a 2 X n rectangle.
1, 5, 22, 54, 134, 269, 534, 934, 1618, 2573, 4062, 6030, 8902, 12549, 17614, 23854, 32194, 42229, 55238
Offset: 2
Examples
For n = 3 the with the board +---+---+---+ | 1 | 1 | 2 | +---+---+---+ | 1 | 2 | 2 | +---+---+---+ the maximum number of solutions is 5 being the squares with this letters: +---+---+---+ | A | B | C | +---+---+---+ | D | E | F | +---+---+---+ Solutions: 1) ABED - CF 2) ADEB - CF 3) BAD - CFE 4) AD - CBEF 5) AD - EBCF There are five solutions so a(3) = 5.
Links
- Rodolfo Kurchan and Claudio Meller, Number Connections, Puzzle Fun, Problems (2024).
Comments