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!)
A084595 For n > 0: a(n) = Sum_{r=0..2^(n-1)-1} binomial(2^n, 2r+1)*3^r. 1
1, 2, 16, 896, 2781184, 26794772135936, 2487085750646543836443049984, 21427531469765285263614058238314319540132878612321796096 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
A084594(n)/a(n) converges to sqrt(3). Related to Newton's iteration.
a(n) is divisible by 2^n.
LINKS
A. V. Aho and N. J. A. Sloane, Some doubly exponential sequences, Fibonacci Quarterly, Vol. 11, No. 4 (1973), pp. 429-437, alternative link.
Eric Weisstein's World of Mathematics, Newton's Iteration.
FORMULA
a(n) = ((1+sqrt(3))^(2^n) - (1-sqrt(3))^(2^n))/(2*sqrt(3)).
For n > 1:
a(n) = 2*a(n-1)*sqrt(3*a(n-1)^2 + A001146(n-1)).
a(n) = 2*a(n-1)*A084594(n-1).
a(n) = A002605(2^n).
MATHEMATICA
For n>0: Table[Sum[Binomial[2^n, 2 r + 1]3^r, {r, 0, 2^(n - 1) - 1}], {n, 1, 8}]
PROG
(PARI) a(n) = if (n==0, 1, sum(r=0, 2^(n-1)-1, binomial(2^n, 2*r+1)*3^r)); \\ Michel Marcus, Sep 09 2019; corrected Jun 13 2022
CROSSREFS
Sequence in context: A013000 A013178 A306000 * A273193 A002543 A125791
KEYWORD
easy,nonn
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), May 31 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 May 2 14:29 EDT 2024. Contains 372197 sequences. (Running on oeis4.)