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.

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

Original entry on oeis.org

9, 73, 5257, 27630793, 763460694178057, 582872231554839914154126117193, 339740038317718918529575265905277902175236102890836244082057
Offset: 1

Views

Author

Artur Jasinski, Sep 21 2008

Keywords

Crossrefs

Programs

  • Mathematica
    a = {}; r = 9; Do[AppendTo[a, r]; r = r^2 - r + 1, {n, 1, 10}]; a
    NestList[#^2-#+1&,9,10] (* Harvey P. Dale, Aug 31 2014 *)

Formula

a(n) ~ c^(2^n) with c = 2.918012...
a(n+1) = a(n)^2 - a(n) + 1, with a(1) = 9.