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.

A135505 a(0) = 1; a(n) = [product_(i = 1..n) prime(i)^i] - 1, where prime(i) is i-th prime.

Original entry on oeis.org

1, 1, 17, 2249, 5402249, 870037764749, 4199506113235182749, 1723219765760312626547490749, 29266411525287522788837599332989370749, 52713275010243038997421106186697438702252144407249, 22176856087751973465466098269669474342964368337745368642450857249
Offset: 0

Views

Author

Ctibor O. Zizka, Feb 19 2008

Keywords

Crossrefs

Programs

  • PARI
    a(n) = { if (n <= 0, return(1)); prod(i = 1, n, prime(i)^i) - 1;}
    vector(11, i, a(i-1))  \\ Gheorghe Coserea, Aug 24 2015

Formula

a(n) = A076954(n)-1, n>0. - R. J. Mathar, Nov 01 2009

Extensions

Converted references to links - R. J. Mathar, Oct 30 2009