Сори, скрипт хреново скопировался в файл, поэтому оставлю его здесь
3x+1
namespace _3x_1
{
class Program
{
static void Main(string[] args)
{
int b = 2;
var list1 = new List<int>();
for (int x = 2; b <= 10; x++)
{
while (x > 1)
{
int a = x;
x = b;
if (a % 2 == 0)
{
x = a / 2;
}
else
{
x = a * 3 + 1;
}
}
b++;
list1.Add(x);
}
Console.WriteLine(list1);
}
}
}