login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144782 Variant of Sylvester's sequence: a(n+1) = a(n)^2 - a(n) + 1, with a(1) = 9. 15
9, 73, 5257, 27630793, 763460694178057, 582872231554839914154126117193, 339740038317718918529575265905277902175236102890836244082057 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Mohammad K. Azarian, Sylvester's Sequence and the Infinite Egyptian Fraction Decomposition of 1, Problem 958, College Mathematics Journal, Vol. 42, No. 4, September 2011, p. 330.
Mohammad K. Azarian, Sylvester's Sequence and the Infinite Egyptian Fraction Decomposition of 1, Solution College Mathematics Journal, Vol. 43, No. 4, September 2012, pp. 340-342.
FORMULA
a(n) ~ c^(2^n) with c = 2.918012...
a(n+1) = a(n)^2 - a(n) + 1, with a(1) = 9.
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 *)
CROSSREFS
Sequence in context: A367977 A197534 A015465 * A218872 A075232 A145524
KEYWORD
nonn
AUTHOR
Artur Jasinski, Sep 21 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 11:31 EDT 2024. Contains 371792 sequences. (Running on oeis4.)