Commit ·
c4e9cdf
1
Parent(s): 1a77fcd
save
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .gitattributes +1 -0
- .gitignore +4 -0
- README.md +78 -3
- base/10-centered-polygonal.csv +3 -0
- base/10-gonal-pyramidal.csv +3 -0
- base/11-centered-polygonal.csv +3 -0
- base/11-gonal-pyramidal.csv +3 -0
- base/12-gonal-pyramidal.csv +3 -0
- base/13-gonal-pyramidal.csv +3 -0
- base/14-gonal-pyramidal.csv +3 -0
- base/15-gonal-pyramidal.csv +3 -0
- base/16-gonal-pyramidal.csv +3 -0
- base/17-gonal-pyramidal.csv +3 -0
- base/18-gonal-pyramidal.csv +3 -0
- base/19-gonal-pyramidal.csv +3 -0
- base/20-gonal-pyramidal.csv +3 -0
- base/3-centered-polygonal.csv +3 -0
- base/3-gonal-pyramidal.csv +3 -0
- base/4-centered-polygonal.csv +3 -0
- base/4-gonal-pyramidal.csv +3 -0
- base/5-centered-polygonal.csv +3 -0
- base/5-gonal-pyramidal.csv +3 -0
- base/6-centered-polygonal.csv +3 -0
- base/6-gonal-pyramidal.csv +3 -0
- base/7-centered-polygonal.csv +3 -0
- base/7-gonal-pyramidal.csv +3 -0
- base/8-centered-polygonal.csv +3 -0
- base/8-gonal-pyramidal.csv +3 -0
- base/9-centered-polygonal.csv +3 -0
- base/9-gonal-pyramidal.csv +3 -0
- base/abundant.csv +3 -0
- base/bell.csv +3 -0
- base/binary-base-tree.csv +3 -0
- base/binary-even.csv +3 -0
- base/catalan.csv +3 -0
- base/centered-decagonal.csv +3 -0
- base/centered-heptagonal.csv +3 -0
- base/centered-hexagonal.csv +3 -0
- base/centered-octagonal.csv +3 -0
- base/centered-pentagonal.csv +3 -0
- base/centered-square.csv +3 -0
- base/centered-triangular.csv +3 -0
- base/collatz-length.csv +3 -0
- base/composite.csv +3 -0
- base/connected-planar-graph.csv +3 -0
- base/deficient.csv +3 -0
- base/delannoy.csv +3 -0
- base/derangement.csv +3 -0
- base/divisors.csv +3 -0
- base/dodecahedral.csv +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
*.csv filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
task/
|
| 2 |
+
hold/
|
| 3 |
+
code/
|
| 4 |
+
.DS_Store
|
README.md
CHANGED
|
@@ -1,3 +1,78 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc0-1.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
+
pretty_name: "Integer Sequences"
|
| 4 |
+
tags:
|
| 5 |
+
- mathematics
|
| 6 |
+
- integers
|
| 7 |
+
- sequences
|
| 8 |
+
- primes
|
| 9 |
+
- combinatorics
|
| 10 |
+
- number-theory
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Integer Sequences
|
| 14 |
+
|
| 15 |
+
Many integer sequences as one-value-per-line CSV files.
|
| 16 |
+
Generated from formulas, recurrences, sieves, and filters.
|
| 17 |
+
Primes sourced from https://t5k.org.
|
| 18 |
+
|
| 19 |
+
## Contents
|
| 20 |
+
|
| 21 |
+
Each file in `base/` holds one sequence, one integer per line,
|
| 22 |
+
sorted ascending.
|
| 23 |
+
|
| 24 |
+
### Figurate and geometric
|
| 25 |
+
|
| 26 |
+
- `triangular`, `pentagonal`, `hexagonal`, `heptagonal`, `star`
|
| 27 |
+
- `pow-2`, `pow-3`, `pow-5`, `pow-7`
|
| 28 |
+
- `tetrahedral`, `pentatope`, `octahedral`
|
| 29 |
+
- `square-pyramidal`, `stella-octangula`
|
| 30 |
+
- `icosahedral`, `dodecahedral`, `rhombic-dodecahedral`
|
| 31 |
+
- `truncated-tetrahedral`, `truncated-octahedral`, `truncated-cube`
|
| 32 |
+
- `centered-triangular`, `centered-square`, `centered-pentagonal`,
|
| 33 |
+
`centered-hexagonal`, `centered-heptagonal`, `centered-octagonal`,
|
| 34 |
+
`centered-decagonal`
|
| 35 |
+
- `N-gonal-pyramidal` (3 through 20)
|
| 36 |
+
- `N-centered-polygonal` (3 through 11)
|
| 37 |
+
- `pronic`
|
| 38 |
+
|
| 39 |
+
### Recurrence-based
|
| 40 |
+
|
| 41 |
+
- `fibonacci`, `lucas`, `padovan`, `tribonacci`, `pell`, `jacobsthal`
|
| 42 |
+
- `catalan`, `bell`, `motzkin`, `delannoy`, `derangement`
|
| 43 |
+
- `partition`, `planar-partitions`
|
| 44 |
+
- `euler-number`, `stirling-second`
|
| 45 |
+
- `look-and-say`, `sylvester`, `recaman`, `stern-brocot`
|
| 46 |
+
|
| 47 |
+
### Prime and factoring
|
| 48 |
+
|
| 49 |
+
- `prime` (50 million, from t5k.org)
|
| 50 |
+
- `twin-prime`, `safe-prime`, `sophie-germain-prime`, `super-prime`
|
| 51 |
+
- `semiprime`, `sphenic`, `composite`
|
| 52 |
+
- `square-free`, `powerful`
|
| 53 |
+
- `primorial`
|
| 54 |
+
|
| 55 |
+
### Digit and filter
|
| 56 |
+
|
| 57 |
+
- `palindromic`, `happy`, `harshad`, `abundant`, `deficient`
|
| 58 |
+
- `binary-even` (evil numbers), `smith`, `lucky`
|
| 59 |
+
- `undulating`, `narcissistic`, `automorphic`, `kaprekar`
|
| 60 |
+
- `collatz-length`, `euler-totient`, `divisors`
|
| 61 |
+
|
| 62 |
+
### Other
|
| 63 |
+
|
| 64 |
+
- `natural`, `n-eq-3-mod-4`, `factorial`, `repunit`
|
| 65 |
+
- `binary-base-tree` (Wedderburn-Etherington)
|
| 66 |
+
- `highly-composite`, `amicable`
|
| 67 |
+
- Static lookups: `perfect`, `weird`, `order-of-simple-groups`,
|
| 68 |
+
`connected-planar-graph`, `number-of-connected-graphs`,
|
| 69 |
+
`planar-graph`, `irreducible-polynomials`
|
| 70 |
+
|
| 71 |
+
## Sources
|
| 72 |
+
|
| 73 |
+
- **The Prime Pages (t5k.org)**: https://t5k.org/lists/small/millions/
|
| 74 |
+
- **OEIS**: https://oeis.org (reference for sequence definitions)
|
| 75 |
+
|
| 76 |
+
## License
|
| 77 |
+
|
| 78 |
+
CC0-1.0. The sequences are mathematical facts, not creative works.
|
base/10-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbc840a5c24f889109af093eb34e7597892af0f4694aa50ea7a9deeca19b95e8
|
| 3 |
+
size 1134599
|
base/10-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2afa0d15c9cae2204caf7b71387987a3b2286f95fca4f8dd0ce1904dc40a4469
|
| 3 |
+
size 1530453
|
base/11-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d2777b0e6ce63fd2e1ebca696b3998d7c8233b4438cfdd856ee48d22f69ee9d
|
| 3 |
+
size 1137642
|
base/11-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ca06fc3c95528dbcdc52b79d1fa86fd0b8ef2ce71abf5915b1c8200dfb744e4
|
| 3 |
+
size 1536983
|
base/12-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe4ffab43f4f8c4f6ae11f16b9ff4cf904c8f2524d0134321a4fb526bb26b77b
|
| 3 |
+
size 1542605
|
base/13-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76dbf5408e16e554ca144aa2d956c2f74aa15fa8885c432efd40a4e34ce058a6
|
| 3 |
+
size 1547530
|
base/14-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60fcaf5a05fedda7c281d3c2356799dfe1f77c9dba98ea40b550a82206e35920
|
| 3 |
+
size 1551890
|
base/15-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5fad9fd11a10ab39c4bdeaecd49c6ca382f3e84fc15cfefc66da296a10811fbb
|
| 3 |
+
size 1555789
|
base/16-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0a3e6f18409c295ffb813d8438eaa3d0b624948023b49334e03c515ec1430ba
|
| 3 |
+
size 1559306
|
base/17-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:226f3fdcf0632782d7d7b0765ac706d1e2265c819109a4c4e424119673ba2d6b
|
| 3 |
+
size 1562507
|
base/18-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5370515b97a8839813e40cda8503bcdfa3c43914fdc55999eee39187ace6cc07
|
| 3 |
+
size 1565429
|
base/19-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2f9f6b244044952d4db32764ae1ab7941736df9b9285965554bfa9c79c98793
|
| 3 |
+
size 1568124
|
base/20-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59dd2da49babf1326e0adca13bf7414f86d81184069ee4d546e129ee7e48d09f
|
| 3 |
+
size 1570613
|
base/3-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fde99d198eca8e830115d48a984b317841a64187834df74b0c79de5723c85de1
|
| 3 |
+
size 1080589
|
base/3-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:54b33988a4ba92e69d514ae0207ee7e248f3f95cb618a25682f64fc6bd11eee8
|
| 3 |
+
size 1442620
|
base/4-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76697bb19c1e61bf26093ab0af1afde62747547123d9efa64409d233cd1438ad
|
| 3 |
+
size 1096588
|
base/4-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5432867218eebd86bc9f6586977682c41bcad12d3267c93a6d88aec9e4be95fe
|
| 3 |
+
size 1475088
|
base/5-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c781d70071618cf8b72280d71c93b8de6294c6623df4e6693ab872ebf585414
|
| 3 |
+
size 1107505
|
base/5-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03060876c709a440b26e4f0571cc458ff968c8fbb8bad6b71c1c2fe443f672f7
|
| 3 |
+
size 1490876
|
base/6-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89b077ee22cfd849cecdcde371ee5ef9aa2d2c18d60bfe086e895d706978283d
|
| 3 |
+
size 1115564
|
base/6-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91da628f42f8ce216f706ce1e260bc4b840e4d94c44fc1bc1b1ca8c48615f797
|
| 3 |
+
size 1500854
|
base/7-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b750469486e78017a8b35b81e54456d711e29146a6bb1b7163e4d3f02efe44a1
|
| 3 |
+
size 1121829
|
base/7-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:878c0f2da715edbcd035b362786e6003681b900c71ebb70c1faf7c09395a53a1
|
| 3 |
+
size 1507959
|
base/8-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c9fb9757ca193f3829a3d430fa72c4c175bdddd2dcb8c270f25296c3d21bb84
|
| 3 |
+
size 1126877
|
base/8-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e66f23992d5f8f28a95d65dd15f17952b31c2f3e9cfaf3e80a9982252d6a1920
|
| 3 |
+
size 1513390
|
base/9-centered-polygonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9153c99e25daa8b5274c128b8b9f1c7e5c903ee9b6f8aca6cda609f584c48637
|
| 3 |
+
size 1131059
|
base/9-gonal-pyramidal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eae5a463f44fb4c98a68e533bf3f7f433d9642d10a74cb8ed3b2b8cc0765fc15
|
| 3 |
+
size 1522738
|
base/abundant.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1988668462eb3b82947a5e967792c9df1843a89f60de585e32a884de498bc1d4
|
| 3 |
+
size 7724909
|
base/bell.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49f50bbc5cd00985b0311c8abf072bbe0ed1415893830946d51ea603aef1123a
|
| 3 |
+
size 566
|
base/binary-base-tree.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbd89a9d94391a71d7245a8ff685ff9a4bee4e037cc124d928f40bedfea06da9
|
| 3 |
+
size 1473
|
base/binary-even.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8facb764a89a0e5b8862f7c324e300496afe8000a5f465ec9bda0a220f064cc3
|
| 3 |
+
size 7444445
|
base/catalan.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c48beeffb13eaa212c00cba256736dae1de9a8fe3c12c1b84e695e498a0c2f9
|
| 3 |
+
size 953
|
base/centered-decagonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b9b1a05769c3f05a78e05a91f5db3a1f539312708d7c249012dacd043d2b39c
|
| 3 |
+
size 13345964
|
base/centered-heptagonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:456298b3cb63ba8fcfb4bc6e78e1f7b842696dc5a178e80cb2850e93e75c8f03
|
| 3 |
+
size 14065665
|
base/centered-hexagonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c8738d6307ccd1c5dba581e9e77ed001f7b6c5b76b0b01d9d3f251b2198cf63
|
| 3 |
+
size 13155640
|
base/centered-octagonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:617135af31cf5092f60b2473738eab379b610f563d514c1820bdba36059c5228
|
| 3 |
+
size 13268763
|
base/centered-pentagonal.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:166513372d09a97ee4856067edff5e23766766997000d5a53cb6e5ff0bfd448a
|
| 3 |
+
size 13075062
|
base/centered-square.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:997f10634281be78804a215ce534b140328361b46f29a1b9bee0b815b29c8709
|
| 3 |
+
size 12965886
|
base/centered-triangular.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ac6f435df37ade71938dc16f9e7fdbdc32ae89457c9352fc1cd757830549ab9
|
| 3 |
+
size 12805907
|
base/collatz-length.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01fceb24292273df0f87172ec91c19bf1e1bcd16661a1e45e9e55ab703ac0f79
|
| 3 |
+
size 3655947
|
base/composite.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f5e5cb157a15b99103d601ff84ac2b57b53931f21be6efb3d92a379d150269d
|
| 3 |
+
size 6978418
|
base/connected-planar-graph.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d1de394bc688e2c7c06d1c22fe230be1305dda1a369d0c252e25c8d082df8e3
|
| 3 |
+
size 58
|
base/deficient.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43fb37c5a052911945d6aafb3b855f8334227e5be91440f16a7b6eb1445f21db
|
| 3 |
+
size 7164011
|
base/delannoy.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c30a08a3fdadd3a4ca9c6cb50769e71e5c68356c80f7ac1c3dd17610563790a
|
| 3 |
+
size 753
|
base/derangement.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca5412c96550f54cdfaf990eb69243d2d3b30361d55b6b58469f2bb1736e2de9
|
| 3 |
+
size 450
|
base/divisors.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09c9e68b70c78c2c2e0ebc53c326690cdbcc0371ecfe59b166a002b5462ea448
|
| 3 |
+
size 1446
|
base/dodecahedral.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e417c108ecd3d18b530b126d198d0fc82c55afb5d6733cd40606517cec66b027
|
| 3 |
+
size 18869619
|