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!)
A084764 a(n) = 2*a(n-1)^2 - 1, a(0)=1, a(1)=4. 4
1, 4, 31, 1921, 7380481, 108942999582721, 23737154316161495960243527681, 1126904990058528673830897031906808442930637286502826475521 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Product_{k=1..n} (1 + 1/a(k)) converges to sqrt(5/3).
The next term has 115 digits. - Harvey P. Dale, Oct 31 2013
LINKS
H. S. Wilf, Limit of a sequence, Elementary Problem E 1093, Amer. Math. Monthly 61 (1954), 424-425.
FORMULA
With x=4+sqrt(15), y=4-sqrt(15): a(n+1) = (x^(2^n) + y^(2^n))/2.
a(n) = A005828(n-1), n>0. - R. J. Mathar, Sep 17 2008
a(n) = A001091(2^(n-1)) with a(0) = 1; i.e. a(n) = ChebyshevT(2^(n-1), 4) with a(0) = 1. - G. C. Greubel, May 16 2023
MATHEMATICA
a[n_]:= a[n]= If[n<2, 4^n, 2 a[n-1]^2 -1]; Table[a[n], {n, 0, 10}]
Join[{1}, NestList[2#^2-1&, 4, 10]] (* Harvey P. Dale, Oct 31 2013 *)
PROG
(Magma) [n le 2 select 4^(n-1) else 2*Self(n-1)^2 - 1: n in [1..10]]; // G. C. Greubel, May 16 2023
(SageMath)
def A084764(n): return 1 if n==0 else chebyshev_T(2^(n-1), 4)
[A084764(n) for n in range(11)] # G. C. Greubel, May 16 2023
CROSSREFS
Cf. A001091, A005828 (essentially the same).
Sequence in context: A228467 A005841 A005828 * A061789 A103909 A309906
KEYWORD
easy,nonn
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Jun 04 2003
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)