返回题库

PUMaC 2023 · 数论(A 组) · 第 36 题

PUMaC 2023 — Number Theory (Division A) — Problem 36

专题
Discrete Math / 离散数学
难度
L3
来源
PUMaC

题目详情

Number Theory A 3 3 3

  1. Find the integer x for which 135 + 138 = x − 1.
  2. A number is called good if it can be written as the sum of the squares of three consecutive positive integers. A number is called excellent if it can be written as the sum of the squares 2 2 2 of four consecutive positive integers. (For instance, 14 = 1 + 2 + 3 is good and 30 = 2 2 2 2 1 + 2 + 3 + 4 is excellent.) A good number G is called splendid if there exists an excellent number E such that 3 G − E = 2025. If the sum of all splendid numbers is S , find the remainder when S is divided by 1000.
  3. Call an arrangement of n not necessarily distinct nonnegative integers in a circle wholesome when, for any subset of the integers such that no pair of them is adjacent in the circle, their average is an integer. Over all wholesome arrangements of n integers where at least two of them are distinct, let M ( n ) denote the smallest possible value for the maximum of the integers in the arrangement. What is the largest integer n < 2023 such that M ( n + 1) is strictly greater than M ( n )?
  4. What is the smallest possible sum of six distinct positive integers for which the sum of any five of them is prime?
  5. You play a game where you and an adversarial opponent take turns writing down positive integers on a chalkboard; the only condition is that, if m and n are written consecutively on the board, gcd( m, n ) must be squarefree. If your objective is to make sure as many integers as possible that are strictly less than 404 end up on the board (and your opponent is trying to minimize this quantity), how many more such integers can you guarantee will eventually be written on the board if you get to move first as opposed to when your opponent gets to move first?
  6. How many positive integers n ≤ lcm(1 , 2 , . . . , 100) have the property that n gives different remainders when divided by each of 2 , 3 , . . . , 100? d
  7. Define f ( n ) to be the smallest integer such that for every positive divisor d | n , either n | d or d f ( n ) d | n . How many positive integers b < 1000 which are not squarefree satisfy the equation f (2023) · f ( b ) = f (2023 b )?
  8. Let S = 0 , S = 1, and for n ≥ 2 let S = S + 5 S . What is the sum of the five smallest 0 1 n n − 1 n − 2 primes p such that p | S ? p − 1 Name: Team: Write answers in table below: Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 1
解析
  1. Then, looking at 4 times an odd number, we see there are 26 possibilities (odd primes and 1) plus 9 possibilities (3 times an odd prime) plus 5 possibilities (5 times an odd prime) plus 2 possibilities (7 times an odd prime). Next, looking at 8 times an odd number, we see there are 15 possibilities (odd primes and 1) plus 4 possibilities (3 times an odd prime) plus 1 possibility (35); next, looking at 16 times an odd number, we see there are 9 possibilities plus 2 possibilities; next, looking at 32 times an odd number, we see that there are 5 possibilities, then for 64 there are 3 possibilities, for 128 there are 2, and for 256 there is just the 1. In total, we get 11 + 26 + 9 + 5 + 2 + 15 + 4 + 1 + 9 + 2 + 5 + 3 + 2 = 94.