A322125 Minimum number of shaded cells in an n X n Hitori solution grid.
0, 1, 2, 4, 5, 8, 11
Offset: 1
Examples
Case n=4: A solution with the minimum number of shaded cells is: X . X . . . . . X . . X . . . . In the above, no additional cell can be shaded without either placing it adjacent to another shaded cell or causing the unshaded cells to become disconnected. . Example solutions for each n are given below. Positions of shaded cells are given. n a(n) example 1 0 2 1 1/ 3 2 1/2/ 4 4 1.3//1.4/ 5 5 2.4///2.4/3 6 8 2/3.5/4/1/2.6/4 7 11 2.6/3/4/1.5.7/2/5/2.6 *8 15 2.6/3.7/4/1.5/2.6.8/4/3.5/2.7 *9 19 4.8/1.3.5/8/3.6.9/2/1.5.7/4.8/3.9/2.6 *10 24 5.9/2.4.8/1.6/4.8.10/3.7/2.6/1.5.9/4.8/3.7.10/2.6 *=not confirmed to be minimal.
Crossrefs
Formula
a(n) <= A321684(n). - Andrey Zabolotskiy, Jan 14 2019
Comments