User:Godtone/optimal edo sequences: Difference between revisions
m remove erroneous inclusion & add syntax highlighting |
m remove duplicate lines |
||
Line 44: | Line 44: | ||
# I separated it into two calculations because beyond the 51-odd-limit the usefulness is more dubious beyond just general sources of opportunistic concordance. | # I separated it into two calculations because beyond the 51-odd-limit the usefulness is more dubious beyond just general sources of opportunistic concordance. | ||
for ol in range( | for ol in range(53,124,2): # (Also because these calculations took significantly longer.) | ||
result = optimal_edo_sequence(odd_lim(ol,complements=False)) | result = optimal_edo_sequence(odd_lim(ol,complements=False)) | ||
print(str(ol)+'-odd-limit:',[ x for x in result if x in [77,80,84,87,94] ],'\n & additionally:',[ x for x in result if x > 94 ]) | print(str(ol)+'-odd-limit:',[ x for x in result if x in [77,80,84,87,94] ],'\n & additionally:',[ x for x in result if x > 94 ]) | ||
53-odd-limit: [77, 84, 94] | 53-odd-limit: [77, 84, 94] | ||
& additionally: [111, 113, 118, 125, 130, 140, 171, 193, 202, 224, 253, 265, 270, 296, 301] | & additionally: [111, 113, 118, 125, 130, 140, 171, 193, 202, 224, 253, 265, 270, 296, 301] |