Skip to content

Commit 9cf6ee5

Browse files
committed
fix: add intro section with Apery's constant formula per convention
1 parent 10cf65b commit 9cf6ee5

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

  • lib/node_modules/@stdlib/constants/float16/apery

lib/node_modules/@stdlib/constants/float16/apery/README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,24 @@ limitations under the License.
2222

2323
> [Apéry's constant][apery-constant].
2424
25+
<section class="intro">
26+
27+
[Apéry's constant][apery-constant] is defined as
28+
29+
<!-- <equation class="equation" label="eq:apery_constant" align="center" raw="\zeta(3) = \sum_{n=1}^\infty \frac{1}{n^3} = \lim_{n\to\infty} \biggl(\frac{1}{1^3} + \frac{1}{2^3} + \cdots + \frac{1}{n^3}\biggr)" alt="Apéry's constant"> -->
30+
31+
```math
32+
\zeta(3) = \sum_{n=1}^\infty \frac{1}{n^3} = \lim_{n\to\infty} \biggl(\frac{1}{1^3} + \frac{1}{2^3} + \cdots + \frac{1}{n^3}\biggr)
33+
```
34+
35+
<!-- </equation> -->
36+
37+
where `ζ(s)` is the Riemann zeta function.
38+
39+
</section>
40+
41+
<!-- /.intro -->
42+
2543
<section class="usage">
2644

2745
## Usage
@@ -32,7 +50,7 @@ var FLOAT16_APERY = require( '@stdlib/constants/float16/apery' );
3250

3351
#### FLOAT16_APERY
3452

35-
[Apéry's constant][apery-constant], the value of the Riemann zeta function ζ(3), represented in half-precision floating-point format.
53+
[Apéry's constant][apery-constant].
3654

3755
```javascript
3856
var bool = ( FLOAT16_APERY === 1.2021484375 );

0 commit comments

Comments
 (0)