def minimum_moves(n): """2**n - 1, exactly. Python integers grow as large as they need to.""" return 2**n - 1 for n in (3, 10, 64): print(f"{n} disks: {minimum_moves(n)} moves")