A341582 Number of simple moves of the smallest disk in the solution to the Towers of Hanoi exchanging disks puzzle with 3 pegs and n disks.
0, 1, 2, 4, 6, 12, 22, 42, 76, 142, 262, 488, 902, 1674, 3100, 5750, 10654, 19752, 36606, 67858, 125772, 233134, 432118, 800968, 1484630, 2751866, 5100732, 9454534, 17524526, 32482792, 60208782, 111600642, 206858476, 383424702, 710700742, 1317326728, 2441744422
Offset: 0
Examples
As a graph where each vertex is a configuration of disks on pegs and each edge is a step (as drawn by Scorer et al.), A / \ n=3 disks B---* solution / \ A to H, C * within / \ / \ which *---D---*---* a(3) = 4 / \ smallest * / \ * disk moves: / \ / \ / \ AB, CD, F---E *---* EF, GH / \ / \ G I-------* * / \ / \ / \ / \ H---*---*---J *---*---*---* For n=4, the first half of the solution is A to J per A341580. The smallest disk moves are AB, CD, IJ, and twice those is a(4) = 2*3 = 6 since J across to the next subgraph is an exchange, not a smallest disk move.
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. See section 5 exercise 2.
- Index entries for linear recurrences with constant coefficients, signature (1,1,0,2).
- Index entries for sequences related to Towers of Hanoi
Programs
-
Mathematica
A341582list[nmax_]:=LinearRecurrence[{1,1,0,2},{0,1,2,4},nmax+1];A341582list[50] (* Paolo Xausa, Jun 29 2023 *)
-
PARI
my(p=Mod('x,'x^4-'x^3-'x^2-2)); a(n) = subst(lift(p^n)\'x,'x,2);
Comments