Preview for editing tables

In this editor you can enter or edit tables in YAML format, and you can get a preview of how numberdb would render it. You cannot save changes here. Once everything looks good, upload it to the git repository numberdb-data.
— preview —
Values of the prime zeta function at rational numbers
edit on github
Numbers
$s$ 
$P(s)$
INPUT{numbers.yaml} (not shown in preview)
Definition
For $\Re(s)>1$, one defines $P(s) = \sum_{p\in \text{primes}} p^{-s}$, which can be analytically continued to $\Re(s)>0$. This list contains values $P(s)$ for certain rational numbers $s$.
Parameters
$s$
—   complex number ($\Re(s) > 0$, $s$ not the inverse of a squarefree integer)
Comments
(1)
$P(s)$ has its poles at $1/n$, where $n$ runs over all squarefree positive integers.
Programs
(P1)
Sage
from mpmath import mp
numbers = {a/b: mp.primezeta(a/b)
                for b,a in cartesian_product(([1..20],[1..20])) 
                if gcd(a,b) == 1 and a/b != 1 and
                (a != 1 or not b.is_squarefree())}
Links
[1]
mpmath (Python library)
Data properties
Entries are of type: real number
Table is complete: no
Reliability: computed with mpmath [1]