This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients PedanticHacker, mark.dickinson, mcognetta, pablogsal, rhettinger, serhiy.storchaka, tim.peters
Date 2021-10-18.13:18:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634563092.49.0.679112189023.issue37295@roundup.psfhosted.org>
In-reply-to
Content
Here is more optimized PR inspired by PR 29020. It would be too long to explain how PR 29020 can be improved, so I write a new PR.

Basically it implements Raymond's idea #1, but supports n>62 for smaller k.

How to calculate limits:

import math
n = m = 2**64
k = 1
while True:
    nmax = int(math.ceil((m * math.factorial(k-1)) ** (1/k) + (k-1)/2)) + 100
    n = min(n, nmax)
    while math.comb(n, k) * k >= m:
        n -= 1
    if n < 2*k: break
    print(k, n)
    k += 1
History
Date User Action Args
2021-10-18 13:18:12serhiy.storchakasetrecipients: + serhiy.storchaka, tim.peters, rhettinger, mark.dickinson, PedanticHacker, mcognetta, pablogsal
2021-10-18 13:18:12serhiy.storchakasetmessageid: <1634563092.49.0.679112189023.issue37295@roundup.psfhosted.org>
2021-10-18 13:18:12serhiy.storchakalinkissue37295 messages
2021-10-18 13:18:12serhiy.storchakacreate