cmatrix.Pascal_triangle

cmatrix.Pascal_triangle()

Pascal triangle generator of dimension dim.

Parameters

Type

Description

dim

int

Dimension of the triangle

Returns
int list

Binomial coefficients computed.

See also

mirror()

Examples

>>> for i in range(0,10):
...     print(Pascal_triangle(i))
...
[1]
[1, 1]
[1, 1]
[1, 2, 1]
[1, 3, 3, 1]
[1, 4, 6, 4, 1]
[1, 5, 10, 10, 5, 1]
[1, 6, 15, 20, 15, 6, 1]
[1, 7, 21, 35, 35, 21, 7, 1]
[1, 8, 28, 56, 70, 56, 28, 8, 1]