I have the following summation: $$\sum_{v=0}^{v=n} {n \choose v} (A)^v (\frac{1}{B+v}) $$ How do I calculate it? I know we can use the binomial theorem directly if we do not have the $\frac{1}{B+v}$ term. I can also use integration as a crude way to get the summation if I do not have the $n \choose v$ term. But how do I get the summation with both of them? Would differentiating the binomial theorem or something like that help?
For a bit of background, this summation actually comes from me trying to find the expectation of a random variable X. The probability mass of a specific point $\frac{1}{B+v}$ for that random variable is ${n \choose v} \cdot A^v$. I would also be happy if there is some way to calculate this expectation without going into the summation. I mean some method like moment generating function (which I tried but couldn't apply) which can maybe circumvent this.
I also apologize if something is wrong with my post -this is my first post in stack exchange and I am ready to correct any errors that I may have made.
Thanks!
According to wolfram Alpha, $$S={\frac 1B}\text{ }_2F_1(B,-n;B+1;-A)$$ where: $$\text{ }_2F_1(-a,b;c;z)=\sum_{k=0}^\infty(-1)^k{a\choose k}\frac{(b)_k}{(c)_k}z^k$$ where $a,b$ one of them is negative (in this case I included the sign). In its typical form your sum would be written as: $$S=\frac 1B\sum_{k=0}^\infty(-1)^k\frac{A^k(B)_k(-n)_k}{k!(B+1)_k}$$ $$(x)_k=\prod_{j=0}^{k-1}(x-j)$$ yeah this doesn't look particularly nice. we can try and break it apart a little bit since: $$\frac{(B)_k}{(B+1)_k}=\frac{B(B-1)(B-2)...(B-k+1)}{(B+1)(B)(B-1)...(B-k+2)}=\frac{B-k+1}{B+1}=1-\frac{k}{B+1}$$ $$(-n)_k=(-1)^k\frac{(n+k-1)!}{(n-1)!}$$ and so we have: $$S=\frac 1B\sum_{k=0}^\infty\frac{A^k(n+k-1)!}{k!(n-1)!}\left(1-\frac{k}{B+1}\right)$$ I'm struggling to get this back to your original formula but hope this helps