cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A375084 Indices of records in A375082.

This page as a plain text file.
%I A375084 #17 Jul 30 2024 14:34:52
%S A375084 1,12,22,38,46,94,158,213,321,382,766,1941,2302,2558,7166,10238,12286
%N A375084 Indices of records in A375082.
%o A375084 (Python)
%o A375084 from math import comb
%o A375084 from itertools import islice, count
%o A375084 def A375084_gen(): # generator of terms
%o A375084     c = 0
%o A375084     for n in count(1):
%o A375084         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 A375084             c = d
%o A375084             yield n
%o A375084 A375084_list = list(islice(A375084_gen(),10)) # _Chai Wah Wu_, Jul 30 2024
%Y A375084 Cf. A375082.
%K A375084 nonn,more
%O A375084 1,2
%A A375084 _Pontus von Brömssen_, Jul 29 2024