Uri Levy has authored 15 sequences. Here are the ten most recent ones:
A183122
Magnetic Tower of Hanoi, number of moves of disk number k, generated by a certain algorithm, yielding a "forward moving" non-optimal solution of the [NEUTRAL ; NEUTRAL ; NEUTRAL] pre-colored puzzle.
Original entry on oeis.org
0, 1, 3, 7, 19, 53, 153, 455, 1359, 4073, 12213, 36635, 109899, 329693, 989073, 2967215, 8901639, 26704913, 80114733, 240344195, 721032579, 2163097733, 6489293193, 19467879575, 58403638719, 175210916153, 525632748453, 1576898245355, 4730694736059
Offset: 0
- U. Levy, The Magnetic Tower of Hanoi, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
- Harvey P. Dale, Table of n, a(n) for n = 0..1000
- U. Levy, The Magnetic Tower of Hanoi, arXiv:1003.0225
- U. Levy, Magnetic Towers of Hanoi and their Optimal Solutions, arxiv:1011.3843
- U. Levy, to play The Magnetic Tower of Hanoi, web applet
- Index entries for linear recurrences with constant coefficients, signature (3, 1, -3).
A000244 "Powers of 3" is the sequence (also) describing the number of moves of the k-th disk solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
A183111 through
A183125 are related sequences, all associated with various solutions of the pre-coloring variations of the Magnetic Tower of Hanoi.
-
Join[{0,1,3,7},LinearRecurrence[{3,1,-3},{19,53,153},30]] (* Harvey P. Dale, Dec 08 2014 *)
A183117
Magnetic Tower of Hanoi, number of moves of disk number k, optimally solving the [NEUTRAL ; NEUTRAL ; NEUTRAL] pre-colored puzzle.
Original entry on oeis.org
0, 1, 3, 7, 19, 53, 153, 451, 1339, 3997, 11961, 35835, 107435, 322197, 966425, 2899027, 8696699, 26089517, 78267673, 234801675, 704402987, 2113205861, 6339612857, 19018831395, 57056483259, 171169433149, 513508274169, 1540524784027, 4621574293547, 13864722791605, 41594168239321
Offset: 0
- Uri Levy, The Magnetic Tower of Hanoi, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp. 173.
A000244 "Powers of 3" is the sequence (also) describing the number of moves of the k-th disk solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
A183111 through
A183125 are related sequences, all associated with various solutions of the pre-coloring variations of the Magnetic Tower of Hanoi.
-
L1 = Root[-2 - # + #^3&, 1];
L2 = Root[-2 - # + #^3&, 3];
L3 = Root[-2 - # + #^3&, 2];
AP = Root[-2 - 9# - 52 #^2 + 572 #^3&, 1];
BP = Root[-2 - 9# - 52 #^2 + 572 #^3&, 3];
CP = Root[-2 - 9# - 52 #^2 + 572 #^3&, 2];
a[0] = 0;
a[n_] := (1/2) AP (L1+1)^2 L1^(n-1) + (1/2) BP (L2+1)^2 L2^(n-1) + (1/2) CP (L3+1)^2 L3^(n-1) + (20 3^(n-1))/33;
Table[a[n] // Round, {n, 0, 30}] (* Jean-François Alcover, Dec 03 2018 *)
A183118
Magnetic Tower of Hanoi, total number of moves, optimally solving the [NEUTRAL ; NEUTRAL ; NEUTRAL] pre-colored puzzle.
Original entry on oeis.org
0, 1, 4, 11, 30, 83, 236, 687, 2026, 6023, 17984, 53819, 161254, 483451, 1449876, 4348903, 13045602, 39135119, 117402792, 352204467, 1056607454
Offset: 0
- "The Magnetic Tower of Hanoi", Uri Levy, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
- Uri Levy, The Magnetic Tower of Hanoi, arXiv:1003.0225 [math.CO], 2010.
- Uri Levy, Magnetic Towers of Hanoi and their Optimal Solutions, arXiv:1011.3843 [math.CO], 2010.
- Web applet, to play The Magnetic Tower of Hanoi
- Index entries for linear recurrences with constant coefficients, signature (4,-2,-2,-5,6).
A183117 is an "original" sequence describing the number of moves of disk number k, optimally solving the pre-colored puzzle at hand. The integer sequence listed above is the partial sums of the
A183117 original sequence.
A003462 "Partial sums of
A000244" is the sequence (also) describing the total number of moves solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
A183111 through
A183125 are related sequences, all associated with various solutions of the pre-coloring variations of the Magnetic Tower of Hanoi.
-
Join[{0}, LinearRecurrence[{4, -2, -2, -5, 6}, {1, 4, 11, 30, 83}, 20]] (* Jean-François Alcover, Jan 28 2019 *)
A183116
Magnetic Tower of Hanoi, total number of moves, optimally solving the [RED ; NEUTRAL ; NEUTRAL] or [NEUTRAL ; NEUTRAL ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 4, 11, 30, 85, 244, 715, 2118, 6309, 18860, 56475, 169262, 507541, 1522244, 4566155, 13697590, 41091429, 123272252, 369813659, 1109436254
Offset: 0
- "The Magnetic Tower of Hanoi", Uri Levy, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
A183115 is an "original" sequence describing the number of moves of disk number k, optimally solving the pre-colored puzzle at hand. The integer sequence listed above is the partial sums of the
A183115 original sequence.
A003462 "Partial sums of
A000244" is the sequence (also) describing the total number of moves solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
A183111 through
A183125 are related sequences, all associated with various solutions of the pre-coloring variations of the Magnetic Tower of Hanoi.
-
L1 = Root[-2 - # + #^3&, 1];
L2 = Root[-2 - # + #^3&, 3];
L3 = Root[-2 - # + #^3&, 2];
AP = Root[-2 - 9 # - 52 #^2 + 572 #^3&, 1];
BP = Root[-2 - 9 # - 52 #^2 + 572 #^3&, 3];
CP = Root[-2 - 9 # - 52 #^2 + 572 #^3&, 2];
(* b = A183115 *) b[0] = 0; b[n_] := (7/11) 3^(n-1) + AP (L1+1) L1^(n-1) + BP (L2+1) L2^(n-1) + CP (L3+1) L3^(n-1) // Round;
Array[b, 21, 0] // Accumulate (* Jean-François Alcover, Jan 30 2019 *)
A183111
Magnetic Tower of Hanoi, number of moves of disk number k, optimally solving the [RED ; BLUE ; NEUTRAL] or [NEUTRAL ; RED ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 3, 9, 25, 75, 223, 665, 1993, 5971, 17903, 53697, 161065, 483163, 1449439, 4348233, 13044585, 39133571, 117400431, 352200881, 1056601993, 3169805003, 9509413535, 28528238329, 85584711561, 256754129459, 770262380399, 2310787129121, 6932361368937
Offset: 0
- Uri Levy, The Magnetic Tower of Hanoi, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173; arXiv:1003.0225 [math.CO], 2010.
- Uri Levy, Magnetic Towers of Hanoi and their Optimal Solutions, arXiv:1011.3843 [math.CO], 2010.
- Web applet to play The Magnetic Tower of Hanoi
- Index entries for linear recurrences with constant coefficients, signature (3,1,-1,-6).
A000244 "Powers of 3" is the sequence (also) describing the number of moves of the k-th disk solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi.
-
LinearRecurrence[{3,1,-1,-6},{0,1,3,9,25},30] (* Harvey P. Dale, Apr 30 2018 *)
A183114
Magnetic Tower of Hanoi, total number of moves, optimally solving the [RED ; NEUTRAL ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 4, 11, 32, 93, 272, 807, 2404, 7185, 21516, 64483, 193352, 579909, 1739496, 5218143, 15653900, 46960889, 140881444, 422642459, 1267924528, 3803769261, 11411301184, 34233893527, 102701665332, 308104972769, 924314883004, 2772944595283, 8318833704088, 24956500987925
Offset: 0
- U. Levy, The Magnetic Tower of Hanoi, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
- Muniru A Asiru, Table of n, a(n) for n = 0..2030
- U. Levy, The Magnetic Tower of Hanoi, arXiv:1003.0225 [math.CO], 2010.
- U. Levy, Magnetic Towers of Hanoi and their Optimal Solutions, arXiv:1011.3843 [math.CO], 2010.
- Web applet to play The Magnetic Tower of Hanoi [Broken link]
- Index entries for linear recurrences with constant coefficients, signature (4,-2,-2,-5,6).
A183113 is an "original" sequence describing the number of moves of disk number k, optimally solving the pre-colored puzzle at hand. The integer sequence listed above is the partial sums of the
A183113 original sequence.
A003462 "Partial sums of
A000244" is the sequence (also) describing the total number of moves solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
-
I:=[0,1,4,11,32]; [n le 5 select I[n] else 4*Self(n-1)-2*Self(n-2)-2*Self(n-3)-5*Self(n-4)+6*Self(n-5): n in [1..30]]; // Vincenzo Librandi, Dec 04 2018
-
seq(coeff(series(x*(2*x-1)*(1+x)^2/((x-1)*(3*x-1)*(2*x^3+x^2-1)),x,n+1), x, n), n = 0 .. 35); # Muniru A Asiru, Dec 04 2018
-
LinearRecurrence[{4, -2, -2, -5, 6}, {0, 1, 4, 11, 32}, 30] (* Jean-François Alcover, Dec 04 2018 *)
CoefficientList[Series[x (2 x - 1) (1 + x)^2 / ((x - 1) (3 x - 1) (2 x^3 + x^2 - 1)), {x, 0, 33}], x] (* Vincenzo Librandi, Dec 04 2018 *)
A183119
Magnetic Tower of Hanoi, total number of moves generated by a certain algorithm, yielding a "forward moving" non-optimal solution of the [RED ; NEUTRAL ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 4, 11, 32, 93, 276, 823, 2464, 7385, 22148, 66435, 199296, 597877, 1793620, 5380847, 16142528, 48427569, 145282692, 435848059, 1307544160, 3922632461, 11767897364, 35303692071, 105911076192, 317733228553, 953199685636, 2859599056883, 8578797170624, 25736391511845
Offset: 0
- Uri Levy, The Magnetic Tower of Hanoi, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
- Muniru A Asiru, Table of n, a(n) for n = 0..2070
- Uri Levy, The Magnetic Tower of Hanoi, arXiv:1003.0225 [math.CO], 2010.
- Uri Levy, Magnetic Towers of Hanoi and their Optimal Solutions, arXiv:1011.3843 [math.CO], 2010.
- Uri Levy, to play The Magnetic Tower of Hanoi, web applet [Broken link]
- Index entries for linear recurrences with constant coefficients, signature (4,-2,-4,3).
A122983 - "Binomial transform of aeration of
A081294" is an "original" sequence (also) describing the number of moves of disk number k, solving the pre-colored puzzle at hand when executing the "75" algorithm mentioned above and presented in the paper referenced by link 1 above. The integer sequence listed above is the partial sums of the
A122983 original sequence.
A003462 "Partial sums of
A000244" is the sequence (also) describing the total number of moves solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
-
[3^(n+1)/8+(n-1)/2+(-1)^n/8: n in [0..30]]; // Vincenzo Librandi, Dec 04 2018
-
seq(coeff(series(x*(3*x^2-1)/((1+x)*(3*x-1)*(x-1)^2),x,n+1), x, n), n = 0 .. 30); # Muniru A Asiru, Dec 04 2018
-
LinearRecurrence[{4, -2, -4, 3}, {0, 1, 4, 11}, 30] (* Jean-François Alcover, Dec 04 2018 *)
Table[3^(n + 1) / 8 + (n - 1) / 2 + (-1)^n / 8, {n, 0, 30}] (* Vincenzo Librandi, Dec 04 2018 *)
-
a(n) = 3^(n+1)/8 + (n-1)/2 + (-1)^n/8 \\ Charles R Greathouse IV, Jun 11 2015
A183121
Magnetic Tower of Hanoi, total number of moves, generated by a certain algorithm, yielding a "forward moving" non-optimal solution of the [RED ; NEUTRAL ; NEUTRAL] or [NEUTRAL ; NEUTRAL ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 4, 11, 30, 85, 244, 715, 2118, 6317, 18900, 56635, 169822, 509365, 1527972, 4583771, 13751142, 41253229, 123759460, 371278123, 1113834078, 3341501909, 10024505364, 30073515691, 90220546630, 270661639405, 811984917684, 2435954752475, 7307864256798, 21923592769717, 65770778308420, 197312334924475
Offset: 0
- U. Levy, The Magnetic Tower of Hanoi, Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
- Muniru A Asiru, Table of n, a(n) for n = 0..2000
- U. Levy, The Magnetic Tower of Hanoi, arXiv:1003.0225 [math.CO], 2010.
- U. Levy, Magnetic Towers of Hanoi and their Optimal Solutions, arXiv:1011.3843, 2010.
- U. Levy, to play The Magnetic Tower of Hanoi, web applet. [Broken link]
- Index entries for linear recurrences with constant coefficients, signature (5,-6,-2,7,-3).
A183120 - is an "original" sequence describing the number of moves of disk number k, solving the pre-colored puzzle at hand when executing the "64" algorithm mentioned above.
A104743 - is a sequence also describing the total number of moves, generated by another algorithm, designated "67", yielding a "forward moving" non-optimal solution of the [RED ; NEUTRAL ; NEUTRAL] or [NEUTRAL ; NEUTRAL ; BLUE] pre-colored puzzle at hand. Recurrence relations for this sequence is a(n) = a(n-1) + 2*3^(n-2) + 1 and the closed-form expression is 3^(n-1) + n - 1. Large N limit is 0.5*(2/3)*3^N =~ 0.5*0.67*3^N, and sequence designation is thus S67(n). The (non-optimal) "67" algorithm solving the Magnetic Tower of Hanoi with the given pre-coloring configuration yielding the S67(n) sequence (given by
A104743) is explicitly described and discussed in the paper referenced in link 1 above.
A003462 "Partial sums of
A000244" is the sequence (also) describing the total number of moves solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
-
I:=[0,1,4,11,30,85,244]; [n le 7 select I[n] else 5*Self(n-1)-6*Self(n-2)-2*Self(n-3)+7*Self(n-4)-3*Self(n-5): n in [1..35]]; // Vincenzo Librandi, Dec 04 2018
-
seq(coeff(series(x*(1-x-3*x^2+x^3+2*x^4-4*x^5)/((1+x)*(1-3*x)*(1-x)^3)), x,n+1), x, n), n = 0 .. 35); # Muniru A Asiru, Dec 04 2018
-
Join[{0, 1}, LinearRecurrence[{5, -6, -2, 7, -3}, {4, 11, 30, 85, 244}, 30]] (* Jean-François Alcover, Dec 04 2018 *)
CoefficientList[Series[x*(1-x-3*x^2+x^3+2*x^4-4*x^5)/((1+x)*(1-3*x)*(1-x)^3), {x, 0, 33}], x] (* Vincenzo Librandi, Dec 04 2018 *)
-
my(x='x+O('x^30)); concat([0], Vec(x*(1-x-3*x^2+x^3+2*x^4-4*x^5)/ ((1+x)*(1-3*x)*(1-x)^3))) \\ G. C. Greubel, Dec 04 2018
-
s=(x*(1-x-3*x^2+x^3+2*x^4-4*x^5)/((1+x)*(1-3*x)*(1-x)^3) ).series(x, 30); s.coefficients(x, sparse=False) # G. C. Greubel, Dec 04 2018
A183112
Magnetic Tower of Hanoi, total number of moves, optimally solving the [RED ; BLUE ; NEUTRAL] or [NEUTRAL ; RED ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 4, 13, 38, 113, 336, 1001, 2994, 8965, 26868, 80565, 241630, 724793, 2174232, 6522465, 19567050, 58700621, 176101052, 528301933, 1584903926, 4754708929, 14264122464, 42792360793, 128377072354, 385131201813, 1155393582212, 3466180711333, 10398542080270
Offset: 0
- Uri Levy, "The Magnetic Tower of Hanoi", Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
A183111 is an "original" sequence describing the number of moves of disk number k, optimally solving the pre-colored puzzle at hand. The integer sequence listed above is the partial sums of the
A183111 original sequence.
A003462 "Partial sums of
A000244" is the sequence (also) describing the total number of moves solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi puzzle.
-
LinearRecurrence[{4, -2, -2, -5, 6}, {0, 1, 4, 13, 38}, 21] (* Jean-François Alcover, Dec 14 2018 *)
A183113
Magnetic Tower of Hanoi, number of moves of disk number k, optimally solving the [RED ; NEUTRAL ; BLUE] pre-colored puzzle.
Original entry on oeis.org
0, 1, 3, 7, 21, 61, 179, 535, 1597, 4781, 14331, 42967, 128869, 386557, 1159587, 3478647, 10435757, 31306989, 93920555, 281761015, 845282069, 2535844733, 7607531923, 22822592343, 68467771805, 205403307437, 616209910235, 1848629712279, 5545889108805
Offset: 0
- Uri Levy, "The Magnetic Tower of Hanoi", Journal of Recreational Mathematics, Volume 35 Number 3 (2006), 2010, pp 173.
A000244 "Powers of 3" is the sequence (also) describing the number of moves of the k-th disk solving [RED ; BLUE ; BLUE] or [RED ; RED ; BLUE] pre-colored Magnetic Tower of Hanoi.
A183111 through
A183125 are related sequences, all associated with various solutions of the pre-coloring variations of the Magnetic Tower of Hanoi.
-
Join[{0},LinearRecurrence[{3,1,-1,-6},{1,3,7,21},40]] (* or *) CoefficientList[ Series[ x(1-2x)(1+x)^2/((1-3x)(1-x^2-2x^3)),{x,0,40}],x] (* Harvey P. Dale, May 11 2011 *)
Comments