A294241 Longest non-repeating Game of Life on an n X n torus that ends with a fixed pattern.
2, 2, 3, 10, 52, 91, 224
Offset: 1
Examples
For n = 3 the starting state is: +---+---+---+ | * | * | * | +---+---+---+ | | | | +---+---+---+ | | | | +---+---+---+ For n = 4 the starting state is: +---+---+---+---+ | * | * | * | | +---+---+---+---+ | | | * | | +---+---+---+---+ | * | * | | | +---+---+---+---+ | | | | | +---+---+---+---+ For n = 5 the starting state is: +---+---+---+---+---+ | * | * | | * | | +---+---+---+---+---+ | * | | | | | +---+---+---+---+---+ | * | * | | * | * | +---+---+---+---+---+ | * | | * | | | +---+---+---+---+---+ | | | | | | +---+---+---+---+---+ From _Bert Dobbelaere_, Jun 20 2024: (Start) For n = 6 the starting state is: +---+---+---+---+---+---+ | | | * | | * | * | +---+---+---+---+---+---+ | * | * | | | * | * | +---+---+---+---+---+---+ | | | * | | * | | +---+---+---+---+---+---+ | * | * | | | | * | +---+---+---+---+---+---+ | | | | | | * | +---+---+---+---+---+---+ | | | | * | | * | +---+---+---+---+---+---+ For n = 7 the starting state is: +---+---+---+---+---+---+---+ | * | | * | * | | | * | +---+---+---+---+---+---+---+ | * | | | * | | * | | +---+---+---+---+---+---+---+ | | * | | * | * | | | +---+---+---+---+---+---+---+ | | * | * | | | | * | +---+---+---+---+---+---+---+ | | * | * | | * | * | | +---+---+---+---+---+---+---+ | | | | | * | | * | +---+---+---+---+---+---+---+ | | | * | | * | * | | +---+---+---+---+---+---+---+ (End)
Links
- Code Golf Stack Exchange User "Per Alexandersson", Longest non-repeating Game-of-Life sequence
Extensions
a(7) from Bert Dobbelaere, Jun 20 2024
Comments