OFFSET
1,2
MATHEMATICA
With[{b=BellB[Range[6]]}, Complement[Range[0, Last[b]], b]] (* Harvey P. Dale, Sep 05 2020 *)
PROG
(Python)
from itertools import accumulate, islice
def A092460_gen(): # generator of terms
yield 0
blist, b = (1, ), 1
while True:
blist = list(accumulate(blist, initial=b))
yield from range(b+1, b:=blist[-1])
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 26 2004
STATUS
approved