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.

A144781 Variant of Sylvester's sequence: a(n+1) = a(n)^2 - a(n) + 1, with a(1) = 8.

Original entry on oeis.org

8, 57, 3193, 10192057, 103878015699193, 10790642145601683494645152057, 116437957914435303575899742229333045108448631998006179193, 13557798043283806950297045269968250387897834581711367551819275131055206893868524458302302046950954641412419952057
Offset: 1

Views

Author

Artur Jasinski, Sep 21 2008

Keywords

Crossrefs

Programs

  • Mathematica
    a = {}; k = 8; Do[AppendTo[a, k]; k = k^2 - k + 1, {n, 1, 10}]; a
    NestList[#^2-#+1&,8,10] (* Harvey P. Dale, Jan 29 2017 *)

Formula

a(n) ~ c^(2^n) where is c is 2.74167747444233776776... (A144805).