Problem : Compute the position values for 0 through 16 for 1-row misere Nim where the legal moves are to take 1, 4, or 5 stones.

n012345678910111213141516
outcome classNPNPNNNNNPNPNNNNN

Problem : Compute the Grundy numbers for 0 through 16 for 1-row normal Nim where the legal moves are to take 1, 4, or 5 stones. Find a winning move (or state that there is none) for the 3-row version of this game when there are 3, 5, and 7 stones in the rows.

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
*0 *1 *0 *1 *2 *3 *2 *3 *0 *1 *0 *1 *2 *3 *2 *3 *0
For 3/5/7, take 1 from any row.

Problem : Find a winning move (or state that there is none) for the following Kayles positions:


Problem : Consider a normal game played with $n$ rows of stones. On each turn, the current player can take any number of stones from any row, or may move any number of stones to the row directly above it (including to a row that has been emptied, not skipping over any row that has not been emptied, and not to a row that never existed).


Problem :