The following is code that I created to create my fractal nubmers, sharing it with the community if it will help. I can get it to go up to 91 iterations with out breaking because of the 64 bit limitation. I’m sure there is another way to get above 91 iterations and if you do I would encourage you to respond to this post if you feel inclined to do so.
internal class Program
{
static private long firstNumber, secondNumber, result;
static void Main(string[] args)
{
firstNumber = 0;
secondNumber = 1;
result = 0;
for (int i = 0; i < 100; i++)
{
result = firstNumber + secondNumber;
Console.WriteLine("Level " + i + " is " + result);
secondNumber = firstNumber;
firstNumber = result;
}
Console.ReadLine();
}
}