A375084 Indices of records in A375082.
1, 12, 22, 38, 46, 94, 158, 213, 321, 382, 766, 1941, 2302, 2558, 7166, 10238, 12286
Offset: 1
Crossrefs
Cf. A375082.
Programs
-
Python
from math import comb from itertools import islice, count def A375084_gen(): # generator of terms c = 0 for n in count(1): 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: c = d yield n A375084_list = list(islice(A375084_gen(),10)) # Chai Wah Wu, Jul 30 2024