Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
u = 53
n = 21
for i in range(n):
u = int("{:b}".format(u) + "{:b}".format(len("{:b}".format(u).replace("0", ""))), 2)
print(u)