Problem Archive

Starting from an empty string, we want to build a string with letters "x", "y", "z". At each step, one of the following operations is performed:

A string is called neutral if it is possible to produce the string from the empty string after an even number of steps.

Let $N(X, Y, Z)$ be the number of neutral strings which contain $X$ copies of "x", $Y$ copies of "y" and $Z$ copies of "z".
For example, $N(2, 2, 2) = 42$ and $N(8, 8, 8) = 4732773210$.

Find the sum of $N(i^3, j^3, k^3)$ for $0 \le i, j, k \lt 88$. Give your answer modulo $888\,888\,883$.

Solution
No solution yet. Write yours at solutions/s981.md.
Problems sourced from Project Euler · Non-commercial & educational use only · CC BY-NC-SA 4.0