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.

A178426 11 followed by the Fermat numbers A152585.

Original entry on oeis.org

11, 13, 145, 20737, 429981697, 184884258895036417, 34182189187166852111368841966125057, 1168422057627266461843148138873451659428421700563161428957815831003137
Offset: 0

Views

Author

Roger L. Bagula, May 27 2010

Keywords

Comments

If a(0)=3, the recursion formula gives A000215.

Crossrefs

Programs

  • Mathematica
    a[0] := 11;
    a[n_] := a[n] = Product[a[i], {i, 0, n - 1}] + 2;
    Table[a[n], {n, 0, 10}]

Formula

a(0)=11. a(n)= 2 + Product_{i=0..n-1} a(i).

Extensions

Definition simplified by the Assoc. Eds. of the OEIS - May 28 2010