OFFSET
0,2
COMMENTS
The tenth number in this sequence is a googol, the twentieth is a bigoogol, thirtieth is a trigoogol ... hundredth is a decigoogol (or great googol, as Andre Joyce called it), the ten thousandth is a centigoogol (or great great googol, as Joyce called it), and the hundred thousandth one is a maximusmillion. If x is 10^(10^100) divided by (10^10), the x-th member of this sequence is a googolplex.
FORMULA
a(n) = 10000000000^n.
MAPLE
MATHEMATICA
Table[(10^10)^n, {n, 0, 5}] (* Wesley Ivan Hurt, Jun 28 2014 *)
PROG
(PARI) a(n) = (10^10)^n; \\ Michel Marcus, Jun 28 2014
(Magma) [(10^10)^n: n in [0..5]]; // Wesley Ivan Hurt, Jun 28 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Tyler Zahnke, Jun 28 2014
STATUS
approved