OFFSET
1,1
COMMENTS
Run lengths in A246435. - Reinhard Zumkeller, Sep 05 2014
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
B. Chen, R. Chen, J. Guo, S. Lee et al., On Base 3/2 and its sequences, arXiv:1808.04304 [math.NT], 2018.
J. S. Tanton, A collection of research problems.
FORMULA
EXAMPLE
a(1) = 3 because 0, 1 and 2 each have 1 digit.
PROG
(Haskell)
a081848 n = a081848_list !! (n-1)
a081848_list = 3 : tail (zipWith (-) (tail a070885_list) a070885_list)
-- Reinhard Zumkeller, Sep 05 2014
(Python)
from itertools import islice
def A081848_gen(): # generator of terms
yield (a:=3)
while True:
yield (b:=(a+1>>1)+(a&1))
a += b
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
N. J. A. Sloane, Apr 13 2003
EXTENSIONS
More terms from David Wasserman, Jun 28 2004
Edited by Charles R Greathouse IV, Aug 02 2010
STATUS
approved