A224538 Number of numbers k such that all terms of the Collatz (3x+1) iteration of k are <= 10^n.
1, 4, 49, 340, 4235, 39706, 397068, 3970918, 39523168, 395436300, 3953296865
Offset: 0
Examples
For n = 1, the four k are 1, 2, 4, and 8.
Programs
-
Mathematica
Collatz[n_] := NestWhileList[If[EvenQ[#], #/2, 3 # + 1] &, n, # > 1 &]; Table[Length[Select[Range[10^n], Max[Collatz[#]] <= 10^n &]], {n, 0, 5}]
Extensions
a(10) from Donovan Johnson, Jun 05 2013