public static void Main()
Console.WriteLine("4, 13, 31, 67... ");
Console.WriteLine("From the previous series, what position would you want to know?");
int pos = int.Parse(Console.ReadLine());
for(int i = 2; i <= pos; i++)
for(int i = 3; i <= pos; i++)
Console.WriteLine(total2);