<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://houzhenliu.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://houzhenliu.github.io/" rel="alternate" type="text/html" /><updated>2026-04-07T11:56:16+00:00</updated><id>https://houzhenliu.github.io/feed.xml</id><title type="html">Houzhen Liu </title><subtitle>Bachelor of Computer Science, USTC</subtitle><author><name>Houzhen Liu</name><email>liuhz0919@mail.ustc.edu.cn</email></author><entry><title type="html">素数定理</title><link href="https://houzhenliu.github.io/posts/2025/05/prime/" rel="alternate" type="text/html" title="素数定理" /><published>2025-05-27T00:00:00+00:00</published><updated>2025-05-27T00:00:00+00:00</updated><id>https://houzhenliu.github.io/posts/2025/05/prime-th</id><content type="html" xml:base="https://houzhenliu.github.io/posts/2025/05/prime/"><![CDATA[<p><b>作者</b>: Houzhen Liu<br />
<b>年份</b>: 2025
</p>

<hr />

<!--more-->
<p><b>引理</b></p>
<p>
Kummer定理：对于任意的正整数 \(n\) 和质数 \(p\)，\(C_n^k\) 的 \(p\) 进制表示中，\(p\) 的指数等于 \(n\) 和 \(k\) 的 \(p\) 进制表示中进位的次数之差。
</p>
<p><a href="https://zhuanlan.zhihu.com/p/550993534">Here is the proof of Kummer’s theorem</a>。</p>

<hr />

<p>
对于任意的 \(N\)，考虑中心组合数 \(C_{2N}^N\)。它的质因子分为两部分：小于等于 \(N\) 的质因子和大于 \(N\) 的质因子。
</p>

<hr />

<p>
对于小于 \(N\) 的质因子，根据 Kummer 定理，\(C_{2N}^N\) 的某个质数 \(p\) 的指数是 \(2N\) 和 \(N\) 的 \(p\) 进制表示中进位次数，少于 \(\log_{p}{2N}\)。
</p>

<p>
对于大于 \(N\) 的质因子，其个数为 \(\Pi(2N) - \Pi(N)\)，即所有大于 \(N\) 且不超过 \(2N\) 的质数个数。
</p>

<p>
而 \(C_{2N}^N\) 的取值范围是 \([2^N, 4^N]\)。
</p>

<p>
代入求 \(\Pi(2N)\) 的下界和递推上界：
</p>

<p>
上界如下：<br />
$$
4^N &gt; \prod_{p \leq N} p^{\log_{p}(2N)} \prod_{p &gt; N} p = (N)^{\Pi(2N)}
$$
得出<br />
$$
\Pi(2N) &lt; O\left(\frac{N}{\log_2 N}\right)
$$
</p>

<p>
另一方面，考虑上界：<br />
$$
2^N &lt; \prod_{N &lt; p &lt; 2N} (2N) = (2N)^{\Pi(2N) - \Pi(N)}
$$
取对数可得<br />
$$
\Pi(2N) - \Pi(N) &gt; O\left(\frac{N}{\log_2 2N}\right)
$$
</p>

<p>
根据之前的结论<br />
$$
\Pi(2N) &gt; \Pi(N) + O\left(\frac{N}{\log_2 N}\right) &gt; O\left(\frac{N}{\log_2 N}\right) + O\left(\frac{N}{\log_2 2N}\right)
$$
于是我们知道<br />
$$
\Pi(2N) &gt; O\left(\frac{N}{2\log_2 N}\right)
$$
</p>

<p>
那么对于任意的 \(N\)，找到离它最近的偶数带入这个式子即可，最近的 \(M^2\) 不会超过 \(N\) 的两倍，因此
</p>

<p>
综上，<br />
$$
\Pi(N) = \Theta\left(\frac{N}{\log_2 N}\right)
$$
</p>]]></content><author><name>Houzhen Liu</name><email>liuhz0919@mail.ustc.edu.cn</email></author><category term="mathematics" /><category term="prime theory" /><summary type="html"><![CDATA[作者: Houzhen Liu 年份: 2025]]></summary></entry></feed>