This is the second one of these puzzles I have posted. This one is not difficult; but the point of posting is to showcase some more possibilities regarding this kind of maze.
I think the maze works and has one solution.
Instructions: At each step you have an integer, n, which can change at each step. The goal is to get to the end of the maze successfully. (As with a computer program, if a conditional statement involves the value of n, the statement refers to the value before the line possibly changes it.)
1) start: n = 1 2) add or multiply by 2 3) add lowest prime > n 4) add or subtract 1 5) multiply by highest prime dividing n 6) subtract the number of positive divisors of n 7) if (n+1) is composite then dead-end. 8) divide by highest prime dividing n 9) add value of n gotten at line(2) (most recently) 10) if n <= 5 then go to line(n) 11) add or subtract highest prime dividing n 12) if 1 <= k <= 11 the go to line(n) 13) if n is a perfect square then dead-end. 14) finish (and n = ?)
(Of course, 'dead-end's are something to be avoided.)
And, yes, I will give the solution that I got in a few days if no one else gets it sooner.
The original maze is at:
http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&
threadm=b4be2fdf.0...
Thanks, Leroy Quet