|
| |
|
|
A094295
|
|
a(1) =1, a(n) = remainder on dividing the concatenation of all previous terms by n.
|
|
1
| |
|
|
1, 1, 2, 0, 0, 4, 4, 4, 7, 7, 2, 8, 4, 12, 2, 10, 4, 0, 6, 6, 9, 9, 21, 9, 19, 17, 24, 12, 19, 19, 17, 13, 29, 13, 3, 29, 1, 7, 24, 4, 32, 36, 5, 1, 6, 0, 28, 28, 17, 17, 12, 28, 15, 13, 53, 9, 49, 33, 32, 52, 6, 42, 14, 22, 32, 58, 61, 45, 45, 15, 38, 2, 21, 45, 70, 22, 71, 11, 5, 75
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,3
|
|
|
EXAMPLE
| a(9) = 7 = 11200444 (mod 9).
|
|
|
MATHEMATICA
| f[l_List] := Append[l, Mod[FromDigits[Join @@ IntegerDigits[l]], Length[l] + 1]]; Nest[f, {1}, 80] (*Chandler*)
|
|
|
CROSSREFS
| Cf. A094296.
Sequence in context: A137830 A137505 A107498 * A085969 A117434 A115179
Adjacent sequences: A094292 A094293 A094294 * A094296 A094297 A094298
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Apr 28 2004
|
|
|
EXTENSIONS
| Extended by Ray Chandler (rayjchandler(AT)sbcglobal.net), Feb 05 2007
|
| |
|
|