I think I found an error in the nLab page on partial combinatory algebra in the Example combinators section:
Finally, consider the classical construction of the fixed-point combinator, $Y = \lambda y. (\lambda x. y(x x))(\lambda x. y(x x))$. We have firstly $$\lambda x. y(x x) = s(\lambda x. y)(\lambda x. x x) = s(k y)(s I I)$$ which means $$\array{ Y & = & \lambda y. (s I I)(s(k y)(s I I)) & (1)\\ & = & s(\lambda y. s I I)(\lambda y. s(k y)(s I I)) & (2)\\ & = & s(k (s I I))(s(\lambda y. s(k y))(\lambda y. s I I) & (3) \\ & = & s(k (s I I))(s(s (k s)(\lambda y. k y)))(k (s I I)) & (4) \\ & = & s(k (s I I))(s(s (k s)(s(k k)I)))(k (s I I)) & (5) }$$
I think I found an error.
$(3)$ has a missing closing parenthesis, i.e. $\big)$. The closing parenthesis can go in one of two positions. The error stems from there.
$(2)$ is equivalent to $(3)$ with a trailing closing parenthesis (emphasized):
$$s(k (s I I))(s(\lambda y. s(k y))(\lambda y. s I I)\Big)\qquad(3a)$$
On the other hand, $(4)$ is equivalent to $(3)$ with a closing parenthesis in the other possible position (emphasized):
$$s(k (s I I))(s(\lambda y. s(k y))\Big)(\lambda y. s I I)\qquad (3b)$$
Can someone with patience confirm? I’d use the SKI combinator interpreter to double check, but it supports purely SKI input only (can’t mix in $\lambda$, variables, nor terms).