Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #17 Jul 30 2024 14:34:52
%S 1,12,22,38,46,94,158,213,321,382,766,1941,2302,2558,7166,10238,12286
%N Indices of records in A375082.
%o (Python)
%o from math import comb
%o from itertools import islice, count
%o def A375084_gen(): # generator of terms
%o c = 0
%o for n in count(1):
%o if (d:=next(a for a, b in (divmod(comb(j,k),n) for j in range(n+1) for k in range(j+1)) if not b))>c:
%o c = d
%o yield n
%o A375084_list = list(islice(A375084_gen(),10)) # _Chai Wah Wu_, Jul 30 2024
%Y Cf. A375082.
%K nonn,more
%O 1,2
%A _Pontus von Brömssen_, Jul 29 2024