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

A252707
"Smallest interesting" sequence such that each term has as many digits as the previous term's value.
1
2, 10, 1000000000
OFFSET
1,1
COMMENTS
Using 2 as the first term yields the "smallest interesting" sequence with this property. Starting with the value 1 yields the sequence 1, 1, 1, ... and starting with 3 yields a sequence that grows faster (3, 100, 10^99, ...).
The next term is too large to include. - N. J. A. Sloane, Jun 20 2017
FORMULA
a(1) = 2, a(n) = 10^(a(n-1) - 1).
MATHEMATICA
RecurrenceTable[{a[n] == 10^(a[n - 1] - 1), a[1] == 2}, a, {n, 3}] (* Michael De Vlieger, Mar 24 2015 *)
CROSSREFS
See A288848 for a variation.
Sequence in context: A119189 A309862 A260756 * A288848 A374945 A202952
KEYWORD
nonn,bref,base
AUTHOR
Oliver Wong, Mar 22 2015
STATUS
approved