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,12 @@
start = 2065
stop = 2091
T = ["0","1"]
for n in range(1, stop//2+2):
T.append(T[n])
T.append(str(1-int(T[n])))
b=int("".join(T[start:stop+1]), 2)
print(b)