Nature of constant $c$ from...
If we take
$$sumlimits_{k=1}^{n}(1/k)^{1/k}=a(n)$$
so
$$limlimits_{ntoinfty}left(a(n)-n+frac{log^2(n)}{2}-1right)=c$$
What is the nature of constant $c$? Is it really constant (maybe it function or sum of function and constant)?
summation logarithms approximation constants
|
show 4 more comments
If we take
$$sumlimits_{k=1}^{n}(1/k)^{1/k}=a(n)$$
so
$$limlimits_{ntoinfty}left(a(n)-n+frac{log^2(n)}{2}-1right)=c$$
What is the nature of constant $c$? Is it really constant (maybe it function or sum of function and constant)?
summation logarithms approximation constants
The RHS makes no sense, it contains $n$ while the limit on the LHS does not. Please correct.
– gammatester
Oct 29 '18 at 14:46
@gammatester, thank you for comment! Better now?
– user514787
Oct 29 '18 at 14:54
1
Is my edit correct?
– gammatester
Oct 29 '18 at 14:58
@gammatester, absolutely.
– user514787
Oct 29 '18 at 15:00
1
I get $c=0.00900716488816377650177841067803580738540696574162ldots$
– metamorphy
Nov 22 '18 at 1:34
|
show 4 more comments
If we take
$$sumlimits_{k=1}^{n}(1/k)^{1/k}=a(n)$$
so
$$limlimits_{ntoinfty}left(a(n)-n+frac{log^2(n)}{2}-1right)=c$$
What is the nature of constant $c$? Is it really constant (maybe it function or sum of function and constant)?
summation logarithms approximation constants
If we take
$$sumlimits_{k=1}^{n}(1/k)^{1/k}=a(n)$$
so
$$limlimits_{ntoinfty}left(a(n)-n+frac{log^2(n)}{2}-1right)=c$$
What is the nature of constant $c$? Is it really constant (maybe it function or sum of function and constant)?
summation logarithms approximation constants
summation logarithms approximation constants
edited Oct 29 '18 at 16:00
asked Oct 29 '18 at 14:38
user514787
695210
695210
The RHS makes no sense, it contains $n$ while the limit on the LHS does not. Please correct.
– gammatester
Oct 29 '18 at 14:46
@gammatester, thank you for comment! Better now?
– user514787
Oct 29 '18 at 14:54
1
Is my edit correct?
– gammatester
Oct 29 '18 at 14:58
@gammatester, absolutely.
– user514787
Oct 29 '18 at 15:00
1
I get $c=0.00900716488816377650177841067803580738540696574162ldots$
– metamorphy
Nov 22 '18 at 1:34
|
show 4 more comments
The RHS makes no sense, it contains $n$ while the limit on the LHS does not. Please correct.
– gammatester
Oct 29 '18 at 14:46
@gammatester, thank you for comment! Better now?
– user514787
Oct 29 '18 at 14:54
1
Is my edit correct?
– gammatester
Oct 29 '18 at 14:58
@gammatester, absolutely.
– user514787
Oct 29 '18 at 15:00
1
I get $c=0.00900716488816377650177841067803580738540696574162ldots$
– metamorphy
Nov 22 '18 at 1:34
The RHS makes no sense, it contains $n$ while the limit on the LHS does not. Please correct.
– gammatester
Oct 29 '18 at 14:46
The RHS makes no sense, it contains $n$ while the limit on the LHS does not. Please correct.
– gammatester
Oct 29 '18 at 14:46
@gammatester, thank you for comment! Better now?
– user514787
Oct 29 '18 at 14:54
@gammatester, thank you for comment! Better now?
– user514787
Oct 29 '18 at 14:54
1
1
Is my edit correct?
– gammatester
Oct 29 '18 at 14:58
Is my edit correct?
– gammatester
Oct 29 '18 at 14:58
@gammatester, absolutely.
– user514787
Oct 29 '18 at 15:00
@gammatester, absolutely.
– user514787
Oct 29 '18 at 15:00
1
1
I get $c=0.00900716488816377650177841067803580738540696574162ldots$
– metamorphy
Nov 22 '18 at 1:34
I get $c=0.00900716488816377650177841067803580738540696574162ldots$
– metamorphy
Nov 22 '18 at 1:34
|
show 4 more comments
1 Answer
1
active
oldest
votes
Computed it using PARI/GP (this is not an answer to the question on "nature"...). Write
$$1+c=sum_{n=1}^{infty}left((1/n)^{1/n}-1+frac{ln^2(n+1)-ln^2n}{2}right)=F+G$$
(PARI fails to compute it in this form), where $F=displaystylesum_{n=1}^{infty}f(n)$, $G=displaystylesum_{n=1}^{infty}gBig(frac{ln n}{n}Big)$,
$$f(z)=frac{ln^2(1+z)-ln^2z}{2}-frac{ln z}{z},quad g(z)=e^{-z}-1+z.$$
Here, PARI's $texttt{sumnum}$ and $texttt{sumnumap}$ compute $G$ correctly, but not $F$. It seems that in
$$F=frac{f(1)}{2}+int_1^infty f(x),dx+iint_0^inftyfrac{f(1+it)-f(1-it)}{e^{2pi t}-1},dt$$
(this is Abel-Plana formula), PARI cannot (or I couldn't make it) compute the elementary
$$int_1^infty f(x),dx=-(1-ln2)^2.$$
But, armed with these handmade interventions, I get it working:
f(z)=(log(1+z)^2-log(z)^2)/2-log(z)/z;
g(t)=imag(f(1-I*t)-f(1+I*t))/(exp(2*Pi*t)-1);
a(n)={my(r=log(n)/n);return(exp(-r)-1+r)};
b=(log(2)/2)^2-(1-log(2))^2-1;
b+sumnum(n=1,a(n))+intnum(t=0,[+oo,2*Pi],g(t))
gives $0.0090071648881637765017784106780358074$ (with the default precision).
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2976201%2fnature-of-constant-c-from-lim-limits-n-to-infty-left-sum-limits-k-1n%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Computed it using PARI/GP (this is not an answer to the question on "nature"...). Write
$$1+c=sum_{n=1}^{infty}left((1/n)^{1/n}-1+frac{ln^2(n+1)-ln^2n}{2}right)=F+G$$
(PARI fails to compute it in this form), where $F=displaystylesum_{n=1}^{infty}f(n)$, $G=displaystylesum_{n=1}^{infty}gBig(frac{ln n}{n}Big)$,
$$f(z)=frac{ln^2(1+z)-ln^2z}{2}-frac{ln z}{z},quad g(z)=e^{-z}-1+z.$$
Here, PARI's $texttt{sumnum}$ and $texttt{sumnumap}$ compute $G$ correctly, but not $F$. It seems that in
$$F=frac{f(1)}{2}+int_1^infty f(x),dx+iint_0^inftyfrac{f(1+it)-f(1-it)}{e^{2pi t}-1},dt$$
(this is Abel-Plana formula), PARI cannot (or I couldn't make it) compute the elementary
$$int_1^infty f(x),dx=-(1-ln2)^2.$$
But, armed with these handmade interventions, I get it working:
f(z)=(log(1+z)^2-log(z)^2)/2-log(z)/z;
g(t)=imag(f(1-I*t)-f(1+I*t))/(exp(2*Pi*t)-1);
a(n)={my(r=log(n)/n);return(exp(-r)-1+r)};
b=(log(2)/2)^2-(1-log(2))^2-1;
b+sumnum(n=1,a(n))+intnum(t=0,[+oo,2*Pi],g(t))
gives $0.0090071648881637765017784106780358074$ (with the default precision).
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
add a comment |
Computed it using PARI/GP (this is not an answer to the question on "nature"...). Write
$$1+c=sum_{n=1}^{infty}left((1/n)^{1/n}-1+frac{ln^2(n+1)-ln^2n}{2}right)=F+G$$
(PARI fails to compute it in this form), where $F=displaystylesum_{n=1}^{infty}f(n)$, $G=displaystylesum_{n=1}^{infty}gBig(frac{ln n}{n}Big)$,
$$f(z)=frac{ln^2(1+z)-ln^2z}{2}-frac{ln z}{z},quad g(z)=e^{-z}-1+z.$$
Here, PARI's $texttt{sumnum}$ and $texttt{sumnumap}$ compute $G$ correctly, but not $F$. It seems that in
$$F=frac{f(1)}{2}+int_1^infty f(x),dx+iint_0^inftyfrac{f(1+it)-f(1-it)}{e^{2pi t}-1},dt$$
(this is Abel-Plana formula), PARI cannot (or I couldn't make it) compute the elementary
$$int_1^infty f(x),dx=-(1-ln2)^2.$$
But, armed with these handmade interventions, I get it working:
f(z)=(log(1+z)^2-log(z)^2)/2-log(z)/z;
g(t)=imag(f(1-I*t)-f(1+I*t))/(exp(2*Pi*t)-1);
a(n)={my(r=log(n)/n);return(exp(-r)-1+r)};
b=(log(2)/2)^2-(1-log(2))^2-1;
b+sumnum(n=1,a(n))+intnum(t=0,[+oo,2*Pi],g(t))
gives $0.0090071648881637765017784106780358074$ (with the default precision).
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
add a comment |
Computed it using PARI/GP (this is not an answer to the question on "nature"...). Write
$$1+c=sum_{n=1}^{infty}left((1/n)^{1/n}-1+frac{ln^2(n+1)-ln^2n}{2}right)=F+G$$
(PARI fails to compute it in this form), where $F=displaystylesum_{n=1}^{infty}f(n)$, $G=displaystylesum_{n=1}^{infty}gBig(frac{ln n}{n}Big)$,
$$f(z)=frac{ln^2(1+z)-ln^2z}{2}-frac{ln z}{z},quad g(z)=e^{-z}-1+z.$$
Here, PARI's $texttt{sumnum}$ and $texttt{sumnumap}$ compute $G$ correctly, but not $F$. It seems that in
$$F=frac{f(1)}{2}+int_1^infty f(x),dx+iint_0^inftyfrac{f(1+it)-f(1-it)}{e^{2pi t}-1},dt$$
(this is Abel-Plana formula), PARI cannot (or I couldn't make it) compute the elementary
$$int_1^infty f(x),dx=-(1-ln2)^2.$$
But, armed with these handmade interventions, I get it working:
f(z)=(log(1+z)^2-log(z)^2)/2-log(z)/z;
g(t)=imag(f(1-I*t)-f(1+I*t))/(exp(2*Pi*t)-1);
a(n)={my(r=log(n)/n);return(exp(-r)-1+r)};
b=(log(2)/2)^2-(1-log(2))^2-1;
b+sumnum(n=1,a(n))+intnum(t=0,[+oo,2*Pi],g(t))
gives $0.0090071648881637765017784106780358074$ (with the default precision).
Computed it using PARI/GP (this is not an answer to the question on "nature"...). Write
$$1+c=sum_{n=1}^{infty}left((1/n)^{1/n}-1+frac{ln^2(n+1)-ln^2n}{2}right)=F+G$$
(PARI fails to compute it in this form), where $F=displaystylesum_{n=1}^{infty}f(n)$, $G=displaystylesum_{n=1}^{infty}gBig(frac{ln n}{n}Big)$,
$$f(z)=frac{ln^2(1+z)-ln^2z}{2}-frac{ln z}{z},quad g(z)=e^{-z}-1+z.$$
Here, PARI's $texttt{sumnum}$ and $texttt{sumnumap}$ compute $G$ correctly, but not $F$. It seems that in
$$F=frac{f(1)}{2}+int_1^infty f(x),dx+iint_0^inftyfrac{f(1+it)-f(1-it)}{e^{2pi t}-1},dt$$
(this is Abel-Plana formula), PARI cannot (or I couldn't make it) compute the elementary
$$int_1^infty f(x),dx=-(1-ln2)^2.$$
But, armed with these handmade interventions, I get it working:
f(z)=(log(1+z)^2-log(z)^2)/2-log(z)/z;
g(t)=imag(f(1-I*t)-f(1+I*t))/(exp(2*Pi*t)-1);
a(n)={my(r=log(n)/n);return(exp(-r)-1+r)};
b=(log(2)/2)^2-(1-log(2))^2-1;
b+sumnum(n=1,a(n))+intnum(t=0,[+oo,2*Pi],g(t))
gives $0.0090071648881637765017784106780358074$ (with the default precision).
edited Nov 29 '18 at 2:29
answered Nov 22 '18 at 2:41
metamorphy
3,6571621
3,6571621
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
add a comment |
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
Thank you very much for helping!
– user514787
Nov 22 '18 at 3:00
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2976201%2fnature-of-constant-c-from-lim-limits-n-to-infty-left-sum-limits-k-1n%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The RHS makes no sense, it contains $n$ while the limit on the LHS does not. Please correct.
– gammatester
Oct 29 '18 at 14:46
@gammatester, thank you for comment! Better now?
– user514787
Oct 29 '18 at 14:54
1
Is my edit correct?
– gammatester
Oct 29 '18 at 14:58
@gammatester, absolutely.
– user514787
Oct 29 '18 at 15:00
1
I get $c=0.00900716488816377650177841067803580738540696574162ldots$
– metamorphy
Nov 22 '18 at 1:34