|
| |
|
|
A064223
|
|
a(1) = 1; a(n + 1) = a(n) + number of decimal digits of a(n) for n > 0.
|
|
2
| |
|
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 103, 106, 109, 112, 115, 118, 121, 124, 127, 130, 133, 136
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=1,...,1000
|
|
|
FORMULA
| a(1) = 1; a(n + 1) = a(n) + ceil(log10(a(n) + 1)) for n > 0
|
|
|
MATHEMATICA
| NestList[#+IntegerLength[#]&, 1, 70] (* From Harvey P. Dale, Jul 26 2011 *)
|
|
|
PROG
| (PARI) { a=0; for (n=1, 1000, write("b064223.txt", n, " ", a+=#Str(a)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Sep 10 2009]
|
|
|
CROSSREFS
| Sequence in context: A032960 A117804 A088235 * A098952 A172432 A144688
Adjacent sequences: A064220 A064221 A064222 * A064224 A064225 A064226
|
|
|
KEYWORD
| nice,nonn,base
|
|
|
AUTHOR
| Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Sep 21 2001
|
|
|
EXTENSIONS
| FORMULA corrected by Harry J. Smith (hjsmithh(AT)sbcglobal.net), Sep 10 2009
|
| |
|
|