cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A068210 n-th prime's factorial raised to n-th prime power.

Original entry on oeis.org

4, 216, 24883200000, 82606411253903523840000000, 409933016554924328182440935903164918932547530146724293451448320000000000000000000000
Offset: 1

Views

Author

Rick L. Shepherd, Mar 24 2002

Keywords

Comments

a(5) through a(10) have this many decimal digits: 84, 128, 248, 325, 516 and 898, respectively.

Examples

			a(3) = 24883200000 because the 3rd prime is 5 and 5!^5 = 120^5 = 24883200000.
		

Programs

  • PARI
    for(n=1,5,print1(prime(n)!^prime(n),","))

Formula

a(n) = (prime(n)!)^prime(n).