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!)
A145451 a(n) = (1/2) * ((1 + sqrt(2))^(3^n) + (1 - sqrt(2))^(3^n)). 3
1, 7, 1393, 10812186007, 5055923762956339922096065927393, 516965476521645313412793919264355659075150020437514670946599534039092755401282583412315252007 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Empirical observation: a(n) is the numerator of the lowest-terms fraction representing the n-th approximation of sqrt(2) that is obtained via Halley's method when finding the root of x^2 - 2 = 0, starting with x=1 for n=0. Halley's method gives the next value of x as x * (x^2 + 6) / (3*x^2 + 2). - Lee A. Newberg, Apr 27 2018
The next term has 279 digits. - Harvey P. Dale, May 31 2019
LINKS
Wikipedia, Halley's method
FORMULA
a(n) = (1/2) * ((1 + sqrt(2))^(3^n) + (1 - sqrt(2))^(3^n)).
a(n+1) = 4*a(n)^3 + 3*a(n), a(0)=1.
a(n) = A006266(n)/2.
a(n) = A001333(3^n). - R. J. Mathar, Jan 18 2021
MATHEMATICA
Table[Simplify[Expand[(1/2) ((1 + Sqrt[2])^(3^n) + (1 - Sqrt[2])^(3^n))]], {n, 0, 5}]
a = {}; k = 1; Do[AppendTo[a, k]; k = 4 k^3 + 3 k, {n, 1, 6}]; a
NestList[4#^3+3#&, 1, 5] (* Harvey P. Dale, May 31 2019 *)
LucasL[3^Range[0, 7], 2]/2 (* G. C. Greubel, Mar 25 2022 *)
PROG
(PARI)
A002203(n) = my(w=quadgen(8)); (1+w)^n + (1-w)^n;
vector(7, n, n--; A002203(3^n)/2 ) \\ G. C. Greubel, Sep 27 2018; Mar 25 2022
(Magma) [Evaluate(DicksonFirst(3^n, -1), 2)/2: n in [0..7]]; // G. C. Greubel, Sep 27 2018; Mar 25 2022
(Sage) [lucas_number2(3^n, 2, -1)/2 for n in (0..7)] # G. C. Greubel, Mar 25 2022
CROSSREFS
Sequence in context: A210396 A289482 A214010 * A144676 A243232 A362060
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 10 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 16 12:36 EDT 2024. Contains 371711 sequences. (Running on oeis4.)