File: Zeta.hs

package info (click to toggle)
haskell-arithmoi 0.13.0.0-1
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 988 kB
  • sloc: haskell: 10,437; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 606 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- |
-- Module:      Math.NumberTheory.Zeta
-- Copyright:   (c) 2018 Alexandre Rodrigues Baldé, Andrew Lelechenko
-- Licence:     MIT
-- Maintainer:  Andrew Lelechenko <andrew.lelechenko@gmail.com>
--
-- Numeric evaluation of various zeta-functions.

{-# LANGUAGE ScopedTypeVariables #-}

module Math.NumberTheory.Zeta
  ( -- * Riemann zeta-function
    zetas
  , zetasEven
    -- * Dirichlet beta-function
  , betas
  , betasOdd
    -- * Hurwitz zeta-functions
  , zetaHurwitz
  ) where

import Math.NumberTheory.Zeta.Dirichlet
import Math.NumberTheory.Zeta.Hurwitz
import Math.NumberTheory.Zeta.Riemann