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.

A129871 A variant of Sylvester's sequence: a(0)=1 and for n>0, a(n) = (a(0)*a(1)*...*a(n-1)) + 1.

Original entry on oeis.org

1, 2, 3, 7, 43, 1807, 3263443, 10650056950807, 113423713055421844361000443, 12864938683278671740537145998360961546653259485195807
Offset: 0

Views

Author

Ben Branman, Sep 16 2011

Keywords

Comments

A variant of A000058, starting with an extra 1.

References

  • Jean-Marie Monier, Analyse, Exercices corrigés, 2ème année, MP, Dunod, 1997, Exercice 3.3.4 page 284.

Crossrefs

Cf. A000058 which is the main entry for this sequence.
Cf. A118227.

Programs

  • Haskell
    a129871 n = a129871_list !! n
    a129871_list = 1 : a000058_list  -- Reinhard Zumkeller, Dec 18 2013
  • Mathematica
    a[0] = 1; a[n_] := a[n] = Product[a[k], {k, 0, n - 1}] + 1

Formula

For n>0, a(n) = A000058(n-1).
a(1) = 2, a(n+1) = a(n)^2 - a(n) + 1. a(n) = round(c^(2^n)), where c = 1.264... is the Vardi constant, A076393. - Thomas Ordowski, Jun 11 2013
From Bernard Schott, Apr 06 2021: (Start)
Sum_{n>=0} 1/a(n) = 2.
Sum_{n>=0} (-1)^(n+1)/a(n) = 2 * (A118227 - 1). (End)

Extensions

Corrected and rewritten by Ben Branman, Sep 16 2011
Edited by Max Alekseyev, Oct 11 2012