A249432 Positions of records in A249431.
0, 174, 323, 999, 1766, 1934, 2974, 4299, 5749, 9974, 15685, 25478, 31406
Offset: 1
Programs
-
Python
from itertools import count, islice from collections import Counter from math import comb from sympy import factorint def A249432_gen(): # generator of terms c = -1 for n in count(0): p = sum((Counter(factorint(comb(n,i))) for i in range(n+1)),start=Counter()) for m in count(1): f = Counter(factorint(m)) if not f<=p: break p -= f if (k:=m-1-n)>c: yield n c = k A249432_list = list(islice(A249432_gen(),4)) # Chai Wah Wu, Aug 19 2025
Extensions
a(8)-a(13) from Charlie Neder, May 24 2019
Comments