AS/400, later renamed to iSeries, then System i. I haven't actually worked on one, but I have sat in front of one and typed commands into the terminal.
It's a brilliant architecture that is still very much alive. IBM is putting out new models every year (although the line has now been merged with what was once called the RS/6000 (later called the pSeries)) and is still selling quite a few of them.
One thing I like about it is that it challenges many "conventional" assumptions about computers. For example, a lot of programmers say that one must learn C in order to understand how computers work. However, the AS/400 actually is pretty much the opposite of what you would learn through C. The basic abstractions of C are pointers, files, processes and unstructured bytestreams. The AS/400's operating system (OS/400) doesn't have any of that: it doesn't have pointers, it has something called "files", but those have no resemblance to C files, they are more like SQL rows, also it has logical files which are like SQL views and a lot of other kinds of files like display files (basically GUIs), device files and so on. It has jobs, which are a kind of process abstraction, but it doesn't have seperate address spaces. And all files are structured and strongly typed, like PASCAL records, unlike C unstructured untyped bytestreams.
In fact, not even the CPU has pointers! It uses tags, which are more like object references in a memory-managed VM than C pointers.
Instead of a file system, the OS/400 has a relational database engine embedded at its core. IBM calls it DB2/400 but it doesn't actually share any code or technology with IBMs DB2 product.
The execution model is based on an abstract machine, called the Technology Independent Machine Interface (TIMI). Programs are delivered as MI bytecode and compiled to native object code when they are first executed. The compiler is a privileged system service that can only be called by the kernel; that way the compiler can be trusted and a lot of the security checks that more conventional systems are doing at runtime (usually in hardware, such as memory protection in the MMU or privilege domains in the CPU) can be done at compile time, thus eliminating runtime overhead. (Microsoft Singularity is an Operating System built along similar ideas and they measured a slowdown of more than 30% when going from compiler security to hardware security. Think about that: your PC could be 30% faster (or cheaper, or cooler) if only your operating system were not written in C!)
Originally, the kernel was implemented in Modula-2, with the rest of the OS implemented in PL/MI (a variant of PL/I that compiles to MI bytecode). It has since been rewritten in a more conventional language, mainly because the OS/400 team at IBM where the only people in the world still needing a Modula-2 compiler and they got tired of maintaining both an operating system and a compiler.