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.

A139193 Natural numbers of the form (prime(n)! - 5)/5.

Original entry on oeis.org

23, 1007, 7983359, 1245404159, 71137485619199, 24329020081766399, 5170403347776995327999, 1768352398747940390908723199999, 1644567730835584563545112575999999
Offset: 1

Views

Author

Artur Jasinski, Apr 11 2008

Keywords

Crossrefs

Programs

  • Maple
    A039716 := proc(n) factorial(ithprime(n)) ; end: A139193 := proc(n) A039716(n)/5-1 ; end: seq(A139193(n),n=3..14) ; # R. J. Mathar, Sep 18 2009
  • Mathematica
    Table[(Prime[n]! - 5)/5, {n, 3, 20}]