-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
34 lines (31 loc) · 2.02 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ulam - which part of the picture is the sequence?</title>
<meta name="description" content="Render OEIS integer sequences, then measure how much of the picture comes from the numbers and how much from the way it is drawn." />
<!-- SVG first: any browser that understands it gets the sharp one at every
size. The 32px PNG is the fallback for those that do not. -->
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon-32.png" sizes="32x32" type="image/png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Ulam" />
<meta property="og:title" content="Ulam - which part of the picture is the sequence?" />
<meta property="og:description" content="Every pattern you see is really there. The question is whether it belongs to the sequence or to the way it is drawn - so see both at once." />
<meta property="og:url" content="https://ulam.briansheppard.com/" />
<meta property="og:image" content="https://ulam.briansheppard.com/og-card.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="An integer sequence drawn as a compact folded path beside the same terms shuffled, which sprawl apart." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Ulam - which part of the picture is the sequence?" />
<meta name="twitter:description" content="Render OEIS sequences, then measure how much of the picture is the numbers and how much is the technique." />
<meta name="twitter:image" content="https://ulam.briansheppard.com/og-card.png" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>