I created a table to find primes What I did was understand that if you divide every number in half we get a unique number. e.g. 5 is 5/2, and 3 is 3/2, so by including more columns we create a full range of unique identities in a spectrum by dividing by 3 then 4 and so on.
Denominator and numerator values lead to primes after very few calculations.
How I made this table is quite simple. For the case of 1 I created columns like this: 1 , 1 + 1/2, 1 + 1/2 + 1/3, 1 + 1/2 + 1/3 + 1/4 and 1 + 1/2 + 1/3 +1/4 + 1/5 ....
and for 5 it was the same thing I created similarly identical columns: 5, 5 + 5/2, 5 + 5/2 + 5/3, 5 + 5/2 + 5/3 + 5/4, 5 + 5/1 + 5/2 + 5/3 + 5/4 + 5/5 ...
In the first column is easy to see every number is over 1, then in the following, we have a change between 1s and 2s which does have a binary feel to it. Then the sequence gets more mysterious. Yes this is simply a harmonic sequence but I added more values for my numerator which bridges the gap and helps us locate primes.