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”).
%I #6 Jun 21 2024 19:43:25
%S 4,216,24883200000,82606411253903523840000000,
%T 409933016554924328182440935903164918932547530146724293451448320000000000000000000000
%N n-th prime's factorial raised to n-th prime power.
%C a(5) through a(10) have this many decimal digits: 84, 128, 248, 325, 516 and 898, respectively.
%F a(n) = (prime(n)!)^prime(n).
%e a(3) = 24883200000 because the 3rd prime is 5 and 5!^5 = 120^5 = 24883200000.
%o (PARI) for(n=1,5,print1(prime(n)!^prime(n),","))
%K easy,nonn
%O 1,1
%A _Rick L. Shepherd_, Mar 24 2002