|
| |
|
|
A095229
|
|
a(1) = 1; a(n) = n multiplied by the concatenation of all previous terms.
|
|
0
| | |
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| a(n) >= 10^(2^(n-2)-1) (can be easily shown by induction)
|
|
|
EXAMPLE
| Let n = 4. The previous terms are 1,2 and 36. Their concatentation is 1236. This number is multiplied by 4 and we get a(4) = 4944.
|
|
|
MATHEMATICA
| a = {1}; For[n=2, n<10, n++, AppendTo[a, n*FromDigits[Flatten[IntegerDigits[a]]]]]; a
|
|
|
CROSSREFS
| Sequence in context: A200571 A203021 A001070 * A047832 A004003 A060739
Adjacent sequences: A095226 A095227 A095228 * A095230 A095231 A095232
|
|
|
KEYWORD
| base,nonn,less
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jun 11 2004
|
|
|
EXTENSIONS
| Edited, corrected and extended by Stefan Steinerberger (stefan.steinerberger(AT)gmail.com), Jun 16 2007
|
| |
|
|