OFFSET
1,2
COMMENTS
Also gives lengths of runs of zeros and ones in A195376.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
J. C. Lagarias, E. M. Rains and N. J. A. Sloane, The EKG sequence, Exper. Math. 11 (2002), 437-446.
PROG
(Haskell)
import Data.List (group)
a064654 n = a064654_list !! (n-1)
a064654_list = map length $ group a195376_list
-- Reinhard Zumkeller, Sep 17 2001
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Oct 09 2001
EXTENSIONS
More terms from Matthew Conroy, Oct 16 2001
STATUS
approved