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

A250007
Run lengths in A100618.
3
1, 1, 2, 1, 1, 2, 1, 3, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 1, 1, 2, 1, 3, 2, 2, 1, 1, 2, 4, 1, 1, 2, 1, 1, 3, 3, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 2, 3, 3, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 1, 7, 1, 1, 2, 1, 1, 2, 1, 3, 1, 1, 2, 2, 2, 4, 1, 1, 2, 1
OFFSET
1,3
LINKS
PROG
(Haskell)
import Data.List (group)
a250007 n = a250007_list !! (n-1)
a250007_list = map length $ group $ map a100618 [1..]
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jan 14 2015
STATUS
approved