A371864 Indices of records in A370748.
0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 30, 38, 59, 62, 137, 141, 144, 192, 201, 208, 213, 230, 242, 305, 315, 391, 413, 433, 435, 452, 468, 473, 625, 697, 780, 794, 995, 1124, 1171, 1224, 2049, 2275, 2791, 3179, 3440, 3672, 3939, 19447, 19854, 20014
Offset: 1
Links
- Michael S. Branicky, Table of n, a(n) for n = 1..88
Programs
-
Python
# uses imports, functions in A370748 def agen(): # generator of terms record = -1 for i, v in enumerate(A370748gen()): if v > record: idx, record = i, v yield idx print(list(islice(agen(), 56))) # Michael S. Branicky, Apr 09 2024
Comments