OFFSET
0,1
LINKS
Chai Wah Wu, Table of n, a(n) for n = 0..250
Cohn, Martin; Even, Shimon; Menger, Karl, Jr.; Hooper, Philip K.; On the Number of Partitionings of a Set of n Distinct Objects, Amer. Math. Monthly 69 (1962), no. 8, 782--785. MR1531841.
Cohn, Martin; Even, Shimon; Menger, Karl, Jr.; Hooper, Philip K.; On the Number of Partitionings of a Set of n Distinct Objects, Amer. Math. Monthly 69 (1962), no. 8, 782--785. MR1531841. [Annotated scanned copy]
Jocelyn Quaintance and Harris Kwong, A combinatorial interpretation of the Catalan and Bell number difference tables, Integers, 13 (2013), #A29.
MATHEMATICA
Differences[BellB[Range[0, 50]], 4] (* Vladimir Joseph Stephan Orlovsky, May 25 2011 *)
PROG
(Python)
# requires python 3.2 or higher. Otherwise use def'n of accumulate in python docs.
from itertools import accumulate
A011967_list, blist, b = [4], [5, 7, 10, 15], 15
for _ in range(250):
....blist = list(accumulate([b]+blist))
....b = blist[-1]
....A011967_list.append(blist[-5]) # Chai Wah Wu, Sep 20 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved