zk_html/writing/sequence/index.html

44 lines
1.7 KiB
HTML

<!doctype html>
<html>
<head>
<title>Zk | Sequence</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
<meta name="viewport" content="width=device-width" />
<meta charset="utf-8" />
</head>
<body>
<main>
<header>
<h1>Zk | Sequence</h1>
</header>
<article class="content">
<p><span class="tag">writing</span></p>
<p>Work/works using restriction of numeric sequences for each part, determining sentence length. Each must start using the sequence up through a certain number, then can only use lengths from that set. Maybe use sequence for ratio of number of occurrences? But what? Themselves? Quickly leads to lots of long sentences</p>
<ul>
<li>Fibonacci: 1,1,2,3,5,8,13,21,34,55</li>
<li>Prime: 2,3,5,7,11,13,17,19,23,27,29</li>
<li>Exponential: 2,4,8,16,32,64,128?</li>
<li>Square: 1,4,9,16,25,36,49</li>
<li>Triangular: 1,3,6,10,15,21,28,36,45</li>
</ul>
<p>Focus on dire import of numbers, maybe something about pocket dimensions</p>
<h2 id="fibonacci">Fibonacci</h2>
<p>Breathe.</p>
<p><em>Breathe.</em></p>
<p>&ldquo;Come on.&rdquo;</p>
<p>Hands clutched soil. Grasped for purchase, for solidity. Anything to help keep him anchored to reality. Anything to pin him to perception - or perception to him - . . .</p>
</article>
<footer>
<p>Page generated on 2020-06-24</p>
</footer>
</main>
<script type="text/javascript">
document.querySelectorAll('.tag').forEach(tag => {
let text = tag.innerText;
tag.innerText = '';
tag.innerHTML = `<a href="/tags.html#${text}">${text}</a>`;
});
</script>
</body>
</html>