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.

A063414 Number of digits in prime(n)! (A039716).

Original entry on oeis.org

1, 1, 3, 4, 8, 10, 15, 18, 23, 31, 34, 44, 50, 53, 60, 70, 81, 84, 95, 102, 106, 117, 125, 137, 152, 160, 164, 173, 177, 185, 214, 222, 235, 239, 261, 265, 279, 292, 301, 314, 328, 332, 355, 359, 369, 373, 401, 429, 438, 443, 452, 467, 471, 495, 510, 524, 539
Offset: 1

Views

Author

Jason Earls, Oct 06 2001

Keywords

Crossrefs

Cf. A039716.

Programs

  • Maple
    [seq(floor(log10(factorial(ithprime(i))))+1, i = 1 .. 100)]; # César Eliud Lozada, Nov 23 2014
  • PARI
    a(n)=#digits(prime(n)!); \\ Joerg Arndt, Nov 23 2014