OFFSET
1,2
COMMENTS
Does every positive integer occur exactly once?
Records occur at indices 1, 2, 3, 4, 7, 10, 15, 26, 35, 50, 87, 124, 179, 306, ... with corresponding values 1, 2, 4, 8, 13, 24, 44, 69, 122, 223, 348, 614, 1118, 1744, .... - Peter Kagey, Jan 24 2018
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
MATHEMATICA
a[1] = 1; a[n_] := a[n] = If[FreeQ[Join[{0}, Array[a, n-1]], f = Floor[a[n-1]/Sqrt[5]]], f, Floor[a[n-1]*Sqrt[5]]]; Array[a, 60] (* Jean-François Alcover, Sep 12 2017 *)
CROSSREFS
KEYWORD
nonn,look
AUTHOR
STATUS
approved