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”).

A068210
n-th prime's factorial raised to n-th prime power.
2
4, 216, 24883200000, 82606411253903523840000000, 409933016554924328182440935903164918932547530146724293451448320000000000000000000000
OFFSET
1,1
COMMENTS
a(5) through a(10) have this many decimal digits: 84, 128, 248, 325, 516 and 898, respectively.
FORMULA
a(n) = (prime(n)!)^prime(n).
EXAMPLE
a(3) = 24883200000 because the 3rd prime is 5 and 5!^5 = 120^5 = 24883200000.
PROG
(PARI) for(n=1, 5, print1(prime(n)!^prime(n), ", "))
CROSSREFS
Sequence in context: A268362 A072694 A248099 * A078693 A222421 A025420
KEYWORD
easy,nonn
AUTHOR
Rick L. Shepherd, Mar 24 2002
STATUS
approved