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 @@
for val in range(1, 500):
res = list()
impulsion = val
convenable = False
for i in range(1025):
impulsion = int("{:b}".format(impulsion)[::-1], 2) + 2
if impulsion not in res:
res.append(impulsion)
else:
convenable = True
if convenable:
print(val, end=", ")