login
A244450
Powers of ten billion.
2
1, 10000000000, 100000000000000000000, 1000000000000000000000000000000, 10000000000000000000000000000000000000000, 100000000000000000000000000000000000000000000000000, 1000000000000000000000000000000000000000000000000000000000000
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
A244450:=n->(10^10)^n; seq(A244450(n), n=0..5); # Wesley Ivan Hurt, Jun 28 2014
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
Sequence in context: A017278 A017518 A017650 * A293791 A208363 A261458
KEYWORD
nonn
AUTHOR
Tyler Zahnke, Jun 28 2014
STATUS
approved