login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A140319 Exponential primorial: a(n)=prime(n)^a(n-1), a(0)=1, where prime(n)=A000040(n). 7
1, 2, 9, 1953125 (list; graph; refs; listen; history; text; internal format)
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
(PARI) A140319(n)=if(n, prime(n)^A140319(n-1), 1) \\ M. F. Hasler, Nov 03 2009
CROSSREFS
Cf. A152859 (alternate definition: start with a(0)=0), A167155.
Sequence in context: A132859 A103562 A309861 * A120314 A050924 A181500
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
Corrected offset/definition, and initial a(0)=1 from M. F. Hasler, Nov 03 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 03:33 EDT 2024. Contains 371767 sequences. (Running on oeis4.)