A362580 a(n) = packing chromatic number of an n X n grid.
1, 3, 4, 5, 7, 8, 9, 9, 10, 11
Offset: 1
Examples
In the following 2 X 2 grid, the maximum value is 3, and the distance between the two cells containing 1 is 2: 1 2 3 1 In the following 3 X 3 grid, the maximum value is 4, and the distance between the two cells containing 3 is 4: 2 1 3 1 4 1 3 1 2 In the following 4 X 4 grid, the maximum value is 5, and the distance between each pair of cells containing 3 is 4: 1 2 1 3 3 1 4 1 1 5 1 2 2 1 3 1 In the following 5 X 5 grid, the maximum value is 7, and the distance between each pair of cells containing 3 is greater than 3: 1 2 1 3 1 3 1 4 1 2 1 5 1 6 1 2 1 7 1 3 1 3 1 2 1 In the following 6 X 6 grid, the maximum value is 8, and the distance between the two cells containing 5 is 6: 1 2 1 3 1 2 3 1 4 1 5 1 1 6 1 2 1 3 2 1 3 1 7 1 1 5 1 8 1 2 3 1 2 1 3 1 In the following 7 X 7 grid, the maximum value is 9, and the distance between the two cells containing 7 is 8: 1 2 1 3 1 2 1 3 1 4 1 5 1 3 1 6 1 2 1 7 1 2 1 3 1 8 1 2 1 5 1 9 1 3 1 3 1 2 1 4 1 5 1 7 1 3 1 2 1 In the following 8 X 8 grid, the maximum value is 9, and the distance between the two cells containing 7 is 8: 1 2 1 3 1 2 1 3 3 1 4 1 5 1 6 1 1 7 1 2 1 3 1 2 2 1 3 1 8 1 4 1 1 5 1 9 1 2 1 3 3 1 2 1 3 1 7 1 1 6 1 4 1 5 1 2 2 1 3 1 2 1 3 6
Links
- Martin Ehrenstein, Example grids illustrating terms and bounds for n = 9..16
- Wayne Goddard, Sandra M. Hedetniemi, Stephen T. Hedetniemi, John M. Harris, and Douglas F. Rall, Broadcast Chromatic Numbers of Graphs, Ars Combinatoria, 86 (2008), 33-49.
- Kevin Hartnett, The Number 15 Describes the Secret Limit of an Infinite Grid, Quanta Magazine, Apr 20 2023.
- Robert C. Lyons, Python program that calculates the sequence.
- Bernardo Subercaseaux and Marijn J. H. Heule, The Packing Chromatic Number of the Infinite Square Grid is 15, arXiv:2301.09757 [cs.DM], 2023.
Crossrefs
Cf. A335203.
Programs
-
Python
# See link.
Extensions
a(9)-a(10) from Martin Ehrenstein, May 01 2023
Comments