Evening all.
So as you may have noticed, I haven't posted much lately, because I haven't made any progress.
But I think I just had a mini breakthrough.
I can't explain it better than this at the moment:
We have the grid organized by (e,n). Any number that is e bigger than a perfect square will be listed in column e.
What about f though? For each entry in the grid, what is the f value and how does it change in the column e?
Our semiprime value c has a constant e & f. There are many many entries in column e, but only 2 entries will share the same f.
So lets look at f in (e, 1).
If e is odd, the series of f is:
f = 4, 16, 36, 64
f = 2^2, 4^2, 6^2, 8^2
If e is even, the series of f is:
f = 1, 9, 25, 49, 81
f = 1^2, 3^2, 5^2, 7^2, 9^2
This is super interesting, since we should be able to find our axb record by simply searching for a matching f.
I'm trying to figure out a number of things as next steps:
-
How does this pattern change as n grows?
-
This seems to be related to x+1, more analysis needed for n>1
-
How do we use the na cell in (e,1) to locate our axb for n>1?
A little more info. This came out of analyzing pythagorean triplets. They can only be 3 even numbers, or an even and 2 odds. We only care about the second case.
In the c=145 example, the na records in (e,1) both have the even side of the triangle = f (24), and the hypotenuse = a value in (e, 1).