OFFSET
1,1
COMMENTS
The countries in an empire must all have the same color; adjacent empires must have different colors.
The case n=1 is the four-color theorem: any planar map with any number of countries can be colored with 4 colors, so a(1)=4.
Obviously, replacing "each empire consisting of n countries" with "each empire consisting of at most n countries" yields the same sequence, since we are considering the worst case. - Daniel Forgues, Apr 03 2016
REFERENCES
P. J. Heawood, "Map colour theorem," Quart. J. Math. Oxford Ser. 2., 24, 332-338 (1890).
LINKS
Martin Gardner, The coloring of unusual maps leads into unchartered territory, Mathematical Games Column, Scientific American, Feb. 1980, page 14.
Brad Jackson and Gerhard Ringel, Solution of Heawood's empire problem in the plane, J. Reine Angew. Math. 347 (1984), 146-153.
Brad Jackson and Gerhard Ringel, Heawood's empire problem, Journal of Combinatorial Theory, Series B 38.2 (1985): 168-178.
N. J. A. Sloane, Illustrations of a(2)=12 and a(3)=18 [Annotated copy of part of a figure from Ian Stewart's Scientific American article referenced above]
N. J. A. Sloane, Another illustration for a(2)=12 [This symmetrical map was drawn by Scott Kim (see Gardner, 1980), the colors were assigned by Jackson and Ringel (1984), and the map was then colored by hand]
Ian Stewart, The rise and fall of the lunar m-pire, Mathematical Recreations Column, Scientific American, 268 (April 1993), 120-121.
Index entries for linear recurrences with constant coefficients, signature (2,-1).
FORMULA
a(1)=4; thereafter a(n) = 6*n (See Jackson & Ringel 1984).
G.f.: (-2*x)*(x^2-2*x-2)/(x-1)^2. - Daniel Forgues, Mar 04 2016
a(n) = 2*a(n-1) - a(n-2) for n > 3. - Wesley Ivan Hurt, Mar 07 2016
E.g.f.: 2*x*(3*exp(x) - 1). - Stefano Spezia, Jul 26 2022
EXAMPLE
For n=2, we have a number of empires (12 in the top part of the illustration above), each empire having two countries. The illustration shows an example where all 12 colors are needed.
MAPLE
MATHEMATICA
Join[{4, 12, 18}, LinearRecurrence[{2, -1}, {24, 30}, 50]] (* Harvey P. Dale, Dec 05 2014 *)
PROG
(PARI) a(n)=if(n>1, 6*n, 4) \\ Charles R Greathouse IV, Dec 11 2013
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
N. J. A. Sloane, Oct 29 2013
STATUS
approved