OFFSET
1,1
COMMENTS
Conjecture: Only a finite number of positive integers are missing.
EXAMPLE
The first 6 antidiagonals of the Wythoff array are (1), (2,4), (3,7,6), (5,11,10,9), (8,18,16,15,12), (12,29,26,24,20,14). The 10th prime is 29, which occurs in antidiagonal 6, so a(10) = 6.
MATHEMATICA
W[n_, k_] := Fibonacci[k + 1] Floor[n*GoldenRatio] + (n - 1) Fibonacci[k];
t = Table[W[n - k + 1, k], {n, 300}, {k, n, 1, -1}];
Map[#[[1]] &, Most[Reap[NestWhileList[# + 1 &, 1,
Length[Sow[FirstPosition[t, Prime[#]]]] > 1 &]][[2]][[1]]]]
(* Peter J. C. Moses, Feb 08 2023 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 05 2023
STATUS
approved