If N is a positive integer less than 31, how many values can N take so that (n + 1) is a factor of n! ?
N=0, 1, 2 are not feasible; N+1 can not be prime;
Possible values of N = {3, 5, 7, 8, 9, 11, 13, 14, 15, 17, 19, 20, 21, 23, 24, 25, 26, 27, 29}
N = 3; N! = 6; N+1=4 is NOT a factor of N!
N = 5; N! = 120; N+1=6=2*3 is a factor of N! : Possible case #1
N = 7; N! = 5040; N+1=8=2^3 is a factor of N! : Possible case #2
N = 8; N! = 40320; N+1=9=3^2 is a factor of N! : Possible case #3
N = 9; N! = 9*40320; N+1=10=2*5 is a factor of N! : Possible case #4
N = 11; N! = 11!; N+1=12=2^2*3 is a factor of N! : Possible case #5
N = 13; N! = 13!; N+1=14 is a factor of N! : Possible case #6
N = 14; N! = 14!; N+1=15=3*5 is a factor of N! : Possible case #7
N = 15; N! = 15!; N+1=16=2^3 is a factor of N! : Possible case #8
N = 17; N! = 17!; N+1=18=2*3^2 is a factor of N! : Possible case #9
N = 19; N! = 19!; N+1=20=2^2*5 is a factor of N! : Possible case #10
N = 20; N! = 20!; N+1=21=3*7 is a factor of N! : Possible case #11
N = 21; N! = 21!; N+1=22=2^11 is a factor of N! : Possible case #12
N = 23; N! = 23!; N+1=24=2^3*3 is a factor of N! : Possible case #13
N = 24; N! = 24!; N+1=25=5^2 is a factor of N! : Possible case #14
N = 25; N! = 25!; N+1=26=2*13 is a factor of N! : Possible case #15
N = 26; N! = 26!; N+1=27=3^3 is a factor of N! : Possible case #16
N = 27; N! = 27!; N+1=28=2^2*7 is a factor of N! : Possible case #17
N = 29; N! = 29!; N+1=30=2*3*5 is a factor of N! : Possible case #18
IMO B