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”).

A100054
Records in A100053.
5
0, 2, 3, 4, 5, 6, 8, 9, 11, 14, 15, 23, 24, 26, 28, 33, 35
OFFSET
0,2
MATHEMATICA
clip[lst_] := Block[{p = Flatten@ Position[lst, 1]}, Take[lst, {Min@ p, Max@ p}]]; t = Max /@ Map[Length@ # &, Map[Split@ # &, Map[clip, CellularAutomaton[30, {{1}, 0}, 5000]]] /. 1 -> Nothing, {2}]; a = {0}; Do[If[t[[n]] > Max@ a, AppendTo[a, t[[n]]]], {n, Length@ t}]; a (* Michael De Vlieger, Oct 06 2015 *)
CROSSREFS
Sequence in context: A134030 A226189 A235592 * A330193 A372667 A101271
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Oct 31 2004
STATUS
approved