3

$\sum_{i=1}^{N} \frac{1}{B(x+i, i)} = \frac{1}{B(x+1, 1)} + \frac{1}{B(x+2, 2)} + \ldots + \frac{1}{B(x+N, N)}$

where ${N}$ is fixed value. is there any simple expression exist for x in the above expression?

or x converges to somewhere if ${N}$ is enoughly large?

No Yeah
  • 43
  • 5
  • 5
    Welcome to the Mathematica Stack Exchange. As written, this question can be more suitably answered at the MathSE site. If this is a Mathematica related question, then please include code that you have tried so far and include a definition for B. Also note that N is a reserved symbol in Mathematica. Thanks. – Syed Sep 15 '23 at 09:03
  • 5
    Define $B$..... – David G. Stork Sep 15 '23 at 09:44

1 Answers1

4
$Version

(* "13.3.1 for Mac OS X ARM (64-bit) (July 24, 2023)" *)

Clear["Global`*"]

Assuming that B represents the Euler beta function

(sum[n_, x_] = Inactive[Sum][1/Beta[x + i, i], {i, 1, n}]) // 
  TraditionalForm

enter image description here

This sum is

(sum[n_, x_] = sum[n, x] // Activate // FullSimplify) // 
  TraditionalForm

enter image description here

The infinite sum diverges; however, it can be Borel regularized

(sumReg[x_] = Sum[1/Beta[x + i, i], {i, 1, ∞},
    Regularization -> "Borel"]) // TraditionalForm

enter image description here

EDIT: As noted by Roman, sumReg[x] can be simplified

(sumReg[x_] = sumReg[x] // FullSimplify) // 
  TraditionalForm

enter image description here

This function has odd symmetry

sumReg[-x] == -sumReg[x] // FullSimplify

(* True *)

Plot[sumReg[x], {x, 0, 10 π}, Frame -> True, FrameLabel -> (Style[#, 14] & /@ {x, sumReg})]

enter image description here

Bob Hanlon
  • 157,611
  • 7
  • 77
  • 198
  • Using FullSimplify on the Borel-regularized result gives a much simpler $\frac{1}{9} \left(\sqrt{3} \sin \left(\frac{\pi x}{3}\right)-3 x \cos \left(\frac{\pi x}{3}\right)\right)$. – Roman Sep 15 '23 at 19:55
  • @Roman - thanks, I added that. – Bob Hanlon Sep 15 '23 at 20:55
  • Instead of bitmap images of TraditionalForm expressions, you can use TeXForm and paste the result here for automatic rendering. – Roman Sep 16 '23 at 05:10