public static void Main()
Random rnd = new Random ();
while (length < 20 || length > 100)
Console.Write("Please input your desired length for the sequence [min-20 : max-100]: ");
length = int.Parse(Console.ReadLine());
Console.Write("Please input your desired seed or starting number: ");
y = int.Parse(Console.ReadLine());
Console.Write("Please input your desired increment: ");
x = int.Parse(Console.ReadLine());
for (int w = 0; w < nums.Length; w++)
foreach (int num in nums)