|
| |
|
|
A058841
|
|
From Renyi's "beta expansion of 1 in base 3/2": sequence gives lengths of runs of 0's in A058840.
|
|
3
| |
|
|
0, 1, 5, 2, 2, 1, 9, 6, 4, 6, 2, 2, 1, 11, 3, 2, 7, 2, 5, 4, 6, 3, 3, 5, 2, 4, 7, 7, 2, 5, 3, 4, 2, 3, 5, 5, 2, 2, 2, 2, 4, 3, 10, 5, 5, 2, 1, 6, 1, 5, 2, 3, 2, 3, 3, 2, 9, 6, 9, 6, 8, 2, 7, 5, 3, 2, 2, 4, 3, 1, 14, 9, 3, 6, 7, 3, 2, 2, 3, 4, 3, 2, 6, 4, 2
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
REFERENCES
| A. Renyi (1957), Representation for real numbers and their ergodic properties, Acta. Math. Acad. Sci. Hung., 8, 477-493.
|
|
|
LINKS
| Reinhard Zumkeller, Table of n, a(n) for n = 0..1000
|
|
|
PROG
| (Haskell)
import Data.List (group)
a058841 n = a058841_list !! n
a058841_list =
0 : (map length $ filter ((== 0) . head) $ group a058840_list)
-- Reinhard Zumkeller, Jul 01 2011
|
|
|
CROSSREFS
| Cf. A058840, A058842.
Sequence in context: A107719 A174485 A021661 * A129165 A190288 A081119
Adjacent sequences: A058838 A058839 A058840 * A058842 A058843 A058844
|
|
|
KEYWORD
| nonn,nice,easy
|
|
|
AUTHOR
| Claude Lenormand (claude.lenormand(AT)free.fr), Jan 05 2001
|
|
|
EXTENSIONS
| More terms from Larry Reeves (larryr(AT)acm.org), Feb 22 2001
Data corrected for n>33 by Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Jul 01 2011
|
| |
|
|