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.

A026368 a(n) = greatest k such that s(k) = n, where s = A026366.

Original entry on oeis.org

3, 6, 11, 14, 19, 22, 25, 28, 33, 36, 41, 44, 47, 50, 55, 58, 63, 66, 71, 74, 79, 82, 85, 88, 93, 96, 101, 104, 107, 110, 115, 118, 123, 126, 131, 134, 139, 142, 145, 148, 153, 156, 161, 164, 167, 170, 175, 178, 183, 186, 189, 192, 197
Offset: 1

Views

Author

Keywords

Comments

Appears to be complement of A026367. - N. J. A. Sloane, Oct 18 2022
Complement of the rank transform of the sequence A004526=(1,1,2,2,3,3,4,4,5,5,...). See A187224.
Positions of 0 in the fixed point of the morphism 0->11, 1->110; see A285431. Conjecture: -2 < n*r - a(n) < 4 for n>=1, where r = 2 + sqrt(3). - Clark Kimberling, Apr 29 2017
Also, with an initial 0, appears to be the sequence B' of P-positions in Fraenkel's (2,1)-Wythoff's game. The associated A' sequence is A026367. - N. J. A. Sloane, Oct 20 2022

Crossrefs

Programs

  • Mathematica
    s = Nest[Flatten[# /. {0 -> {1, 1}, 1 -> {1, 1, 0}}] &, {0}, 13] (* A285431 *)
    Flatten[Position[s, 0]]  (* A026368 *)
    Flatten[Position[s, 1]]  (* A026367 *)
    (* Clark Kimberling, Apr 28 2017 *)