N=int(input()) ans=[4] for i in range(1,N): ans.append(3*i) print(ans)