FoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.
ComposeList[{f_1, f_2, ...}, x] generates a list of the form {x, f_1[x], f_2[f_1[x]], ...}.
ListCorrelate[ker, list] forms the correlation of the kernel ker with list. ListCorrelate[ker, list, k] forms the cyclic correlation in which the k \[Null]^th element of ker ...
ListConvolve[ker, list] forms the convolution of the kernel ker with list. ListConvolve[ker, list, k] forms the cyclic convolution in which the k\[Null]^th element of ker is ...
NestList[f, expr, n] gives a list of the results of applying f to expr 0 through n times.
CoefficientList[poly, var] gives a list of coefficients of powers of var in poly, starting with power 0. CoefficientList[poly, {var_1, var_2, ...}] gives an array of ...
DateList[] gives the current local date and time in the form {year, month, day, hour, minute, second}. DateList[time] gives a date list corresponding to an AbsoluteTime ...
Making lists from functions. This makes a list of 5 elements, each of the form p[i]. Here is another way to produce the same list.
ReadList["file"] reads all the remaining expressions in a file and returns a list of them. ReadList["file", type] reads objects of the specified type from a file, until the ...
ListPlot3D[array] generates a three-dimensional plot of a surface representing an array of height values. ListPlot3D[{{x_1, y_1, z_1}, {x_2, y_2, z_2}, ...}] generates a plot ...