Skip to content

Instantly share code, notes, and snippets.

@siddMahen
Created April 19, 2014 13:18
Show Gist options
  • Select an option

  • Save siddMahen/11084187 to your computer and use it in GitHub Desktop.

Select an option

Save siddMahen/11084187 to your computer and use it in GitHub Desktop.
using Winston
x = Int[]
y = Int[]
for i = 2:20, j = 2:20
if (rem(i,j) != 0) && (rem(BigInt(i)^i,BigInt(j)^j) == 0)
push!(x,i)
push!(y,j)
end
end
scatter(x,y,1,sqrt(1:10))
savefig("exceptions.png")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment