On Wednesday 17 August 2005 13:58, Bruce Snyder wrote:
> > +10000000000000000000000000000000000000000000000000000000
> 
> Wow, that number has 55 zeros - one zero higher than Septendecillion.
> Does anyone know if there's a name for that number? Maybe 10
> Septendecillion?

That is correct according to at least one Common Lisp implementation.
The Common Lisp FORMAT function gives you a way to convert integers to
their English names:

    http://www.lispworks.com/documentation/HyperSpec/Body/f_format.htm
    http://www.lispworks.com/documentation/HyperSpec/Body/22_cba.htm

So,

|CL-USER> (format nil "~r" 
10000000000000000000000000000000000000000000000000000000)
|
|"ten septendecillion"

Reply via email to