Thread for your unsure discoveries

For discussion of specific patterns or specific families of patterns in Conway's Game of Life, both newly-discovered and well-known.
https://www.muye.dev
Posts: 23
Joined: June 27th, 2026, 9:01 pm

Re: Thread for your unsure discoveries

Post by https://www.muye.dev »

Can anyone make a breeder using this?

Code: Select all

#C [[ STOP 4 ]]
4bo4b2obobobo$2bobo3bo3bo3bo$3b2ob2obob2o4b$bo2bo3bo5bo2b$2b2o4bob4o3b$b2o2bo5bob2o2b$obobobobobo3bobo$3b3o2bo4bobob$bobobobob2obo4b$2bo4bob2o2bobob$bobobo5bo5b$bobobo2b2o4bobo!
Disaster16439
Posts: 333
Joined: June 30th, 2023, 9:17 am
Location: Teyvat

Re: Thread for your unsure discoveries

Post by Disaster16439 »

https://www.muye.dev wrote: June 28th, 2026, 7:44 pm Can anyone make a breeder using this?
See https://conwaylife.com/wiki/Ants#Quadfuse. I’m pretty sure that a breeder is impossible, as such breeder would have to have frontend moving at c, the speed of light (1 cell pee generation), which is impossible. I may be wrong though.

Code: Select all

x=0,y=0,rule=B34q/S23-k
14b3o$13bo3bo$13b2ob2o9$15bo$15bo$b2o12bo12b2o$obo25bobo$o10b3o3b3o10b
o$obo25bobo$b2o12bo12b2o$15bo$15bo9$13b2ob2o$13bo3bo$14b3o!
[[ LOOP 200 THEME POISON AUTOSTART T 0 PAUSE 0.3 ]]
I’m sandless :D
User avatar
NNlk05
Posts: 659
Joined: January 14th, 2026, 8:42 pm
Location: Exploring in the Jungle of the INT Rulespace
Contact:

Re: Thread for your unsure discoveries

Post by NNlk05 »

https://www.muye.dev wrote: June 28th, 2026, 7:36 pm

Code: Select all

*really long RLE*
I cannot understand what you mean or what this pattern does. Please provide a text snippet that describes the RLE.
Feci quod potui, faciant meliora potentes.

Code: Select all

x = 10, y = 3, rule = B34twz/S23
b2o4b2o$obo4bobo$2bo4bo!
[[ AUTOSTART AUTOHIDEGUI TRACK 0 -47/270 ZOOM 4 GPS 45 STEP 3 THEME BOOK ]]
https://nnlk05.github.io

=3
https://www.muye.dev
Posts: 23
Joined: June 27th, 2026, 9:01 pm

Re: Thread for your unsure discoveries

Post by https://www.muye.dev »

What's the smallest thing that we don't know it's lifespan?

Code: Select all

#C [[ STOP 4 ]]
4bo4b2obobobo$2bobo3bo3bo3bo$3b2ob2obob2o4b$bo2bo3bo5bo2b$2b2o4bob4o3b$b2o2bo5bob2o2b$obobobobobo3bobo$3b3o2bo4bobob$bobobobob2obo4b$2bo4bob2o2bobob$bobobo5bo5b$bobobo2b2o4bobo!
https://www.muye.dev
Posts: 23
Joined: June 27th, 2026, 9:01 pm

Re: Thread for your unsure discoveries

Post by https://www.muye.dev »

Disaster16439 wrote: June 28th, 2026, 9:56 pm
https://www.muye.dev wrote: June 28th, 2026, 7:44 pm Can anyone make a breeder using this?
See https://conwaylife.com/wiki/Ants#Quadfuse. I’m pretty sure that a breeder is impossible, as such breeder would have to have frontend moving at c, the speed of light (1 cell pee generation), which is impossible. I may be wrong though.
I play it with rule

Code: Select all

@RULE RightGenLife

Four-state Life with an eastbound generator.
State 2 is a generator over empty space; state 3 is a generator over live space.
Generators move east at lightspeed and leave ordinary live cells behind.

@TABLE

n_states:4
neighborhood:Moore
symmetries:none

# Order: C,N,NE,E,SE,S,SW,W,NW,C'
# Default transition: no change.

var any0={0,1,2,3}
var any1={0,1,2,3}
var any2={0,1,2,3}
var any3={0,1,2,3}
var any4={0,1,2,3}
var any5={0,1,2,3}
var any6={0,1,2,3}
var any7={0,1,2,3}
var gen={2,3}
var l_n={1,3}
var d_n={0,2}
var l_ne={1,3}
var d_ne={0,2}
var l_e={1,3}
var d_e={0,2}
var l_se={1,3}
var d_se={0,2}
var l_s={1,3}
var d_s={0,2}
var l_sw={1,3}
var d_sw={0,2}
var wl={1}
var wd={0}
var l_nw={1,3}
var d_nw={0,2}

# Generator motion. A generator in the west neighbor moves into this cell.
0,any0,any1,any2,any3,any4,any5,gen,any6,2
1,any0,any1,any2,any3,any4,any5,gen,any6,3

# A generator leaves a normal live cell behind.
2,any0,any1,any2,any3,any4,any5,any6,any7,1
3,any0,any1,any2,any3,any4,any5,any6,any7,1

# B3 births for empty cells, excluding west-neighbor generators.
0,l_n,l_ne,l_e,d_se,d_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,l_se,d_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,l_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,l_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,d_sw,wl,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,l_e,l_se,d_s,d_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,l_s,d_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,l_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,d_sw,wl,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,l_se,l_s,d_sw,wd,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,l_sw,wd,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,d_sw,wl,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,l_s,l_sw,wd,d_nw,1
0,l_n,d_ne,d_e,d_se,l_s,d_sw,wl,d_nw,1
0,l_n,d_ne,d_e,d_se,l_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,d_s,l_sw,wl,d_nw,1
0,l_n,d_ne,d_e,d_se,d_s,l_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,l_ne,l_e,l_se,d_s,d_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,l_s,d_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,l_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,d_sw,wl,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,l_se,l_s,d_sw,wd,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,l_sw,wd,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,d_sw,wl,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,l_s,l_sw,wd,d_nw,1
0,d_n,l_ne,d_e,d_se,l_s,d_sw,wl,d_nw,1
0,d_n,l_ne,d_e,d_se,l_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,d_s,l_sw,wl,d_nw,1
0,d_n,l_ne,d_e,d_se,d_s,l_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,l_e,l_se,l_s,d_sw,wd,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,l_sw,wd,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,d_sw,wl,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,d_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,l_s,l_sw,wd,d_nw,1
0,d_n,d_ne,l_e,d_se,l_s,d_sw,wl,d_nw,1
0,d_n,d_ne,l_e,d_se,l_s,d_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,d_s,l_sw,wl,d_nw,1
0,d_n,d_ne,l_e,d_se,d_s,l_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,l_se,l_s,l_sw,wd,d_nw,1
0,d_n,d_ne,d_e,l_se,l_s,d_sw,wl,d_nw,1
0,d_n,d_ne,d_e,l_se,l_s,d_sw,wd,l_nw,1
0,d_n,d_ne,d_e,l_se,d_s,l_sw,wl,d_nw,1
0,d_n,d_ne,d_e,l_se,d_s,l_sw,wd,l_nw,1
0,d_n,d_ne,d_e,l_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,d_se,l_s,l_sw,wl,d_nw,1
0,d_n,d_ne,d_e,d_se,l_s,l_sw,wd,l_nw,1
0,d_n,d_ne,d_e,d_se,l_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,d_se,d_s,l_sw,wl,l_nw,1

# Life deaths for live cells: survive only with 2 or 3 live neighbors.
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,l_n,d_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,l_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,l_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,l_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,l_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,l_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wl,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0

@NAMES

0 empty
1 live
2 gen
3 gen-on-live

@COLORS

0   0   0   0   black
1 255 255 255   white
2 255  48  48   red
3 255 208  48   gold
and seed

Code: Select all

x = 7, y = 4, rule = RightGenLife
.A$2.2A.AB$2.2A$2A!

Code: Select all

#C [[ STOP 4 ]]
4bo4b2obobobo$2bobo3bo3bo3bo$3b2ob2obob2o4b$bo2bo3bo5bo2b$2b2o4bob4o3b$b2o2bo5bob2o2b$obobobobobo3bobo$3b3o2bo4bobob$bobobobob2obo4b$2bo4bob2o2bobob$bobobo5bo5b$bobobo2b2o4bobo!
https://www.muye.dev
Posts: 23
Joined: June 27th, 2026, 9:01 pm

Re: Thread for your unsure discoveries

Post by https://www.muye.dev »

https://www.muye.dev wrote: June 29th, 2026, 5:15 am
Disaster16439 wrote: June 28th, 2026, 9:56 pm
https://www.muye.dev wrote: June 28th, 2026, 7:44 pm Can anyone make a breeder using this?
See https://conwaylife.com/wiki/Ants#Quadfuse. I’m pretty sure that a breeder is impossible, as such breeder would have to have frontend moving at c, the speed of light (1 cell pee generation), which is impossible. I may be wrong though.
I play it with rule

Code: Select all

@RULE RightGenLife

Four-state Life with an eastbound generator.
State 2 is a generator over empty space; state 3 is a generator over live space.
Generators move east at lightspeed and leave ordinary live cells behind.

@TABLE

n_states:4
neighborhood:Moore
symmetries:none

# Order: C,N,NE,E,SE,S,SW,W,NW,C'
# Default transition: no change.

var any0={0,1,2,3}
var any1={0,1,2,3}
var any2={0,1,2,3}
var any3={0,1,2,3}
var any4={0,1,2,3}
var any5={0,1,2,3}
var any6={0,1,2,3}
var any7={0,1,2,3}
var gen={2,3}
var l_n={1,3}
var d_n={0,2}
var l_ne={1,3}
var d_ne={0,2}
var l_e={1,3}
var d_e={0,2}
var l_se={1,3}
var d_se={0,2}
var l_s={1,3}
var d_s={0,2}
var l_sw={1,3}
var d_sw={0,2}
var wl={1}
var wd={0}
var l_nw={1,3}
var d_nw={0,2}

# Generator motion. A generator in the west neighbor moves into this cell.
0,any0,any1,any2,any3,any4,any5,gen,any6,2
1,any0,any1,any2,any3,any4,any5,gen,any6,3

# A generator leaves a normal live cell behind.
2,any0,any1,any2,any3,any4,any5,any6,any7,1
3,any0,any1,any2,any3,any4,any5,any6,any7,1

# B3 births for empty cells, excluding west-neighbor generators.
0,l_n,l_ne,l_e,d_se,d_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,l_se,d_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,l_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,l_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,d_sw,wl,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,l_e,l_se,d_s,d_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,l_s,d_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,l_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,d_sw,wl,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,l_se,l_s,d_sw,wd,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,l_sw,wd,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,d_sw,wl,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,l_s,l_sw,wd,d_nw,1
0,l_n,d_ne,d_e,d_se,l_s,d_sw,wl,d_nw,1
0,l_n,d_ne,d_e,d_se,l_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,d_s,l_sw,wl,d_nw,1
0,l_n,d_ne,d_e,d_se,d_s,l_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,l_ne,l_e,l_se,d_s,d_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,l_s,d_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,l_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,d_sw,wl,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,l_se,l_s,d_sw,wd,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,l_sw,wd,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,d_sw,wl,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,l_s,l_sw,wd,d_nw,1
0,d_n,l_ne,d_e,d_se,l_s,d_sw,wl,d_nw,1
0,d_n,l_ne,d_e,d_se,l_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,d_s,l_sw,wl,d_nw,1
0,d_n,l_ne,d_e,d_se,d_s,l_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,l_e,l_se,l_s,d_sw,wd,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,l_sw,wd,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,d_sw,wl,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,d_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,l_s,l_sw,wd,d_nw,1
0,d_n,d_ne,l_e,d_se,l_s,d_sw,wl,d_nw,1
0,d_n,d_ne,l_e,d_se,l_s,d_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,d_s,l_sw,wl,d_nw,1
0,d_n,d_ne,l_e,d_se,d_s,l_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,l_se,l_s,l_sw,wd,d_nw,1
0,d_n,d_ne,d_e,l_se,l_s,d_sw,wl,d_nw,1
0,d_n,d_ne,d_e,l_se,l_s,d_sw,wd,l_nw,1
0,d_n,d_ne,d_e,l_se,d_s,l_sw,wl,d_nw,1
0,d_n,d_ne,d_e,l_se,d_s,l_sw,wd,l_nw,1
0,d_n,d_ne,d_e,l_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,d_se,l_s,l_sw,wl,d_nw,1
0,d_n,d_ne,d_e,d_se,l_s,l_sw,wd,l_nw,1
0,d_n,d_ne,d_e,d_se,l_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,d_se,d_s,l_sw,wl,l_nw,1

# Life deaths for live cells: survive only with 2 or 3 live neighbors.
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,l_n,d_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,l_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,l_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,l_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,l_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,l_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wl,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0

@NAMES

0 empty
1 live
2 gen
3 gen-on-live

@COLORS

0   0   0   0   black
1 255 255 255   white
2 255  48  48   red
3 255 208  48   gold
and seed

Code: Select all

x = 7, y = 4, rule = RightGenLife
.A$2.2A.AB$2.2A$2A!
or seed

Code: Select all

x = 3, y = 3, rule = RightGenLife
2.B$2AB$.A!
R-pentomino will explode...

Code: Select all

#C [[ STOP 4 ]]
4bo4b2obobobo$2bobo3bo3bo3bo$3b2ob2obob2o4b$bo2bo3bo5bo2b$2b2o4bob4o3b$b2o2bo5bob2o2b$obobobobobo3bobo$3b3o2bo4bobob$bobobobob2obo4b$2bo4bob2o2bobob$bobobo5bo5b$bobobo2b2o4bobo!
User avatar
NNlk05
Posts: 659
Joined: January 14th, 2026, 8:42 pm
Location: Exploring in the Jungle of the INT Rulespace
Contact:

Re: Thread for your unsure discoveries

Post by NNlk05 »

https://www.muye.dev wrote: June 29th, 2026, 5:07 am What's the smallest thing that we don't know it's lifespan?
Well, it depends on how you define "lifespan" and "smallest".
Under my definitions (smallest = cell count) its the Twin prime calculator.
Also:
Forum Rules (3a) wrote: Do not post multiple messages consecutively in the same thread without a good reason. If you made the most recent post on a thread and you have something short to add on the same topic, please edit your previous post instead of making a new one.
Feci quod potui, faciant meliora potentes.

Code: Select all

x = 10, y = 3, rule = B34twz/S23
b2o4b2o$obo4bobo$2bo4bo!
[[ AUTOSTART AUTOHIDEGUI TRACK 0 -47/270 ZOOM 4 GPS 45 STEP 3 THEME BOOK ]]
https://nnlk05.github.io

=3
User avatar
I6_I6
Posts: 1022
Joined: July 26th, 2025, 8:44 pm
Location: Here, there, somewhere, anywhere, everywhere.
Contact:

Re: Thread for your unsure discoveries

Post by I6_I6 »

https://www.muye.dev wrote: June 29th, 2026, 5:15 am
Disaster16439 wrote: June 28th, 2026, 9:56 pm
https://www.muye.dev wrote: June 28th, 2026, 7:44 pm Can anyone make a breeder using this?
See https://conwaylife.com/wiki/Ants#Quadfuse. I’m pretty sure that a breeder is impossible, as such breeder would have to have frontend moving at c, the speed of light (1 cell pee generation), which is impossible. I may be wrong though.
I play it with rule

Code: Select all

@RULE RightGenLife

Four-state Life with an eastbound generator.
State 2 is a generator over empty space; state 3 is a generator over live space.
Generators move east at lightspeed and leave ordinary live cells behind.

@TABLE

n_states:4
neighborhood:Moore
symmetries:none

# Order: C,N,NE,E,SE,S,SW,W,NW,C'
# Default transition: no change.

var any0={0,1,2,3}
var any1={0,1,2,3}
var any2={0,1,2,3}
var any3={0,1,2,3}
var any4={0,1,2,3}
var any5={0,1,2,3}
var any6={0,1,2,3}
var any7={0,1,2,3}
var gen={2,3}
var l_n={1,3}
var d_n={0,2}
var l_ne={1,3}
var d_ne={0,2}
var l_e={1,3}
var d_e={0,2}
var l_se={1,3}
var d_se={0,2}
var l_s={1,3}
var d_s={0,2}
var l_sw={1,3}
var d_sw={0,2}
var wl={1}
var wd={0}
var l_nw={1,3}
var d_nw={0,2}

# Generator motion. A generator in the west neighbor moves into this cell.
0,any0,any1,any2,any3,any4,any5,gen,any6,2
1,any0,any1,any2,any3,any4,any5,gen,any6,3

# A generator leaves a normal live cell behind.
2,any0,any1,any2,any3,any4,any5,any6,any7,1
3,any0,any1,any2,any3,any4,any5,any6,any7,1

# B3 births for empty cells, excluding west-neighbor generators.
0,l_n,l_ne,l_e,d_se,d_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,l_se,d_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,l_s,d_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,l_sw,wd,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,d_sw,wl,d_nw,1
0,l_n,l_ne,d_e,d_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,l_e,l_se,d_s,d_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,l_s,d_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,l_sw,wd,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,d_sw,wl,d_nw,1
0,l_n,d_ne,l_e,d_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,l_se,l_s,d_sw,wd,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,l_sw,wd,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,d_sw,wl,d_nw,1
0,l_n,d_ne,d_e,l_se,d_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,l_s,l_sw,wd,d_nw,1
0,l_n,d_ne,d_e,d_se,l_s,d_sw,wl,d_nw,1
0,l_n,d_ne,d_e,d_se,l_s,d_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,d_s,l_sw,wl,d_nw,1
0,l_n,d_ne,d_e,d_se,d_s,l_sw,wd,l_nw,1
0,l_n,d_ne,d_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,l_ne,l_e,l_se,d_s,d_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,l_s,d_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,l_sw,wd,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,d_sw,wl,d_nw,1
0,d_n,l_ne,l_e,d_se,d_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,l_se,l_s,d_sw,wd,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,l_sw,wd,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,d_sw,wl,d_nw,1
0,d_n,l_ne,d_e,l_se,d_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,l_s,l_sw,wd,d_nw,1
0,d_n,l_ne,d_e,d_se,l_s,d_sw,wl,d_nw,1
0,d_n,l_ne,d_e,d_se,l_s,d_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,d_s,l_sw,wl,d_nw,1
0,d_n,l_ne,d_e,d_se,d_s,l_sw,wd,l_nw,1
0,d_n,l_ne,d_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,l_e,l_se,l_s,d_sw,wd,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,l_sw,wd,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,d_sw,wl,d_nw,1
0,d_n,d_ne,l_e,l_se,d_s,d_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,l_s,l_sw,wd,d_nw,1
0,d_n,d_ne,l_e,d_se,l_s,d_sw,wl,d_nw,1
0,d_n,d_ne,l_e,d_se,l_s,d_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,d_s,l_sw,wl,d_nw,1
0,d_n,d_ne,l_e,d_se,d_s,l_sw,wd,l_nw,1
0,d_n,d_ne,l_e,d_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,l_se,l_s,l_sw,wd,d_nw,1
0,d_n,d_ne,d_e,l_se,l_s,d_sw,wl,d_nw,1
0,d_n,d_ne,d_e,l_se,l_s,d_sw,wd,l_nw,1
0,d_n,d_ne,d_e,l_se,d_s,l_sw,wl,d_nw,1
0,d_n,d_ne,d_e,l_se,d_s,l_sw,wd,l_nw,1
0,d_n,d_ne,d_e,l_se,d_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,d_se,l_s,l_sw,wl,d_nw,1
0,d_n,d_ne,d_e,d_se,l_s,l_sw,wd,l_nw,1
0,d_n,d_ne,d_e,d_se,l_s,d_sw,wl,l_nw,1
0,d_n,d_ne,d_e,d_se,d_s,l_sw,wl,l_nw,1

# Life deaths for live cells: survive only with 2 or 3 live neighbors.
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,l_n,d_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,l_ne,d_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,l_e,d_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,l_se,d_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,l_s,d_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,l_sw,wd,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wl,d_nw,0
1,d_n,d_ne,d_e,d_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wd,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,d_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wl,d_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wd,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,d_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,d_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,d_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,d_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,d_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,d_n,l_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0
1,l_n,l_ne,l_e,l_se,l_s,l_sw,wl,l_nw,0

@NAMES

0 empty
1 live
2 gen
3 gen-on-live

@COLORS

0   0   0   0   black
1 255 255 255   white
2 255  48  48   red
3 255 208  48   gold
and seed

Code: Select all

x = 7, y = 4, rule = RightGenLife
.A$2.2A.AB$2.2A$2A!
That's an OCA, so doesn't count. You should post that in a different Forum like the Sandbox or OCA forum.

Code: Select all

#C [[ THEME Golly ]]
x = 27, y = 15, rule = LifeHistory
8.A$A6.A.A$3A4.BA2B.B2D$3.A4.2B.2B2DB$2.2A2.3B.6B2.3B$2.20B$4.19B$4.2B
C10BD4B$4.2B2C10BD4B$4.B2C11B2D3B$4.13B2D4B$5.12BD3B.B2A$6.13B3.BA.A$
6.3B.B3.B10.A$25.2A!
RuleEdit: A .rule file editing tool
RandomUser331
Posts: 1
Joined: July 4th, 2026, 8:42 am

Probably found a new methuselah

Post by RandomUser331 »

Image

I accidentally found this pattern after adding a single extra cell to a beehive. (These are the 2 variants of it)

Image

It stabilizes after exactly 1100 generations, leaving an ash consisting of 8 blocks, 4 blinkers, 2 boats, 1 loaf and 4 beehives.

During its evolution it produces 8 gliders, although the sixth and eighth one survives for only 10 generations before colliding with the remaining reaction.

I'd like to call it 0-heptomino if this hasn't been catalogued.
Last edited by RandomUser331 on July 4th, 2026, 9:41 am, edited 1 time in total.
hotdogPi
Moderator
Posts: 2273
Joined: August 12th, 2020, 8:22 pm

Re: Probably found a new methuselah

Post by hotdogPi »

This is generation 2 of the R-pentomino.
User:HotdogPi/My discoveries

Periods discovered:

All evens ≤128 except 52,58,78,82,92,94,98,104,118,122

5-15,㉕-㉛,㉟㊺,51,63,65,73,75
1㊳㊵㊹㊼㊽,54,56,72,74,80,90,92
217,240,300,486,576

Guns: 20,21,32,54,55,57,114,117,124,126
SKOPs: 32,74,76,102,196
User avatar
I6_I6
Posts: 1022
Joined: July 26th, 2025, 8:44 pm
Location: Here, there, somewhere, anywhere, everywhere.
Contact:

Re: Probably found a new methuselah

Post by I6_I6 »

Welcome to the Forums!

If you select your pattern in LifeViewer (using the select tool) and copy it, you can get the RLE of your pattern.
You can use the RLE to allow other people to try your pattern as well without having to draw it manually.
To do this, paste your RLE between pattern tags, which look like this:

Code: Select all

[pattern][/pattern]
Click the pattern button above your post editor text area to add them to your post. (Code and LV tags also work, but LV tags are usually discouraged.)
Like this:

Code: Select all

x = 12, y = 5, rule = B3/S23
2bo$2obo5b2o$bobo4bo2bo$2bo6b2o$9bo!
The two variants in your first image are actually the same, since patterns in CGoL evolve the same even if they're rotated or flipped.
hotdogPi was right; it's generation 2 of the R-pentomino, one of the first patterns investigated in CGoL.
Also, you wouldn't call it 0-heptomino, since it's not a heptomino, but rather a heptaplet.

Code: Select all

#C [[ THEME Golly ]]
x = 27, y = 15, rule = LifeHistory
8.A$A6.A.A$3A4.BA2B.B2D$3.A4.2B.2B2DB$2.2A2.3B.6B2.3B$2.20B$4.19B$4.2B
C10BD4B$4.2B2C10BD4B$4.B2C11B2D3B$4.13B2D4B$5.12BD3B.B2A$6.13B3.BA.A$
6.3B.B3.B10.A$25.2A!
RuleEdit: A .rule file editing tool
8than888
Posts: 46
Joined: June 10th, 2026, 11:41 am

Re: Thread for your unsure discoveries

Post by 8than888 »

Is this p4 billiard table known?

Code: Select all

x = 11, y = 11, rule = B3/S23
7b2o$6bobo$2o2b3o$o2bo3bo$b2obobobo$2bobo3bo$2bob3ob2o$3bo3bo2bo$4b3o
2b2o$2bobo$2b2o!
period 2 expert
hotdogPi
Moderator
Posts: 2273
Joined: August 12th, 2020, 8:22 pm

Re: Thread for your unsure discoveries

Post by hotdogPi »

Yes. I've seen it before.
User:HotdogPi/My discoveries

Periods discovered:

All evens ≤128 except 52,58,78,82,92,94,98,104,118,122

5-15,㉕-㉛,㉟㊺,51,63,65,73,75
1㊳㊵㊹㊼㊽,54,56,72,74,80,90,92
217,240,300,486,576

Guns: 20,21,32,54,55,57,114,117,124,126
SKOPs: 32,74,76,102,196
Chris857
Posts: 749
Joined: June 10th, 2020, 11:26 pm

Re: Thread for your unsure discoveries

Post by Chris857 »

8than888 wrote: July 10th, 2026, 5:35 am Is this p4 billiard table known?
If you put the pattern into catagolue (https://catagolue.hatsya.com/object/xp4 ... zw11/b3s23), it having a glider synthesis (especially given that it's 220G) means that someone knew of it and put effort into the synthesis (as opposed to, say, if it were like 6-10G and maybe produced by automated scripting and not particularly known to people).
User avatar
Conwayenjoyer1
Posts: 1
Joined: July 12th, 2026, 1:36 pm

Re: Thread for your unsure discoveries

Post by Conwayenjoyer1 »

Hello,

I think I’ve found a new still life, but I’m not sure whether it has already been discovered or has a commonly used name.

Here is the pattern:

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3bo2bo$b2o4b2o$o8bo$o8bo$b2o4b2o$3bo2bo$3bo2bo$4b2o!

If it has already been discovered, I’d be interested to know its name or where it has been documented. If not, I’d be happy to hear what people think of it.
User avatar
johamwit
Posts: 117
Joined: September 12th, 2021, 6:58 am

Re: Thread for your unsure discoveries

Post by johamwit »

Welcome to the forums !

As for your pattern, I'm 99.99% confident that it's already known. Also, it's not what we would call a "notable" pattern.

Take some time to read the posts here—you'll learn a lot. For example, if you enclose your pattern code between the tags pattern and /pattern (surrounded by square brackets), it will be easy for everyone to view the pattern using the forum's built-in viewer:

Code: Select all

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3bo2bo$b2o4b2o$o8bo$o8bo$b2o4b2o$3bo2bo$3bo2bo$4b2o!
Oh my God! -- it's full of search space!
User avatar
MDA
Posts: 248
Joined: June 8th, 2026, 12:18 pm
Location: In Haven (B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-ak)
Contact:

Re: Thread for your unsure discoveries

Post by MDA »

Conwayenjoyer1 wrote: July 12th, 2026, 2:20 pm Hello,

I think I’ve found a new still life, but I’m not sure whether it has already been discovered or has a commonly used name.

Here is the pattern:

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3bo2bo$b2o4b2o$o8bo$o8bo$b2o4b2o$3bo2bo$3bo2bo$4b2o!

If it has already been discovered, I’d be interested to know its name or where it has been documented. If not, I’d be happy to hear what people think of it.
(This reply is a supplement to johamwit's post with some more information.)

Welcome to the forums!

In this case, the pattern you posted is already known and has a name (Lake 2). Also, the forum rules state that
Nathaniel wrote: March 18th, 2016, 8:52 pm
[...]

This is an academic forum, not a chat or microblogging platform. Please spend some time doing some research to familiarize yourself with what is and isn't already known about the Game of Life before posting your discoveries. [...]

[...]

Some specific examples of discoveries that won't be of interest to this community include:
A new still life.

[...]

If you decide to share your discovery with the forums, please do not post an image of the pattern. Instead, post the RLE code of the pattern within "pattern" tags. The easiest way to obtain the RLE code of a pattern is to select the pattern in Golly and then copy it to your clipboard.

Enclose all patterns within "pattern" tags. "LV" tags should only be used in extremely rare cases, primarily when the topic of the post is an animation displayed by LifeViewer waypoint commands included in the RLE comments. In those rare cases when using "LV" tags, the [[ THUMBNAIL ]] command should be used to reduce the amount of vertical space taken up by the viewer.

[...]
In this case, it is very easy to construct arbitrary still-lifes, most of which are not notable and not of interest.
Some links to learn more about Lake 2:

LifeWiki

Catagolue

Life Lexicon (about lakes in general)

Mark Niemiec's Life page

Heinrich Koenig's Pentadecathlon Page (archived)

My website

How to use pattern tags:

Code: Select all

[pattern]
Put your RLE here
[/pattern]
Edit (July 12th, 2026, 8:04 PM): Added links to Mark Niemiec's Life Page and Pentadecathlon.
My website (a database of Life objects, WIP).
GlidINT has been released!

Code: Select all

x = 5, y = 17, rule = B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-akHistory
C$2C$.2C$2C11$.3D$3.D$2.3D!
[[ STOP 72 ]]
snarks
Posts: 12
Joined: July 13th, 2026, 11:55 pm

Re: Thread for your unsure discoveries

Post by snarks »

What's this?, how to find patterns?

Code: Select all

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3b2obo$b2obo2b2o$ob2o5bo$o5b2obo$b2o2bob2o$3bob2o$3bo2bo$
4b2o!
(playing with bakery)

EDIT*:
bakery movement(not good):

Code: Select all

x = 13, y = 13, rule = B3/S23
7b2o$6bo2bo$6bobo$4b2ob2o2bo$3bo2bo2b2obo$3bobo3bo2bo$b2o2bo2bob2o$o3b
ob2obo$ob2obo3bo$bo2bo2b2o$4bobo$3bo2bo$4b2o!
rotten snack...

Code: Select all

x = 18, y = 28, rule = B3/S23
5b2ob2ob2o$5bo3bob2o3bo$6b3o6bobo$14bobo$6b3o6bo$5bo3bob2o$6b4ob2o2$6b
4ob2o$6bo2bobobo$9bobobo$10b2obobo$14b2o2$2o$bo7b2o$bobo5b2o$2b2o7$4b
2o6b2o$5b2o5bo$4bo8b3o$15bo!
User avatar
TheWayOfTheCon
Posts: 299
Joined: March 28th, 2025, 11:40 pm
Location: Kraken Mare, Titan

Re: Thread for your unsure discoveries

Post by TheWayOfTheCon »

snarks wrote: July 14th, 2026, 11:51 pm What's this?...

Code: Select all

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3b2obo$b2obo2b2o$ob2o5bo$o5b2obo$b2o2bob2o$3bob2o$3bo2bo$
4b2o!
(playing with bakery)
That is Cyclic.
snarks wrote: July 14th, 2026, 11:51 pm ...how to find patterns?
There are a lot of ways to find patterns, presuming you mean new ones, from advanced search programs to just extending a large still life with a motif or two. Its probably better if you ask that question here to keep things on topic, because this is a question that can go many ways.
I could've chose a better username, but oh well.

Still learning the ropes of cellular automata, focused on one OCA at a time. My current interest is B35/S126 and range-two LTLs.
User avatar
C_R_116
Posts: 866
Joined: April 15th, 2021, 2:49 pm
Location: At my home doing other random stuff.

Re: Thread for your unsure discoveries

Post by C_R_116 »

snarks wrote: July 14th, 2026, 11:51 pm What's this?, how to find patterns?

Code: Select all

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3b2obo$b2obo2b2o$ob2o5bo$o5b2obo$b2o2bob2o$3bob2o$3bo2bo$
4b2o!
(playing with bakery)
Welcome to the forums!
There are many pattern-searching programs. that are used to search patterns in Conway's Game Of Life. Here's an online program that searches low-period oscillators.

Try checking out for your pattern on the wiki before you post if you're unsure about it's discovery. You can also check out collections like Catagolue, newjslife, or jslife-moving.
User avatar
NNlk05
Posts: 659
Joined: January 14th, 2026, 8:42 pm
Location: Exploring in the Jungle of the INT Rulespace
Contact:

Re: Thread for your unsure discoveries

Post by NNlk05 »

TheWayOfTheCon wrote: July 15th, 2026, 12:04 am
snarks wrote: July 14th, 2026, 11:51 pm What's this?...

Code: Select all

x = 10, y = 10, rule = B3/S23
4b2o$3bo2bo$3b2obo$b2obo2b2o$ob2o5bo$o5b2obo$b2o2bob2o$3bob2o$3bo2bo$
4b2o!
(playing with bakery)
That is Cyclic.
Welcome to to User:Ian07/Cyclic!!1! (sic intentional)
Feci quod potui, faciant meliora potentes.

Code: Select all

x = 10, y = 3, rule = B34twz/S23
b2o4b2o$obo4bobo$2bo4bo!
[[ AUTOSTART AUTOHIDEGUI TRACK 0 -47/270 ZOOM 4 GPS 45 STEP 3 THEME BOOK ]]
https://nnlk05.github.io

=3
ivanmates
Posts: 2
Joined: July 15th, 2026, 8:13 am

New 6-cell methuselah lasting 1101 generations

Post by ivanmates »

Hello everyone,

I wanted to share a 6-cell methuselah that I discovered by manual experimentation.

It lasts exactly 1101 generations before stabilizing, leaving a final population of 116 cells and producing gliders along the way. It gets incredibly close to the legendary "Century" methuselah!

Here is the RLE code for anyone who wants to test it:

Code: Select all

#N 6-cell 1101g
#R B3/S23
4bO$2bOb2O$bObO!
Let me know what you think!

Two almost identical threads were created, and I merged them. You can tell originally which posts were in which threads by the post titles. --hotdogPi

Edit 2: The combined thread has been merged with Unsure Discoveries. --hotdogPi
ivanmates
Posts: 2
Joined: July 15th, 2026, 8:13 am

New 6-cell methuselah lasting 1103 generations

Post by ivanmates »

Hello,

I want to share a 6-cell methuselah that I discovered through manual experimentation.

This pattern runs for exactly 1103 generations before the core stabilizes, reaching a final population of 116 cells and releasing gliders during its chaotic evolution.

Here is the RLE code:

Code: Select all

#N 6-cell 1103g
#R B3/S23
3bO$b2O$O2bO$2bO!
Hope you find it interesting!
User avatar
MDA
Posts: 248
Joined: June 8th, 2026, 12:18 pm
Location: In Haven (B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-ak)
Contact:

Re: New 6-cell methuselah lasting 1101 generations

Post by MDA »

ivanmates wrote: July 15th, 2026, 8:18 am Hello everyone,

I wanted to share a 6-cell methuselah that I discovered by manual experimentation.

It lasts exactly 1101 generations before stabilizing, leaving a final population of 116 cells and producing gliders along the way. It gets incredibly close to the legendary "Century" methuselah!

Here is the RLE code for anyone who wants to test it:

Code: Select all

#N 6-cell 1101g
#R B3/S23
4bO$2bOb2O$bObO!
Let me know what you think!
Welcome to the forums!

The pattern you posted has a malformed RLE, but examining it further reveals it is actually equivalent to generation 2 of the R-pentomino. They converge at generation 5 (of the R).

Also, keep in mind that posting in an existing thread is usually better than creating a new one. This thread should probably be merged with Thread for your unsure discoveries or Thread For Your Accidental Discoveries.
My website (a database of Life objects, WIP).
GlidINT has been released!

Code: Select all

x = 5, y = 17, rule = B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-akHistory
C$2C$.2C$2C11$.3D$3.D$2.3D!
[[ STOP 72 ]]
User avatar
MDA
Posts: 248
Joined: June 8th, 2026, 12:18 pm
Location: In Haven (B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-ak)
Contact:

Re: New 6-cell methuselah lasting 1103 generations

Post by MDA »

ivanmates wrote: July 15th, 2026, 8:25 am Hello,

I want to share a 6-cell methuselah that I discovered through manual experimentation.

This pattern runs for exactly 1103 generations before the core stabilizes, reaching a final population of 116 cells and releasing gliders during its chaotic evolution.

Here is the RLE code:

Code: Select all

#N 6-cell 1103g
#R B3/S23
3bO$b2O$O2bO$2bO!
Hope you find it interesting!
Welcome to the forums!

The pattern you posted has a malformed RLE, but examining it further reveals it is actually a direct predecessor of the R-pentomino.

Also, keep in mind that posting in an existing thread is usually better than creating a new one, especially if you have already created a thread for a similar topic. This thread and thread 7330 should probably be merged with Thread for your unsure discoveries or Thread For Your Accidental Discoveries.
My website (a database of Life objects, WIP).
GlidINT has been released!

Code: Select all

x = 5, y = 17, rule = B3-ry4acenqt5eir6-ek/S2-a3-a4nq5aeknr6-akHistory
C$2C$.2C$2C11$.3D$3.D$2.3D!
[[ STOP 72 ]]
Post Reply