i32 the Mandelbrot Set from Osipenkov+Art is a Geometry Nodes add-on for Blender that computes a basic Mandelbrot set using only 32-bit integers, built with Integer Math and Bit Math Nodes. A number is represented by a Mantissa (Integer), an Exponent (Integer), and a Sign (Boolean).
The i32 dAddSub node handles addition and subtraction, while the i32 dMulPow2 node handles multiplication and Power2 (multiplying a number by itself). Additional auxiliary nodes cover overflow control, sign control, and others. The setup relies on the Bit Math Node introduced in Blender 4.5 LTS for full bit shifts, which earlier versions emulated using Divide and Modulo operations. Three display modes are available: Mesh, Points, and Pixels (cube instances instead of points).
It suits educational use, such as visually understanding some principles of the IEEE 754 floating-point standard, as well as creating images or videos. Resolution and Iterations severely impact performance, so increase values gradually in small steps. A tutorial video is available, and the setup became an add-on through Node To Python by Brendan Parmer.