Skip to content

Commit ca2e264

Browse files
committed
docs
1 parent a4fe6a0 commit ca2e264

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ given by the user-supplied function t(n, k).
156156

157157
Sequence A097805 gives the number of ordered partitions of n into k parts.
158158
The corresponding triangle can be constructed like this:
159-
* Triangle T097805 based of explicite value.
159+
* Triangle T097805 based of explicit value.
160160

161161
```
162162
V097805(n, k) = k == 0 ? k^n : binomial(n-1, k-1)

docs/src/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For n = 100 the benchmark shows:
2323

2424
Our function is slower but the Combinatorics function takes vastly more space.
2525

26-
In the second alternative implementation the representation of the partitions for fixed n is a weakly increasing lists ordered lexicographicaly. It has a nice algorithm implemented directly (i.e. without iteration).
26+
In the second alternative implementation the representation of the partitions for fixed n is a weakly increasing lists ordered lexicographically. It has a nice algorithm implemented directly (i.e. without iteration).
2727

2828
* Partition, V080577, V026791
2929

docs/src/useofoeis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We emphasize that references to the Online Encyclopedia of Integer Sequences alw
44

55
There is a variety of reasons to deviate occasionally from the definitions used in the OEIS.
66

7-
* Many sequences there are frozen by the editor in chief for so-called 'historical reasons' (for example because they were published in this form in printed versions of the encyclopedia or referenced in scientific papers).
7+
* Many sequences there are frozen by the editor in chief for so-called 'historical reasons' (for example because they were published in this form in printed versions of the Encyclopedia or referenced in scientific papers).
88

99
* Conventions in the OEIS are used that made more sense in times of punch cards than today, for example the suppression of 0's in many series expansions.
1010

docs/src/userguide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ given by the user-supplied function t(n, k).
149149

150150
Sequence A097805 gives the number of ordered partitions of n into k parts.
151151
The corresponding triangle can be constructed like this:
152-
* Triangle T097805 based of explicite value.
152+
* Triangle T097805 based of explicit value.
153153
```javascript
154154
V097805(n, k) = k == 0 ? k^n : binomial(n-1, k-1)
155155
T097805(dim) = Triangle(dim, V097805)

0 commit comments

Comments
 (0)