Processing math: 100%
Ask Your Question
1

I cannot seem to figure out what's wrong with the following Sage / Pari-GP code

asked 4 years ago

Basically, I would like to search for counterexamples to my conjecture that (2xyσ(xy))<(2xσ(x))(σ(y)y) where σ is the sum of divisors.

I tried using the following Pari-GP script in Sage Cell Server:

for(x=1, 100000, for(y=1, 100000, if(2*x*y-sigma(x*y) >= (2x-sigma(x))*(sigma(y)-y),print(x,"   ",y))))

However, it is returning the following error message:

***   syntax error, unexpected ')', expecting )-> or ',': 
  ***   ...-sigma(x*y)>=(2x-sigma(x))*(sigma(y)-y),print(
  ***                               ^---------------------

I did already check and verified that all the parentheses are in their proper places. I also checked for missing asterisks and verified that there are none.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

Got it! There was indeed a missing asterisk, after all!

The Pari-GP script should have been coded as such:

for(x=1, 100000, for(y=1, 100000, if(2*x*y-sigma(x*y) >= (2*x-sigma(x))*(sigma(y)-y),print(x,"   ",y))))

I am able to run this version of the script now.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 658 times

Last updated: Sep 10 '20