User:Godtone/strict optimal edo sequences: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

22 June 2026

  • curprev 19:4819:48, 22 June 2026 Godtone talk contribs 3,803 bytes +3,803 Created page with "<syntaxhighlight lang="python"> for odd in range(3,126,2): print(str(odd)+'-odd-limit:',strict_optimal_edo_sequence(odd_lim(odd,complements=False))) 3-odd-limit: [2, 5, 12, 41, 53, 306] 5-odd-limit: [2, 3, 12, 19, 34, 53, 118] 7-odd-limit: [2, 4, 27, 31, 99, 171] 9-odd-limit: [2, 4, 5, 12, 19, 31, 41, 72, 99, 171] 11-odd-limit: [2, 5, 7, 9, 15, 22, 31, 72, 270] 13-odd-limit: [2, 5, 7, 9, 26, 41, 58, 87, 190, 224, 270] 15-odd-limit: [2, 7, 9, 53, 58, 72, 87, 130, 224,..."