A090034 Number of configurations of the 3 X 2 variant of Sam Loyd's sliding block 15-puzzle that require a minimum of n moves to be reached, starting with the empty square in one of the corners.
1, 2, 3, 5, 6, 7, 10, 12, 12, 16, 23, 25, 28, 39, 44, 40, 29, 21, 18, 12, 6, 1
Offset: 0
Examples
Starting with 123 45- the most distant configuration corresponding to a(21)=1 is 45- 123 (i.e., it takes longest just to swap the two rows).
References
- See A087725.
Links
- Hugo Pfoertner, Solutions of small n*2 sliding block puzzles.
- Takaken, n-Puzzle Page.
- Takaken, No. 32 (5 puzzles).
Programs
-
Python
# alst(), moves(), swap() in A089473 print(alst("-12345", (3, 2))) # Michael S. Branicky, Dec 30 2020
Comments