HistogramList[{x_1, x_2, ...}] gives a list of bins and histogram heights of the values x_i.HistogramList[{{x_1, y_1, ...}, {x_2, y_2, ...}, ...}] gives a list of bins and ...
n!! gives the double factorial of n.
The NumericalDifferentialEquationAnalysis package combines functionality for analyzing differential equations using Butcher trees, Gaussian quadrature, and Newton-Cotes ...
Sequence of unsigned 64-bit integers. Raw binary format. Equivalent to the Byte format.
Depth
(Built-in Mathematica Symbol) Depth[expr] gives the maximum number of indices needed to specify any part of expr, plus 1.
Exponent[expr, form] gives the maximum power with which form appears in the expanded form of expr. Exponent[expr, form, h] applies h to the set of exponents with which form ...
FactorSquareFree[poly] pulls out any multiple factors in a polynomial.
O
(Built-in Mathematica Symbol) O[x]^n represents a term of order x^n. O[x]^n is generated to represent omitted higher-order terms in power series. O[x, x_0]^n represents a term of order (x - x_0) n.
Power
(Built-in Mathematica Symbol) x^y gives x to the power y.
Range
(Built-in Mathematica Symbol) Range[i_max] generates the list {1, 2, ..., i_max}. Range[i_min, i_max] generates the list {i_min, ..., i_max}. Range[i_min, i_max, di] uses step di.