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!)
A355918 Highest index in n-th inventory in A355916 and A355917. 4
0, 1, 3, 5, 7, 11, 13, 16, 17, 19, 22, 23, 26, 27, 29, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 55, 56, 59, 62, 64, 66, 67, 71, 72, 73, 74, 75, 78, 81, 82, 84, 85, 88, 89, 91, 93, 95, 97, 99, 102, 103, 106, 108, 109, 111, 113, 115, 117, 119, 121, 123, 125 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Rémy Sigrist, C program
PROG
(C) See Links section.
(Python)
from collections import Counter
from itertools import count, islice
def agen():
num, inventory = 0, Counter([0, 0])
yield 0
for k in count(2):
c = [inventory[num], num]
if c[0] == 0: yield num; num = 0
else: num = num + 1
inventory.update(c)
print(list(islice(agen(), 63))) # Michael S. Branicky, Sep 25 2022
CROSSREFS
Sequence in context: A117203 A081118 A363583 * A003255 A263321 A244365
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Sep 24 2022
EXTENSIONS
More terms from Rémy Sigrist, Sep 25 2022
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 9 07:41 EDT 2024. Contains 375027 sequences. (Running on oeis4.)