SpiderPuck

Solving Sessions Recap - March 26 and 28, 2021

Mar 28th, 2021 (edited)
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. MARCH 26
  2. neinty did some work on 54-55:
  3. the same method as 56.jpg w/ variations
  4. ^ same with altered runes, like reversing them and boustrophedon
  5. "Using base runes, attempted shift for rune n = shift for rune n-1 + prime counting function for rune position %29"
  6. "p56 method but experimenting for the shift for rune n-1 in relation to the shift for rune n:"
  7.  
  8. possible shift:
  9. rune position * corresponding primes
  10. 1 * 2
  11. 2 * 3
  12. 3 * 5
  13. 4 * 7
  14. 5 * 11
  15.  
  16.  
  17. MARCH 28
  18. squared prime numbers as shift?
  19. squared primes / totients of primes tried on 54-55
  20. as per neinty: "Y'know how the original primes were used for [primes].com and [primes].tk, have people tried doing visiting the [primes] with all TLDs?"
  21. the following was tried in combination with all possible rotations:
  22. decimal[i] = (decimal[i] - decimal[i-1] - (primes[i] - 1)) % 29
  23. decimal[i] = (decimal[i] + decimal[i-1] - (primes[i] - 1)) % 29
  24. decimal[i] = (decimal[i] - input decimal[i-1] - (primes[i] - 1)) % 29
  25. decimal[i] = (decimal[i] + input decimal[i-1] - (primes[i] - 1)) % 29
Add Comment
Please, Sign In to add comment