OFFSET
0,5
LINKS
Peter Luschny, The Bell transform.
Peter Luschny, Examples of the Bell transform, a SageMath notebook.
EXAMPLE
Triangle starts:
[0] [1]
[1] [0, 1]
[2] [0, 3, 1]
[3] [0, 6, 9, 1]
[4] [0, 10, 51, 18, 1]
[5] [0, 15, 230, 195, 30, 1]
[6] [0, 21, 900, 1635, 525, 45, 1]
[7] [0, 28, 3192, 11655, 6965, 1155, 63, 1]
[8] [0, 36, 10528, 74088, 77385, 22120, 2226, 84, 1]
[9] [0, 45, 32832, 432054, 757764, 350595, 57960, 3906, 108, 1]
MAPLE
BellMatrix(n -> iquo((n + 1)*(n + 2), 2), 10); # Function 'BellMatrix' defined in A264428.
PROG
(Python) # The function 'BellTransform' is defined in A394439.
N = 9; tri_nums = [n * (n + 1) // 2 for n in range(N + 1)]
T = BellTransform(tri_nums)
for row in T: print(row)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Mar 29 2026
STATUS
approved
