cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A244951 Minimum number of colors needed to color the faces of the Platonic solids such that no two faces meeting at a common edge share the same color (in the order tetrahedron, cube, octahedron, dodecahedron, icosahedron).

Original entry on oeis.org

4, 3, 2, 4, 3
Offset: 1

Views

Author

Felix Fröhlich, Jul 08 2014

Keywords

Examples

			a(1) = 4, since in the tetrahedron any face shares a common edge with any other face, so each face needs a distinct color.
a(2) = 3, since the cube has three sets of opposite faces. Any two faces that are not opposite share a common edge, so only opposite faces can have the same color.
a(3) = 2, since cutting the octahedron along its "equator" results in two square pyramids. The triangular faces of a single pyramid can be colored using two colors in an alternating fashion. Then the two pyramids are reassembled such that at the "equator" differently colored faces meet.
a(4) and a(5) are shown in illustration in the links.
		

Crossrefs

Cf. A098112, A198861, A158478 (analog for sides of polygons).

Programs

  • Maple
    with(GraphTheory): with(SpecialGraphs):
    map(ChromaticNumber @ PlaneDual, [TetrahedronGraph(), HypercubeGraph(3), OctahedronGraph(), DodecahedronGraph(), IcosahedronGraph()]); # Robert Israel, Aug 24 2014

Extensions

Corrected value of a(4) due to discovery of a new coloring for the dodecahedron.
Corrected value of a(5) due to discovery of a new coloring for the icosahedron.