Size of Numerals
lFor a single number (n) input, size of the corresponding numeral is typically on the order of log(n)
le.g. decimal numeral encoding:
lsize(n) = #digits of n
           =  log10n
l x = smallest integer > x
 (called the ceiling of x)