login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A060205
(p^p)^p, where p is prime(n).
2
16, 19683, 298023223876953125, 256923577521058878088611477224235621321607, 1019799756996130681763726671436132304456781416468067415248292558306065071863627636642030949423377254718066066358518538286207211
OFFSET
1,1
LINKS
FORMULA
Also p^(p^2).
EXAMPLE
a(3) = 298023223876953125 because the 3rd prime number is 5 and 5^(5^2) = 298023223876953125.
MATHEMATICA
(#^#)^#&/@Prime[Range[5]] (* Harvey P. Dale, Aug 31 2015 *)
PROG
(PARI) { n=0; forprime (p=1, 25, write("b060205.txt", n++, " ", p^(p^2)); ) } \\ Harry J. Smith, Jul 02 2009
(Magma) [(n^n)^n: n in PrimesInInterval(1, 20)]; // G. C. Greubel, Aug 01 2024
(SageMath) [(n^n)^n for n in prime_range(1, 20)] # G. C. Greubel, Aug 01 2024
CROSSREFS
Subsequence of A002489.
Sequence in context: A089232 A300615 A002489 * A140597 A017296 A217271
KEYWORD
easy,nonn
AUTHOR
Walter Nissen, Mar 18 2001
STATUS
approved