Inspired By Sharky Kesa

Calculus Level 5

n = 2 ζ ( n ) + ζ ( 2 n ) n ! = ? \large \sum_{n=2}^{\infty} \dfrac{\zeta(n)+\zeta(2n)}{n!} = \, ?

Notation : ζ ( ) \zeta(\cdot) denotes the Riemann zeta function .


Inspiration .


The answer is 1.8407.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

K T
Nov 11, 2019

It converges very rapidly, so numerical approach is easy

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import math;

def zeta(k):
    i=1;
    sum=0;
    f=math.log(k);
    term=1;
    sum=1;
    while term > 1E-10:
        i+=1;
        term = i**(-k);
        sum += term;
    return sum;

def determine():
    sum=0;
    term=1;
    k=1;
    while term>1E-10:
        k+=1;
        term =(zeta(k)+zeta(2*k))/math.factorial(k);
        sum+=term;
    return sum;

print(determine());

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...