A309111 Number of possible permutations of a Corner-Turning Octahedron of size n, disregarding the trivial rotation of the tips.
1, 1, 2009078326886400, 25130033447370922318407480728239472640000000, 5759627596191312699511553760965199283079808523515804251057792885981184000000000000000
Offset: 1
Keywords
Examples
See the Michael Gottlieb link above.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..14
- Michael Gottlieb's blogger, Notes on Twisty Puzzles
Crossrefs
Programs
-
PARI
a(n) = if(n<=2, 1, my(A = 258369126400); if(!(n%3), A * 6^(-8*n^2/3+16*n-19) * (24!)^(n^2/3-n), A * 560 * 6^(-8*n^2/3+16*n-43/3) * (24!)^(n^2/3-n-1/3)))
Formula
a(n) = 6^(-16*n+72) * (24!)^(2*n-6) * a(n-3) for n >= 6.
Let A = 258369126400, then for n >= 3: a(n) = A * 6^(-8*n^2/3+16*n-19) * (24!)^(n^2/3-n) if 3 divides n, otherwise a(n) = A * 560 * 6^(-8*n^2+16*n-43/3) * (24!)^(n^2/3-n-1/3).
Comments