Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Exploring Wythoff Array by kisungch
import math
G = (1+math.sqrt(5))/2 # Golden ratio
def wythoff_array(n: int) -> tuple[int, int]:
f = [1,2]
while f[-1]
Sept. 21, 2023