You are not logged in.
I don't mind having the discussion.
"Believe nothing, no matter where you read it, or who said it, no matter if I have said it, unless it agrees with your own reason and your own common sense" - Buddha?
"Data! Data! Data!" he cried impatiently. "I can't make bricks without clay."
Offline
Thanks gAr.
Can you post the accelerator Borwein found?
I am sure I showed it to you already. I know we discussed it. It is also useless for this sequence. I used Romberg and it worked well.
Want the code for Borwien's?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Yes. Is it the one with all the square roots and stuff?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
accelerate[n_]:=Module[{d,b,c,s},
d=(3+Sqrt[8])^n;
d=(d+1/d)/2;
b=-1;
c=-d;
s=0;
Table[c=b-c;s=s+c*a[k];b=(k+n)(k-n) b/((k+1/2)(k+1)),{k,0,n-1}];
s/d]
Remember how to use it?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
That's the one I was thinking of.
I set a[n] to be the array of the series terms. Then I do N[acc[number_of_terms],number_of_digits.
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
I am pretty sure it is just for alternating sequences.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Yes, I know. It also has to start at 0.
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
You can adjust the index to handle that. Anyways it is not useful on this problem.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Hi bobbym
You didn't tell me how we actually get the numerical answer here.
Last edited by anonimnystefy (2013-12-11 10:57:23)
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
Hi;
See post #527.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Hm, isn't romberg for integrals?
Here lies the reader who will never open this book. He is forever dead.
Taking a new step, uttering a new word, is what people fear most. ― Fyodor Dostoyevsky, Crime and Punishment
The knowledge of some things as a function of age is a delta function.
Offline
It is for sequences that are the result of numerical integrations on an integral. Actually it is a bunch of sequence accelerators.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline