A198861 The number of ways to paint the faces of the five Platonic solids using exactly n colors where n is the number of faces of each solid.
2, 30, 1680, 7983360, 40548366802944000
Offset: 1
Links
- David Broughton's Puzzles & Programs, Colouring The Platonic Solids
Programs
-
PARI
lista() = {ve = [6, 12, 12, 30, 30 ]; vf = [4, 6, 8, 12, 20 ]; for (i=1, 5, nb = vf[i]!/(2*ve[i]); print1(nb, ", "););} \\ Michel Marcus, Aug 25 2014
Comments