Euler's totient function
(include/algebra/eulers_totient_function.hpp)
Euler の $\varphi$ 関数が定義されています。
totient_function(n)
$\varphi (n)$ の値、すなわち $n$ 以下の正整数のうち $n$ と互いに素であるものの個数を返します。
totient_function_sequence(n)
$0, \varphi(1), \varphi(2), \ldots, \varphi(n-1), \varphi(n)$ が格納された、要素数 $n + 1$ の配列 (std::vector
) を返します。
Verified with
Code
Back to top page