Catalan¶
Status: Experimental
present and registered, but lightly documented and not yet covered by dedicated tests.
Description¶
Catalan
is Catalan's constant, with numerical value ~= 0.915966.
Catalan is the sum over k >= 0 of (-1)^k (2 k + 1)^-2. It is a
mathematical constant: it has attributes Constant and Protected,
NumericQ[Catalan] is True, and D[Catalan, x] is 0. N[Catalan, prec]
evaluates it to any precision.
Examples¶
No verified examples yet for this function.
Implementation notes¶
- Attributes
Constant,Protected. `Attributes[Catalan] = {Constant,
Attributes: Constant, Protected.
Implementation status¶
Experimental — present and registered, but lightly documented and not yet covered by dedicated tests.
References¶
- Source:
src/info.c - Specification:
docs/spec/builtins/mathematical-constants.md
Notes & additional examples¶
Worked examples¶
Notes¶
Catalan is Catalan's constant G, the alternating sum over k >= 0 of
(-1)^k (2 k + 1)^-2. It is a first-class symbolic constant: it carries the
Constant attribute (so D[Catalan, x] is 0), satisfies NumericQ, and
N[Catalan, prec] evaluates it to any requested precision via an internal
fast-converging series. The 40-digit value matches the standard reference
value, and arithmetic combinations such as 8 Catalan are held symbolically
until numericalized.