A309113 Number of possible permutations of a Megaminx of size 2n+1.
1, 100669616553523347122516032313645505168688116411019768627200000000000
Offset: 0
Examples
See the Michael Gottlieb link above.
Links
- Amiram Eldar, Table of n, a(n) for n = 0..4
- Michael Gottlieb's blogger, Notes on Twisty Puzzles
- Jianing Song, Relationship between the Megaminx of size 2n and 2n+1
- Wikipedia, Megaminx
Crossrefs
Programs
-
PARI
a(n) = if(n, 30! * 20! * 60!^(n^2-1) * 5!^(-12*n^2+12*n) * 2^(28-n) * 3^19, 1)
Formula
a(0) = 1; a(n) = 30! * 20! * 60!^(n^2-1) * 5!^(-12*n^2+12*n) * 2^(28-n) * 3^19 for n > 0.
Comments