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

 


A144788
a(n+1) = a(n)^3 - a(n) + 1 with a(1) = 3.
10
3, 25, 15601, 3797146111201, 54748462363349863789331489199516542401, 164102719777453765093060237305105241279744702931788833463132240094953276902575203916973404664183940277497050364801
OFFSET
1,1
FORMULA
a(n) = round(c^(3^n)), where c = 1.4298877386... is given in A144811.
MATHEMATICA
a = {}; k = 3; Do[AppendTo[a, k]; k = k^3 - k + 1, {n, 1, 8}]; a (* Artur Jasinski *)
NestList[#^3-#+1&, 3, 5] (* Harvey P. Dale, Jan 09 2014 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Artur Jasinski, Sep 22 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 16:18 EDT 2024. Contains 376119 sequences. (Running on oeis4.)