- UID
- 579779
- 在线时间
- 小时
- 注册时间
- 2010-11-3
- 最后登录
- 1970-1-1
- 主题
- 帖子
- 性别
- 保密
|
2) h(100) contains all the prime numbers between 2 (from 2) and 47 (from 94). 请问,这一步有些不理解,原文不是说 h(100)是 product of (all the even number from) 2 to n 吗? 谢谢 -- by 会员 amcv (2010/12/5 17:34:15)
2, 4, 6, 8, 10, 12, 14, 16, 18, . . . 92, 94, 96, 98, 100
is the same as
2, 2*2, 2*3, 2*4, 2*5, 2*6, 2*7, 2*8, 2*9, . . . 2*46, 2*47, 2*48, 2*49, 2*50
So the product of the second series contains factors of 2 and 2, 3, 4 ,5, 6, 7, 8, 9, . . . 46, 47, 48, 49, 50. 47 is the biggest factor of h(100), which is a prime number. |
|