As other commenters have said, Int32.MaxValue is a large number (approximately 2.4 billion), and each Node requires at least 8 bytes header - all .NET objects have this - plus four more for the Node reference, plus another four for the int (on a 32-bit system; on x64, those numbers become 16, 8, and 4 respectively). Multiplying up, that means this program is trying to allocate something like 36GB of memory just in Node objects, which would be sufficient to explain why you can't run it on a 16GB system.
On 32-bit Windows, however, before you even get that far you're going to run into problems with the process address space. (You'll run into similar ones with other 32-bit operating systems, since it is to a large extent an artifact of the underlying hardware.) On 32-bit windows, each process gets 4GB, of which 2GB is needed by the kernel, and the process itself gets 2GB. You can configure that by changing an OS setting to 1GB kernel, 3GB for the process.
And this latter restriction is why you hit OutOfMemoryException well before using up all 16GB of your physical RAM.