SK, BCKW, and BAMT combinator systems are known to be Turing-complete and convertible into each other. (BAMT is mentioned in this blog post)
Sxyz ~> xz(yz)
Kxy  ~> x
Bxyz ~> x(yz)
Cxyz ~> xzy
Kxy  ~> x
Wxy  ~> xyy
Bxyz ~> x(yz)
Axy  ~> y
Mx   ~> xx
Txy  ~> yx
Here, B, C, and S take three arguments.
Interestingly, the fixed point combinator can be expressed using only two-argument combinators:
Y' = (\xy. xyx) (\yx. y(xyx))
Theta = (\xy. y(xxy)) (\xy. y(xxy))
My question is: Is there any Turing-complete basis that only consists of one- or two-argument combinators? More specifically, is it possible to construct B or S with such combinators?
