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 A362850 #12 May 19 2023 04:12:55 %S A362850 2,3,5,7,11,13,19,31,47,61,127,139,193,229,283,337,409,461,1531,1847, %T A362850 2129,2861,4177,6037,7577,8207,8941,12311,22133,32647,38231,40247, %U A362850 40951,47903,52153,63031,84229,93241,97259,116729,124183,132331 %N A362850 Positions of records in A194943. %F A362850 A362851(n) = A194943(a(n)). %o A362850 (Python) # uses imports, functions in A194943 %o A362850 from itertools import count, islice %o A362850 def agen(r=-1): # generator of terms %o A362850 yield from (k for k in count(2) if (v:=A194943(k)) > r and (r:=v)) %o A362850 print(list(islice(agen(), 20))) # _Michael S. Branicky_, May 18 2023 %Y A362850 Cf. A194943, A362851 (records themselves). %K A362850 nonn,more %O A362850 1,1 %A A362850 _R. J. Mathar_, May 05 2023 %E A362850 a(28)-a(42) from _Michael S. Branicky_, May 18 2023