login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A371864 Indices of records in A370748. 3
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A370748(a(88)) is the first occurrence of the highest possible term in A370748.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..88
PROG
(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
CROSSREFS
Cf. A370748, A371863 (records).
Sequence in context: A342478 A194967 A023770 * A357979 A023797 A032951
KEYWORD
nonn,base,fini,full
AUTHOR
Michael S. Branicky, Apr 09 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 28 03:36 EDT 2024. Contains 375477 sequences. (Running on oeis4.)