1

Let $n$ be a positive integer and define $a_{n}=4(1\cdot 2\cdot3 \cdots n)-1.$ Let $p$ be a prime number such that $p\mid a_{n}.$ Prove that $$p>n.$$

CIJ
  • 3,437
  • 1
  • 12
  • 19

2 Answers2

1

If $p\leq n$ then $p | n!$ since $n!=1 \cdot 2 \cdot... \cdot p \cdot... \cdot n$ Then you will have $p|4n!-1$ and $p|n!$. which means $p|1$. That cannot be true.

christina_g
  • 150
  • 1
  • 2
  • 13
1

Given a prime number $p \geq 2$, if $p \leq n$, then $p \mid n!$ as well as $4n!$ but not $4n! - 1$. Therefore we need $p > n$ such that $p \nmid n!$ nor $4n!$ in order to allow the possibility that $p \mid 4n! - 1$.

To give a concrete example: consider $n = 4$ and $p = 5$ or $19$. Then we have $4n! - 1 = 95 = 5 \times 19$. The primes less than $4$ are $2$ and $3$, but obviously $96$ is quite divisible by both of those.

Bob Happ
  • 582