Skip to content

Commit

Permalink
more zeta values
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatschke committed Mar 4, 2021
1 parent 2daf963 commit 7211694
Show file tree
Hide file tree
Showing 3 changed files with 410 additions and 4 deletions.
Expand Up @@ -27,8 +27,8 @@ Programs:
program-sage:
language: Sage
code: |
numbers = {a/b: gamma(RIF(a/b))
for b,a in cartesian_product(([1..16],[-30..30]))
numbers = {a/b: zeta(a/b)
for b,a in cartesian_product(([1..20],[-40..40]))
if gcd(a,b) == 1 and a/b != 1}
References:
Expand Down
Expand Up @@ -6,8 +6,8 @@ from utils.utils import real_interval_to_sage_string
path = 'data/Special_values/Values_of_the_Riemann_zeta_function_at_rational_numbers/'

prec10 = 100 #relative precision in base 10
b_range = [1..16]
a_range = [-30..30]
b_range = [1..20]
a_range = [-40..40]

RIFprec = RealIntervalField(prec10 * 3.4 * 2)

Expand Down

0 comments on commit 7211694

Please sign in to comment.