login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A050172
Numbers k such that b(k) < b(k+1), where b = A050170.
2
1, 2, 3, 5, 6, 8, 9, 11, 13, 14, 16, 18, 21, 22, 24, 25, 27, 30, 31, 33, 34, 36, 39, 40, 42, 45, 46, 48, 49, 51, 54, 55, 57, 59, 62, 63, 65, 68, 71, 72, 74, 75, 77, 79, 82, 83, 85, 86, 88, 91, 92, 94, 96, 99, 101, 104, 106, 107, 109, 110
OFFSET
1,2
COMMENTS
Complement of A050173.
LINKS
MATHEMATICA
kmax = 110; (* b = A050170 *) b[1] = 1; b[n_] := b[n] = If[FreeQ[Join[{0}, Array[b, n - 1]], f = Floor[b[n - 1]/Sqrt[5]]], f, Floor[b[n - 1]*Sqrt[5]]]; Reap[For[k = 1, k <= kmax, k++, If[b[k] < b[k + 1], Sow[k]]]][[2, 1]] (* Jean-François Alcover, Sep 12 2017 *)
CROSSREFS
Sequence in context: A320928 A186225 A353130 * A191877 A277124 A094820
KEYWORD
nonn
STATUS
approved