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.
%I A362851 #11 May 19 2023 04:13:04 %S A362851 1,2,3,4,6,7,10,18,20,24,29,34,36,40,46,51,58,81,87,89,103,107,120, %T A362851 121,135,136,150,174,181,189,193,196,203,204,208,210,225,230,233,240, %U A362851 244,268 %N A362851 Records in A194943. %F A362851 a(n) = A194943(A362850(n)). %o A362851 (Python) # uses imports, functions in A194943 %o A362851 from itertools import count, islice %o A362851 def agen(r=-1): # generator of terms %o A362851 yield from (v for k in count(2) if (v:=A194943(k)) > r and (r:=v)) %o A362851 print(list(islice(agen(), 20))) # _Michael S. Branicky_, May 18 2023 %Y A362851 Cf. A194943, A362850 (positions). %K A362851 nonn,more %O A362851 1,2 %A A362851 _R. J. Mathar_, May 05 2023 %E A362851 a(28)-a(42) from _Michael S. Branicky_, May 18 2023