import matplotlib.pyplot as plt
from numpy import arange, sin

x = arange(1, 3000)
plt.scatter(x, sin(x), s=1)
plt.xscale("log")
plt.show()
#plt.savefig("int_sin.png")
