OFFSET
0,2
COMMENTS
The next term is too large to include.
LINKS
Jonathan Sondow, Exponential Factorial, Eric Weisstein's World of Mathematics.
FORMULA
Sum_{n>=0} 1/a(n) = A167155. - Amiram Eldar, Nov 15 2020
EXAMPLE
a(1) = prime(1)^a(0) = 2^1 = 2.
a(2) = 3^2 = 9.
a(3) = 5^9 = 1953125.
a(4) = 7^1953125 has 1650583 digits, starting with 12864794... and ending in ...31920807. - M. F. Hasler, Nov 03 2009
MAPLE
P:=proc(n) local a, i; a:=2; print(a); for i from 2 by 1 to n do a:=ithprime(i)^a; print(a); od; end: P(5);
PROG
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paolo P. Lava and Giorgio Balzarotti, May 26 2008
EXTENSIONS
Corrected offset/definition, and initial a(0)=1 from M. F. Hasler, Nov 03 2009
STATUS
approved