cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A135381 a(n) = high point in trajectory of n under repeated application of powertrain map (see A133500).

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 32, 531441, 128, 256, 512, 30, 31, 32, 128, 81, 5832000, 729, 30840979456, 191102976, 102372436321763328, 40, 41, 42, 531441, 256, 1024, 531441, 531441, 5832000, 8470728, 50, 51, 32, 125, 625
Offset: 0

Views

Author

J. H. Conway and N. J. A. Sloane, Dec 10 2007

Keywords

Examples

			The trajectory of 39 is 39 -> 19683 -> 5038848 -> 214990848 -> 17179869184 -> 1735247072139264 -> 19999187712 -> 102372436321763328 -> 8813365017182208 -> 0, so a(39) = 102372436321763328.
		

Crossrefs

Cf. A133500, A133501. For records see A135382, A135383.

Programs

  • Maple
    maxtraj := proc(n) local h,p,M,t1,t2,i; M:=100; t1:=n; h:=n; for i from 1 to M do t2:=powertrain(t1); if t2 = t1 then RETURN(n,h); fi; if t2 > t1 then h:=t2; fi; t1:=t2; od; RETURN(n,-1); end;

A135382 Records in A135381.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 32, 531441, 5832000, 30840979456, 102372436321763328, 5385144351531158470656, 95883934811108205920256, 8384433103482628092198912000, 271349238454240747975480442880000, 194420753673323618666864443392000000000, 2230117087799166503951875964107867690793619500826624, 1262524163403573488849931050070387361916429306607697920000000
Offset: 1

Views

Author

J. H. Conway and N. J. A. Sloane, Dec 10 2007

Keywords

Comments

For every term shown, the high point of the trajectory is the initial term.

Examples

			2230117087799166503951875964107867690793619500826624 = 2^94 * 3^43 * 7^3. The next term is 2^120 * 3^40 * 5^7.
		

Crossrefs

Showing 1-2 of 2 results.