-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
79 lines (65 loc) · 4.54 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="format-detection" content="telephone=no">
<meta name="description" content="OEIS funfacts: Some funfacts about OEIS">
<meta name="keywords" content="OEIS, number, sequence, fun fact, funfact, entertainment">
<title>OEIS FUN facts</title>
<link rel="canonical" href="https://BenWiederhake.github.io/oeis-funfacts/">
<link rel="apple-touch-icon" href="favicon.png">
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="app.css" integrity="sha384-prI5fWGk6GRwnkL9KAyQtiosullSSdrFiU0lDnwbXoyUM/SgBdLiK7AhpKh0EVTf" crossorigin="anonymous">
</head>
<body>
<main class="container my-4 pb-5" id="content">
<h1>OEIS FUN facts</h1>
<h2>The First Uninteresting Number is:</h2>
<p class="hyperlarge fancyfont">{uninteresting_1}</p>
<p class="small text-muted">(This FUN fact was derived from the current OEIS stripped database.)</p>
<p>How excitingly uninteresting!</p>
<h2>The Largest Uninteresting Negative Number is:</h2>
<p class="hyperlarge fancyfont">{uninteresting_neg_1}</p>
<p class="small text-muted">(This LUNN fact was derived from the current OEIS stripped database.)</p>
<p>Thrillingly boring!</p>
<h2>Background</h2>
<p>I came across a blog post claiming that <a href="http://www.njohnston.ca/2009/06/11630-is-the-first-uninteresting-number/">11630 was the First Uninteresting Number in June 2009</a>.
There are even some updates about how it it increased to 12407 in November 2009 and later to 14228 in November 2013.
So naturally I wondered what the current lowest uninteresting number is.</p>
<p>Note that this is not a paradox, as the blog post confirms:</p>
<blockquote class="blockquote ml-5">> Update [June 13, 2009]: I got word back via e-mail today that this sequence didn't make the cut. So there you have it — these numbers truly are uninteresting.</blockquote>
<p class="text-monospace">;-)</p>
<h2>Other uninteresting numbers</h2>
<p>The 20 smallest uninteresting numbers are {uninteresting_list}.</p>
<p>The 20 largest uninteresting negative numbers are {uninteresting_neg_list}.</p>
<p class="small text-muted">(According to appearance or lack thereof in the OEIS stripped database.)</p>
<h2>Interesting numbers</h2>
<p>The most interesting number is {most_interesting_t}, with {most_interesting_n} occurrences.</p>
<p class="small text-muted">(As counted in the OEIS stripped database.)</p>
<h2>Determinedness</h2>
<p>The sequence with the most terms is <a href="https://oeis.org/{most_det_a}">{most_det_a}</a>, with {most_det_n} terms.</p>
<p>The first sequence with a single term is <a href="https://oeis.org/{least_det_a}">{least_det_a}</a>.</p>
<h2>To the Extremes!</h2>
<p>The smallest (most negative) term is <span class="longword">{lowest_t}</span>, in sequence <a href="https://oeis.org/{lowest_a}">{lowest_a}</a>.</p>
<p>The largest (most positive) term is <span class="longword">{largest_t}</span>, in sequence <a href="https://oeis.org/{largest_a}">{largest_a}</a>.</p>
<h2>Status</h2>
<p>All of the interesting tidbits on this page are gathered from <a href="https://oeis.org/stripped.gz">OEIS's <code>stripped.gz</code> file</a>, using their CC-BY-NC 3.0 license. Thank you, <a href="https://oeis.org/">Online Encyclopedia of Integer Sequences</a>!</p>
<p>This data was last polled on {last_poll}, and last modified on {last_modified}.
For reference, the latest sequence seems to be <a href="https://oeis.org/{last_a}">{last_a}</a>,
and the latest sequence introducing a new number is <a href="https://oeis.org/{last_novel_a}">{last_novel_a}</a>,
which made {last_novel_t} interesting.</p>
<p class="small text-muted">The raw data on this webpage is also available as a <a href="raw.json">JSON file</a>.</p>
</main>
<nav class="fixed-bottom bg-light d-flex p-2 flex-row flex-wrap justify-content-between align-items-center">
<div class="mx-2">
<span class="navbar-brand mb-0 pb-0" href="#">OEIS funfacts</span>
</div>
<div class="mx-2">
<a href="https://github.com/BenWiederhake/oeis-funfacts/">Repo</a> | <a href="https://help.github.com/articles/github-privacy-statement/">Data Protection</a> | <a href="https://github.com/BenWiederhake/oeis-funfacts#license">License (mostly CC0)</a>
</div>
</nav>
</body>
</html>