AIME 2026 I · 第 13 题
AIME 2026 I — Problem 13
题目详情
Problem
For each nonnegative integer less than , define
where is defined to be when . That is, is the sum of all the binomial coefficients of the form for which and is a multiple of . Find the number of integers in the list that are multiples of the prime number .
解析
Solution 1
Consider polynomials in , that is, polynomials with integer coefficients taken modulo . When viewed as functions (note that we have removed from the domain), it turns out that every such polynomial is equivalent to a unique polynomial of degree at most . For example, is equivalent to by Fermat's little theorem. This equivalent polynomial with smaller coefficients can always be constructed by simply taking all exponents modulo . The uniqueness of the reduced polynomial can be proven by using a finite field Fourier transform: If we expand any polynomial of degree at most ,
then
This lets us determine the coefficients of exactly by evaluating it on , so the polynomial must be unique.
The problem statement tells us the are the coefficients of the reduction of :
We can use Fermat's little theorem to reduce in a different way. For all , we can evaluate that . Because reductions are unique, this means that is the reduction we seek. Equating coefficients,
we get that . Because is prime and is less than , none of the binomial coefficients are equivalent to zero. So, is zero exactly when , i.e., . There are such . ~Gray_Wolf
Solution 2 ~ Jesse Zhang (FUNKCCP)
Let . Since is a prime number, the field is a finite field of order . Let and . Observe that . The problem asks for the number of indices such that .
The sum corresponds to the sum of every -th coefficient of the binomial expansion of . Specifically, consider the polynomial in the polynomial ring . By the binomial theorem,
To isolate the coefficients where the exponent satisfies , we analyze the polynomial modulo . In the quotient ring , we have the identity , which implies . Consequently, the reduction of is given by
We proceed to compute the explicit form of . The polynomial splits completely in , and its roots are exactly the non-zero elements of , denoted . Let be any such root. By Fermat's Little Theorem, for any , we have .
We evaluate the polynomial at an arbitrary root of . First, we express in terms of :
Thus, . Then, the value of the polynomial at is:
We distinguish two cases for :
$\bullet$ Case 1: $\alpha \neq -1$.
Then $1+\alpha \in \mathbb{F}_p^\times$. Since the order of the multiplicative group is $d = p-1$, we have $(1+\alpha)^d = 1$. The expression simplifies to:
$
(1+\alpha)^N = 1^{19} \cdot (1+\alpha)^{462} = (1+\alpha)^{462}.
$
$\bullet$ Case 2: $\alpha = -1$.
Then $1+\alpha = 0$. The left side becomes $0^N = 0$ (since $N \ge 1$). The term $(1+\alpha)^{462} = 0^{462} = 0$. Thus, the equality $(1+\alpha)^N = (1+\alpha)^{462}$ holds strictly.In both cases, for all roots of . Let . Since the polynomials and agree on all distinct roots of , and the degree of is , which is strictly less than , Lagrange interpolation implies that these polynomials are identical in .
Therefore, equating the coefficients of :
We seek the number of integers such that . The binomial coefficient modulo a prime is zero if and only if (assuming ). Here, .
$\bullet$ For $0 \le r \le 462$, $\binom{462}{r} \not\equiv 0 \pmod{503}$.
$\bullet$ For $463 \le r \le 501$, $\binom{462}{r} = 0$, so $S_r \equiv 0 \pmod{503}$.The values of satisfying the condition are exactly the integers in the range . The count is:

The number of integers in the list that are multiples of is .