login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A198590 Odd numbers producing 7 odd numbers in the Collatz iteration. 1
9, 19, 37, 77, 81, 149, 163, 309, 321, 325, 331, 597, 625, 643, 653, 663, 713, 715, 1237, 1251, 1285, 1301, 1313, 1325, 1339, 1425, 1427, 1431, 1433, 2389, 2501, 2573, 2577, 2613, 2625, 2627, 2653, 2679, 2695, 2851, 2853, 2861, 2865, 2867, 4949, 5005, 5141 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Collatz[n_] := NestWhileList[If[EvenQ[#], #/2, 3 # + 1] &, n, # > 1 &]; t = {}; Do[If[Length[Select[Collatz[n], OddQ]] == 7, AppendTo[t, n]], {n, 1, 10000, 2}]; t
col7Q[n_]:=Length[Select[NestWhileList[If[EvenQ[#], #/2, 3#+1]&, n, #>1&], OddQ]]==7; Select[ Range[1, 5201, 2], col7Q] (* Harvey P. Dale, Sep 25 2023 *)
CROSSREFS
Cf. A198584.
Sequence in context: A034056 A195042 A157034 * A297396 A145958 A290245
KEYWORD
nonn
AUTHOR
T. D. Noe, Oct 31 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 07:15 EDT 2024. Contains 371920 sequences. (Running on oeis4.)