OFFSET
0,3
COMMENTS
Scorer, Grundy and Smith define a variation of the Towers of Hanoi puzzle where the smallest disk moves freely and two disks can exchange positions when they differ in size by 1, are on different pegs, and each is topmost on its peg. The puzzle is to move a stack of n disks from one peg to another.
Stockmeyer et al. determine the shortest solution to the puzzle. a(n) is their d(n) which is the geometric length of the solution when the state graph is embedded in a grid of unit triangles in the manner of the sample drawing by Scorer et al.
Graph n comprises 3 copies of graph n-1. The embedding arranges these 3 copies as a large triangle with a unit gap between the corners. The edges connecting these subgraphs are in the middle of the inner sides. A move of the smallest disk is length 1. An exchange of disks s and s+1 is length 2^s, where the smallest disk is s=0.
LINKS
Kevin Ryde, Table of n, a(n) for n = 0..700
Paul K. Stockmeyer et al., Exchanging Disks in the Tower of Hanoi, International Journal of Computer Mathematics, volume 59, number 1-2, pages 37-47, 1995. Also author's copy. a(n) = d(n) in section 5 exercise 5.
Index entries for linear recurrences with constant coefficients, signature (3,-1,-2,2,-4).
FORMULA
EXAMPLE
The graph embedding in a triangular grid is (as drawn by Scorer et al.),
A
/ \ n=3 disks
*---* A to D
/ \ geometric
* * length along
/ \ / \ the path
*---B---*---* a(3) = 8
/ \
* . \ *
/ \ / \ / \
*---C *---*
/ \ / \
* *-------* *
/ \ / \ / \ / \
D---*---*---* *---*---*---*
B to C is where disks s=1 and s+1=2 exchange which is geometric length 2^s = 2.
MATHEMATICA
A341583list[nmax_]:=LinearRecurrence[{3, -1, -2, 2, -4}, {0, 1, 3, 8, 18}, nmax+1]; A341583list[50] (* Paolo Xausa, Jun 29 2023 *)
PROG
(PARI) my(p=Mod('x, 'x^4-'x^3-'x^2-2), f=7*'x^3+5*'x^2+3*'x+6); a(n) = (7<<n - polcoeff(lift(f*p^n), 3))/2;
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Kevin Ryde, Feb 16 2021
STATUS
approved