cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A050173 Numbers k such that A050170(k) > A050170(k+1).

Original entry on oeis.org

4, 7, 10, 12, 15, 17, 19, 20, 23, 26, 28, 29, 32, 35, 37, 38, 41, 43, 44, 47, 50, 52, 53, 56, 58, 60, 61, 64, 66, 67, 69, 70, 73, 76, 78, 80, 81, 84, 87, 89, 90, 93, 95, 97, 98, 100, 102, 103, 105, 108, 111, 113, 114, 116, 119, 121, 124
Offset: 1

Views

Author

Keywords

Comments

Complement of A050172.

Crossrefs

Programs

  • Mathematica
    kmax = 124; (* 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 *)
Showing 1-1 of 1 results.