pub trait BernoulliNumber {
type Output;
// Required method
fn bernoulli_number(&self, n: usize) -> Vec<Self::Output>;
}
Expand description
ベルヌーイ数
Required Associated Types§
Required Methods§
Sourcefn bernoulli_number(&self, n: usize) -> Vec<Self::Output>
fn bernoulli_number(&self, n: usize) -> Vec<Self::Output>
ベルヌーイ数$B_0 \ldots B_n$を計算する。