66 characters of Windows `cmd.exe` batch language (Win2K or later only):

    set r=1
    for /l %%i in (1,1,%1) do call set/a r=%%r%%*%%i
    echo %r%

The recursive version was shaping up to be much larger.