A googol has 101 digits, so we are looking for the number of ways to express 10^{100} as a sum of at most 60 positive integers.
There are a few ways to approach this problem. One way is to use the generating function for integer partitions,
which is given by:
\frac1{(1-x)(1-x2)\cdots(1-xn)}
For our purposes, we can set x = 10 and n = 60 in this formula to get:
\frac1{(1-10)(1-102)\cdots(1-1060)}
= \frac1{9 \cdot 10^{60}} \cdot \prod_{k=1}^{60} \frac1{1-10^{-k}}
= \frac1{9 \cdot 10^{60}} \cdot \sum_{k=1}^{60} 10^{-k}
= \frac1{9 \cdot 10^{60}} \cdot \frac{10^{-60}}{1-10^{-60}}
= \frac1{9 \cdot 10^{60}} \cdot \frac{1}{1-10^{-60}}
= \frac1{9 \cdot 10^{60}} \cdot \sum_{k=0}^{\infty} 10^{-60k}
= \frac1{9 \cdot 10^{60}} \cdot \frac{1}{1-10^{-60}}
= \frac1{9 \cdot 10^{60}} \cdot \frac{1}{9 \cdot 10^{-60}}
= \frac1{10^{121}}
Thus, there are 1/10^{121} ways to express a googol as a sum of at most 60 positive integers.