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!)
A265294 Decimal expansion of Sum_{n>=1} (x - c(2n-1)), where c = convergents to (x = sqrt(3)). 4
8, 0, 2, 5, 8, 3, 0, 9, 0, 8, 0, 3, 5, 1, 4, 8, 3, 4, 3, 7, 7, 8, 7, 4, 1, 8, 1, 2, 6, 3, 0, 4, 2, 4, 9, 6, 0, 5, 8, 6, 0, 4, 7, 7, 6, 8, 9, 5, 1, 3, 2, 7, 7, 7, 0, 1, 7, 7, 4, 1, 8, 5, 1, 4, 8, 4, 1, 4, 0, 6, 0, 8, 4, 4, 8, 7, 0, 0, 3, 0, 2, 2, 1, 7, 9, 4 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
From Peter Bala, Aug 24 2022: (Start)
Equals 2*sqrt(3)*Sum_{n >= 1} 1/( 1 + (2+sqrt(3))^(2*n-1) ).
A more rapidly converging series for the constant is 2*sqrt(3)*Sum_{n >= 1} x^(n*(n+1)/2)/(x^n - 1), where x = sqrt(3) - 2. See A001227. (End)
EXAMPLE
sum = 0.8025830908035148343778741812630...
MAPLE
x := sqrt(3) - 2:
evalf(2*sqrt(3)*add( x^(n*(n+1)/2)/(x^n - 1), n = 1..18), 100); # Peter Bala, Aug 24 2022
MATHEMATICA
x = Sqrt[3]; z = 600; c = Convergents[x, z];
s1 = Sum[x - c[[2 k - 1]], {k, 1, z/2}]; N[s1, 200]
s2 = Sum[c[[2 k]] - x, {k, 1, z/2}]; N[s2, 200]
N[s1 + s2, 200]
RealDigits[s1, 10, 120][[1]] (* A265294 *)
RealDigits[s2, 10, 120][[1]] (* A265295 *)
RealDigits[s1 + s2, 10, 120][[1]](* A265296 *)
CROSSREFS
Sequence in context: A261168 A329086 A342200 * A062522 A117888 A331542
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 07 2015
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 07:26 EDT 2024. Contains 371782 sequences. (Running on oeis4.)