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.

A284746 Positions of 0 in A284745; complement of A191263.

Original entry on oeis.org

1, 3, 4, 5, 6, 8, 10, 12, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 36, 38, 40, 41, 42, 43, 45, 47, 49, 51, 52, 53, 54, 56, 58, 60, 62, 63, 64, 65, 67, 69, 71, 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86, 88, 89, 90, 91, 93, 95
Offset: 1

Views

Author

Clark Kimberling, Apr 13 2017

Keywords

Comments

Conjecture: a(n)/n -> (5 + sqrt(13))/6.
From Andrey Zabolotskiy, Apr 13 2017: The conjecture is true since it states that the fraction of 0's is equal to 6/(5 + sqrt(13)), which is the invariant value of the fraction of 0's under the morphism.

Examples

			As a word, A284745 = 01000010101..., in which 0 is in positions 1,3,4,5,6,8,...
		

Crossrefs

Programs

  • Mathematica
    s = Nest[Flatten[# /. {0 -> {0, 1}, 1 -> {0, 0, 0}}] &, {0}, 7] (* A284745 *)
    Flatten[Position[s, 0]]  (* this sequence *)
    Flatten[Position[s, 1]]  (* A191263 *)