OFFSET
1,1
COMMENTS
In a row of the Wythoff array, either every two consecutive terms are relatively prime or else no two consecutive terms are relatively prime. In the first case, we call the row primitive, as in A332938. Otherwise, the row is an integer multiple of a tail of a preceding row, and we call the row nonprimitive. Conjecture: the limiting proportion of nonprimitive rows exists and is approximately 0.392.
EXAMPLE
(See A332938.)
MATHEMATICA
W[n_, k_] := Fibonacci[k + 1] Floor[n*GoldenRatio] + (n - 1) Fibonacci[k];
Select[Range[200], GCD[W[#, 1], W[#, 2]] > 1 &]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 04 2023
STATUS
approved