login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152859 Tower of prime powers: a(n)=prime(n)^a(n-1), a(0)=0. 1
0, 1, 3, 125, 4337654948097993282537354757263188251697832994620405101744893017744569432720994168089672192211758909320807 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

COMMENTS

Originally called "Exprimorial numbers (exponential prime factorials)", the strict analogue would be "exponential primorial". [Editor's Note]

LINKS

Wikipedia, Factorial

J. Sondow, "Exponential Factorial."

FORMULA

a(n) = 0 if n = 0; a(n) = prime(n) ^ a(n - 1), n >= 1.

EXAMPLE

a(4) = 7 ^ a(3) = 7 ^ 125

a(5) = 11 ^ a(4) has approximately 4.5 * 10^105 digits, starting with 335856... and ending in ...815171

PROG

(C) unsigned long Exprimorial(unsigned int n) {

if (n == 0) return 0;

return pow(prime(n), Exprimorial(n - 1));

}

(PARI) vector(4, i, t=if(i==1, 1, prime(i)^t)) /* indices are shifted by 1 */ [M. F. Hasler, Nov 01 2009]

CROSSREFS

Cf. A002110, A049384

Sequence in context: * A085531 A130614 A114877 A157547 A160879 A157562

Adjacent sequences:  A152856 A152857 A152858 * A152860 A152861 A152862

KEYWORD

nonn

AUTHOR

ShaoJun Ying (dolphinysj(AT)gmail.com), Dec 14 2008

EXTENSIONS

Edited by M. F. Hasler (www.univ-ag.fr/~mhasler), Nov 01 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 00:09 EST 2012. Contains 205978 sequences.