CollegeAnon !LAbIRp9cT. ID: aa2ce9 March 1, 2018, 5:15 a.m. No.4998   🗄️.is 🔗kun   >>4999 >>5007 >>5016

Rusty

>>4996

Fuck it I'm not going to jerk anyone around. This is definitely related to what were doing. Look at this output. These are the continued fractions of the square root of each number. The highlighted part is the part that repeats and the starting element is just our d. Notice that each series ends with the value 2d. Also notice that if 2d is divisible by e (the column after the d column) Then the continued fraction is [d; (2d/e, 2d)] (parenthesis repeats).

 

Then I thought, if we have any a,b and a divides b and b is even, we can make a repeating sequence [x; a, b] where x is b/2. Moreover, this value would be the same as dd + e (which would be xx + b/a =b^2/4 + b/a)

 

To generalize this to any two factors, we can say the following:

for any a,b, where a or b is even (so that ab is even), we can make a continued fraction [(ab)/2; (a, ab)] which evaluates to the square root of an integer value. The integer value would again be dd+e which is (aabb)/4 + b. So I developed this code:

 

def toOther(a,b):

return int((b*b)/4 + a)

 

def web(a,b):

prod = b*a

one = toOther(a,prod)

two = toOther(b,prod)

return (one, two)

 

And I was doing it for primes a,b and I was generating other primes! (also for this you get different results for using the product and each factor, thats why there is the "one" and "two" in the web function). Then I tried to make a graph of it in excel but I realized that the int was rounding down. For instance if I was generating 7 I would receive 7.25. This was always happening because a*b was odd, and isn't divisible by 4. Then I noticed that they were always .25 above the prime value, and I remembered that every odd square minus one is divisible by 8 and therefore dividible by 4, and also if I subtracted the one I would get rid of that .25.

 

def toOther(a,b):

if(b & 1):

top = b*b - 1

else:

top = b*b

return int( top/4 + a )

 

def web(a,b):

prod = b*a

one = toOther(a,prod)

two = toOther(b,prod)

return (one, two)

 

Test this stuff out guise

CollegeAnon !LAbIRp9cT. ID: aa2ce9 March 1, 2018, 5:18 a.m. No.4999   🗄️.is 🔗kun   >>5007

>>4998

Since this exists you could probably reverse it, like have a number and a "key" a and subtract a from the number then multiply by 4. Then maybe or maybe not add 1.

CollegeAnon !LAbIRp9cT. ID: aa2ce9 March 1, 2018, 5:20 a.m. No.5000   🗄️.is 🔗kun   >>5001

This output was damning

 

>>> web(3,5)

3 5

3, 15 59 [59]

5, 15 61 [61]

 

>>> web(7,29)

29 7

29, 203 10331 [10331]

7, 203 10309 [13, 13, 61]

 

What is that 61? Our starting n value?

Also notice that the two numbers it generates differ by the same amount that the a and b differ by. Just wanted to be the first to say it

CollegeAnon !LAbIRp9cT. ID: aa2ce9 March 1, 2018, 5:23 a.m. No.5001   🗄️.is 🔗kun   >>5002

>>5000

Heres a pastebin of output:

 

https://pastebin.com/6vnmqc4B

 

What this is is the two numbers, then the number generated by one factor and the product, then the factors of that number.

CollegeAnon !LAbIRp9cT. ID: aa2ce9 March 1, 2018, 5:36 a.m. No.5002   🗄️.is 🔗kun   >>5003

>>5001

Maybe this could be how the tree system works too.

12 1

6 1

3 1

 

web(3,1) = 5 or 3

 

21 = 4*4 + 5

4 5

2 5

1 5

 

web(1,5) = 7 or 11