OFFSET
1,3
COMMENTS
Each member of a chiral pair is a reflection, but not a rotation, of the other.
LINKS
Index entries for linear recurrences with constant coefficients, signature (9, -36, 84, -126, 126, -84, 36, -9, 1).
FORMULA
a(n) = (n-1) * n^2 * (n+1) * (8 - 5*n^2 + n^4) / 48.
a(n) = 1*C(n,2) + 63*C(n,3) + 662*C(n,4) + 2400*C(n,5) + 3900*C(n,6) + 2940*C(n,7) + 840*C(n,8), where the coefficient of C(n,k) is the number of chiral pairs of colorings using exactly k colors.
G.f.: x^2 * (1+x) * (1+56*x+306*x^2+56*x^3+x^4) / (1-x)^9.
EXAMPLE
For a(2)=1, centering the octahedron (cube) at the origin and aligning the diagonals (edges) with the axes, color the faces (vertices) in the octants ---, --+, -++, and +++ with one color and the other 4 elements with the other color.
MATHEMATICA
Table[(n-1)n^2(n+1)(8-5n^2+n^4)/48, {n, 30}]
LinearRecurrence[{9, -36, 84, -126, 126, -84, 36, -9, 1}, {0, 1, 66, 920, 6350, 29505, 106036, 317856, 832140}, 30] (* Harvey P. Dale, Nov 21 2025 *)
PROG
(PARI) a(n)=(n^8-6*n^6+13*n^4-8*n^2)/48 \\ Charles R Greathouse IV, May 20 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Robert A. Russell, Sep 28 2020
STATUS
approved
