A371863 Records in A370748.
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 179308, 589204, 3162450, 7653120, 8469210, 9481036, 10543967, 12869537, 14527380, 16927083, 17940836, 20865319, 23874159, 31527049, 36594278, 50189734, 57624138, 69871345, 74136950, 86021453
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 record print(list(islice(agen(), 36))) # Michael S. Branicky, Apr 09 2024
Comments