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.

A288937 Positions of 0 in A288936; complement of A288938.

This page as a plain text file.
%I A288937 #6 Aug 03 2022 07:25:38
%S A288937 1,2,4,5,8,11,15,20,26,33,41,50,60,71,83,96,110,125,141,158,176,195,
%T A288937 215,236,258,281,305,330,356,383,411,440,470,501,533,566,600,635,671,
%U A288937 708,746,785,825,866,908,951,995,1040,1086,1133,1181,1230,1280,1331
%N A288937 Positions of 0 in A288936; complement of A288938.
%C A288937 The sequence (a(n)/n) diverges.
%H A288937 Clark Kimberling, <a href="/A288937/b288937.txt">Table of n, a(n) for n = 1..1000</a>
%t A288937 z = 11; (* number of iterates *)
%t A288937 s = {0, 0}; w[0] = StringJoin[Map[ToString, s]];
%t A288937 w[n_] := StringReplace[w[n - 1], {"00" -> "0010", "01" -> "011", "10" -> "011"}]
%t A288937 TableForm[Table[w[n], {n, 0, 10}]]
%t A288937 st = ToCharacterCode[w[z]] - 48   (* A288936 *)
%t A288937 Flatten[Position[st, 0]]  (* A288937 *)
%t A288937 Flatten[Position[st, 1]]  (* A288938 *)
%Y A288937 Cf. A167499, A288936, A288938.
%K A288937 nonn,easy
%O A288937 1,2
%A A288937 _Clark Kimberling_, Jun 28 2017