A309109 Number of possible permutations of a Pyraminx of size n, disregarding the trivial rotation of the tips.
1, 1, 933120, 2681795837952000, 237391215092234044047360000000, 647223519675870437718855767650467840000000000000, 254101032901646255941392101056649724780871931658240000000000000000000
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..23
- Michael Gottlieb, Notes on Twisty Puzzles
- Chen Shuang, Number of states for twisty puzzles, github.
- Wikipedia, Pyraminx
Crossrefs
Programs
-
PARI
a(n) = if(n<=2, 1, 5 * (if(!(n%3), 2^(2*n^2-3*n-1) * 3^(n^2/3+3*n-6) * 1925^(n^2/3-n), 2^(2*n^2-3*n-1) * 3^(n^2/3+3*n-16/3) * 1925^(n^2/3-n-1/3))))
Formula
a(n) = 272097792 * 369600^(2*n-6) * a(n-3) for n >= 6.
a(n) = 5 * 2^(2*n^2-3*n-1) * 3^(n^2/3+3*n-6) * 1925^(n^2/3-n) if 3 divides n, otherwise a(n) = 5 * 2^(2*n^2-3*n-1) * 3^(n^2/3+3*n-16/3) * 1925^(n^2/3-n-1/3).
Comments