<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://teherba.org/tehowiki/index.php?action=history&amp;feed=atom&amp;title=OEIS%2FA307407</id>
	<title>OEIS/A307407 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://teherba.org/tehowiki/index.php?action=history&amp;feed=atom&amp;title=OEIS%2FA307407"/>
	<link rel="alternate" type="text/html" href="http://teherba.org/tehowiki/index.php?title=OEIS/A307407&amp;action=history"/>
	<updated>2026-05-05T00:50:45Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>http://teherba.org/tehowiki/index.php?title=OEIS/A307407&amp;diff=578&amp;oldid=prev</id>
		<title>imported&gt;Gfis: Created page with &quot;===Name=== Irregular table of rows with terms which map uniquely to the nodes in the graph of the &quot;3x+1&quot; (or Collatz) problem. ===Data===  16, 4, 5, 1, 10, 2, 3, 40, 12, 13, 6...&quot;</title>
		<link rel="alternate" type="text/html" href="http://teherba.org/tehowiki/index.php?title=OEIS/A307407&amp;diff=578&amp;oldid=prev"/>
		<updated>2019-04-08T07:54:34Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;===Name=== Irregular table of rows with terms which map uniquely to the nodes in the graph of the &amp;quot;3x+1&amp;quot; (or Collatz) problem. ===Data===  16, 4, 5, 1, 10, 2, 3, 40, 12, 13, 6...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;===Name===&lt;br /&gt;
Irregular table of rows with terms which map uniquely to the nodes in the graph of the &amp;quot;3x+1&amp;quot; (or Collatz) problem.&lt;br /&gt;
===Data===&lt;br /&gt;
 16, 4, 5, 1, 10, 2, 3, 40, 12, 13, 64, 20, 21, 88, 28, 29, 9, 58, 112, 36, 37, 136, 44, 45, 160, 52, 53, 17, 106, 34, 35, 11, 70, 22, 23, 7, 46, 14, 15, 184, 60, 61&lt;br /&gt;
===Offset 1,1===&lt;br /&gt;
===Comments===&lt;br /&gt;
The sequence is the flattened form of an irregular table S(i, j) (see the example below) which has rows i &amp;gt;= 1 consisting of subsequences of varying length. We define three mappings:&lt;br /&gt;
 d (for &amp;quot;divide&amp;quot;) maps n -&amp;gt; (n - 1)/3 if n == 1 mod 3, &lt;br /&gt;
 m (for &amp;quot;multiply&amp;quot;) maps n = n/2 for all n,&lt;br /&gt;
 s (for &amp;quot;squeeze&amp;quot;) is dm and maps n -&amp;gt;  ((n - 1) / 3) * 2. &lt;br /&gt;
We note the mappings as infix operators, for example 16 d 5 and 5 m 10. For any positive row number i (also the segment &amp;quot;index&amp;quot; or &amp;quot;left side&amp;quot;) as starting value, we compute the elements S[i, j] by the mappings shown in the column &amp;quot;Map&amp;quot; of the following table:&lt;br /&gt;
 j | Map  | Form of i    |  S(i, j)     |  Residues  | Residues not yet covered&lt;br /&gt;
 --+------+ -------------+--------------+------------+-------------------------&lt;br /&gt;
 1 |      |  1 * k +  1  |   4 * k +  3 |   3 mod  4 |   0,  1,  2     mod  4&lt;br /&gt;
 2 | / 3  |  3 * k +  1  |   4 * k +  1 |   1 mod  4 |   0,  2,  4,  6 mod  8&lt;br /&gt;
 3 | * 2  |  3 * k +  1  |   8 * k +  2 |   2 mod  8 |   0,  4,  6     mod  8&lt;br /&gt;
 4 | / 3  |  9 * k +  7  |   8 * k +  6 |   6 mod  8 |   0,  4,  8, 12 mod 16&lt;br /&gt;
 5 | * 2  |  9 * k +  7  |  16 * k + 12 |  12 mod 16 |   0,  4,  8     mod 16&lt;br /&gt;
 6 | / 3  | 27 * k +  7  |  16 * k +  4 |   4 mod 16 |   0,  8, 16, 24 mod 32&lt;br /&gt;
 7 | * 2  | 27 * k +  7  |  32 * k +  8 |   8 mod 32 |   0, 16, 24     mod 32&lt;br /&gt;
 8 | / 3  | 81 * k + 61  |  32 * k + 24 |  24 mod 32 |   0, 16, 32, 48 mod 64&lt;br /&gt;
 9 | * 2  | 81 * k + 61  |  64 * k + 48 |  48 mod 64 |   0, 16, 32     mod 64&lt;br /&gt;
 ..| ...  |  e * k +  f  |   g * k +  m |   m mod  g |   0, ...&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
the following series of mappings:&lt;br /&gt;
 j = 1: mm, j 2 as defined by the following algorithm:&lt;br /&gt;
Construction and proof are similiar to that in A322469, which is more simple.&lt;br /&gt;
===Example===&lt;br /&gt;
Table S(i, j) begins:&lt;br /&gt;
  i\j    1   2   3   4   5   6   7   8   9  10  11  12  13  14  15&lt;br /&gt;
  ----------------------------------------------------------------&lt;br /&gt;
  1:    16   4   5   1  10   2   3&lt;br /&gt;
  2:    40  12  13&lt;br /&gt;
  3:    64  20  21&lt;br /&gt;
  4:    88  28  29   9  58&lt;br /&gt;
  5:   112  36  37&lt;br /&gt;
  6:   136  44  45&lt;br /&gt;
  7:   160  52  53  17 106  34  35  11  70  22  23   7  46  14  15&lt;br /&gt;
  8:   184  60  61&lt;br /&gt;
===Crossrefs===&lt;/div&gt;</summary>
		<author><name>imported&gt;Gfis</name></author>
	</entry>
</feed>