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 A362399 #14 Jul 17 2024 04:17:17 %S A362399 0,1,2,3,4,6,8,9,10,13,21,41,74,131,213,347,519,971,2915,5732,7938, %T A362399 11913,19972,31783,40936,48361,87369,150765,294320,498635,547579, %U A362399 959518,1662638,2886810,4650033,6671264,10248826,17280370,33215677,50757703,140318553,229785674 %N A362399 Positions of records in A336830. %o A362399 (Python) # uses generator in A336830 %o A362399 from itertools import count, islice %o A362399 def agen(r=-1): yield from ((i, r:=v)[0] for i, v in enumerate(A336830()) if v > r) %o A362399 print(list(islice(agen(), 32))) %Y A362399 Cf. A336830, A362398 (records). %K A362399 nonn %O A362399 1,3 %A A362399 _Michael S. Branicky_, Apr 18 2023