3 Parameter search results (up to 307) with restrictions
4 Parameter search results (up to 307) with the restriction that both x and 3p-x appear in a tuple
3 Parameter search results (up to 53)
5 Parameter search results for prime 53 (solutions modulo 53, no solutions found)
(updated July 12) Products of arithmetic progressions that are cubes
(updated July 12) Products of arithmetic progressions that are squares
Code
Python 2.7 source code for searching arithmetic progressions whose product is a square
Python 2.7 source code for searching arithmetic progressions whose product is a cube
The main method of the programs is prod(). The program takes 4 inputs with 2 optional inputs: they are:Warning: arrays must be as long as the number of progressions.
Example: prod("output.txt", 100, 3, 2, [1,10,50], [20,50,100]) will search all tuples [x,y,z] with 1 < x < 20, 10 < y < 50 and 50 < z < 100, and check if x(x+1)y(y+1)z(z+1) is a square/cube depending on the program. It outputs all search data to the file output.txt (overwriting any prior text in the file.)