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.

User: Gonzalo Ciruelos

Gonzalo Ciruelos's wiki page.

Gonzalo Ciruelos has authored 1 sequences.

A228014 Numbers k whose Collatz sequence length is greater than k+1 (counting both the x/2 and the 3x+1 steps).

Original entry on oeis.org

3, 6, 7, 9, 11, 14, 15, 18, 19, 27, 31, 41, 47, 54, 55, 62, 63, 71, 73, 82, 83, 91, 94, 95, 97, 108, 109, 110
Offset: 1

Author

Gonzalo Ciruelos, Aug 02 2013

Keywords

Examples

			a(1) is 3 because its Collatz sequence has eight steps: 3, 10, 5, 16, 8, 4, 2, 1.
		

Crossrefs

Cf. A082984 (allows number of steps equal to n).

Programs

  • Mathematica
    Select[Range[1000], Length[Collatz[#]] > #+1 &] (* T. D. Noe, Aug 20 2013 *)