Everybody knows the following infinite series :
n=1∑∞n!1=e−1
which comes out from the Taylor Series of ex. It is a single summation.
What about the following :
n=1∑∞m=1∑∞(n+m)!1
Or, Let's generalize that for n summations :
a0,a1,a2,…,an−1>0∑(a0+a1+a2+⋯+an−1)!1
Does this have a closed form? It is a challenge for you guys!
Challenge1:(Easy) : Find the value of :
n=1∑∞m=1∑∞(n+m)!1
Challenge2:(Hard) : Find the closed form of :
a0,a1,a2,…,an−1>0∑(a0+a1+a2+⋯+an−1)!1
Try them ! I will share my approach the next week.
This note is a part of the set Sequences and Series Challenges.
#Calculus
#Generalize
#InfiniteSequence
#InfiniteSeries
#Challenge
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
Nice question.
Here's my approach:
Denote the required sum by S(n).
Focus on the denominator a0+a1+a2...an−1.
Fix it's value to be some constant k (for now). Consider all the terms in our summation with this denominator. How many such terms are there?
That's easy: the number of such terms is simply the number of solutions to the equation a0+a1+a2...an−1=k
Note that we need solutions in the natural numbers only as all the ai vary only from 1 to infinity.
So, for a given k, the number of such terms is given by (n−1k−1).
Note also, that the smallest possible value of k is n and it goes on up until infinity.
Thus, our summation can be written as:
S(n)=k=n∑∞k!(n−1k−1)
After simplification, this can be written as: S(n)=(n−1)!1k=n∑∞k(k−n)!1
For convenience, let k−n=r.
Thus, S(n)=(n−1)!1r=0∑∞(r+n)(r)!1
We'll deal with the (n−1)! later.
For now, let T(n)=∑r=0∞(r+n)(r)!1
Also, ex=∑r=0∞r!xr.
⇒xn−1ex=r=0∑∞r!xr+n−1
⇒∫01xn−1exdx=∫01r=0∑∞r!xr+n−1dx
Note that the RHS is the expression that we had obtained earlier for T(n).
Thus,
T(n)=∫01xn−1exdx
Integrate this by parts to establish the recurrence relation: T(n)=e−(n−1)T(n−1)
This is a recurrence relation. Solve it and you're done. Once you've found T(n), divide that by (n−1)! to get S(n).
Log in to reply
Very elegant solution!
Just a thing: the expression you obtained from the integral for T(n) should be for T(n+1) instead.
Nice work :)
Log in to reply
Thanks :)
Really enjoyed doing this problem....And yea, it should be T(n+1).
I've edited it now.
Log in to reply
T(n−1) by n−1, in the recursion.
Also replace the coefficient ofLog in to reply
Log in to reply
Its quite tough.