In Go, stones are placed on the line intersections, not on the spaces, which is why the Go board is 19 by 19, and not 18 by 18. It also turns out that my assumption re: possible Go moves was overly simplistic, but I didn’t realize that at the time… see Number of Possible Go Games for a detailed exploration.
…and, yep, 10^768 is certainly larger than 10^80.
Several days later, I happened to mention this episode to Jason DeLooze, and expressed disappointment that I hadn’t been able to compute 361! using my favorite database program. He pointed out that there is a simple work around (apart from the obvious 361 x 360 x 359… approach), and suggested that I take a look at the Factorial help page, and think about that “optional number of factors” parameter.
Near the bottom of the help page, the second example caught my eye…
…but I wasn’t sure what to make of it, so he explained that I could create two factorial statements and multiply them together, like so:
Factorial ( numberA ) * Factorial ( numberB ; numberOfFactors )
…where numberA = 212, numberB = 361 and numberOfFactors =149 (i.e., the difference between 361 and 212). And you know what? He was right.