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

16
Q-Suite.py Normal file
View File

@@ -0,0 +1,16 @@
start = 1583
stop = 1697
Q = [None,]
Q.append(1)
Q.append(1)
for n in range(3,stop+1):
Q.append(Q[n-Q[n-1]]+Q[n-Q[n-2]])
sum_Q = 0
for n in range(start, stop+1):
sum_Q = sum_Q + Q[n]
print(sum_Q)