Advertisement
maple-tac

Near alpha or 138 values for exponents of 8

Nov 6th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.61 KB | None | 0 0
  1. def yzz(n): #returns some multiples of 4 or 5 per 29..no? or sub-sequence?
  2.     y=0     #remember to add diskwrite to..these
  3.     for x in range(1,n):
  4.         y=y+(x/29)
  5.        #print(y,x) #uncomment this to get the pairs
  6.     return(y/n) #comment this to get the pairs.
  7.  
  8. yzz(800000000)
  9.  
  10.  
  11. Here is some of the output:
  12.  
  13. 13.620689655172416
  14. 137.75862068965517
  15. 1379.1379310344828
  16. 13792.931034482763
  17. 137930.8620689655
  18. 1379310.1724137932
  19. 13793103.27586207
  20. 137931034.28979486
  21. 1379310344.6220388
  22.  
  23. Next one breaks W|A server, all others give "possible closed forms" as various combinations of digits, pi and e.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement