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.

A199817 Odd numbers producing 10 even numbers in the Collatz iteration.

Original entry on oeis.org

11, 35, 113, 341
Offset: 1

Views

Author

Vincenzo Librandi, Nov 12 2011

Keywords

Crossrefs

Cf. A131450.
Cf. A199636 (row 10).

Programs

  • Mathematica
    Collatz[n_]:=NestWhileList[If[EvenQ[#],#/2,3 #+1]&,n,#>1&];t={};Do[If[Length[Select[Collatz[n],EvenQ]] == 10,AppendTo[t,n]],{n,1,100000,2}];t