|
| |
|
|
A095249
|
|
Reverse concatenation of first n natural numbers mod forward concatenation of first n natural numbers.
|
|
0
| |
|
|
0, 9, 75, 619, 4941, 37041, 246919, 1234575, 9, 10987654321, 1110987654321, 121110987654321, 775432077543108, 178553219976533007, 27956332009875522906, 3805734210999774512805, 481583522109989673502704
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
EXAMPLE
| a(4) = 619 = 4321 mod 1234.
|
|
|
MATHEMATICA
| r = f = ""; Do[r = ToString[n] <> r; f = f <> ToString[n]; Print[Mod[ToExpression[r], ToExpression[f]]], {n, 1, 30}] (Propper)
|
|
|
CROSSREFS
| Sequence in context: A028991 A102094 A125397 * A190983 A136659 A126965
Adjacent sequences: A095246 A095247 A095248 * A095250 A095251 A095252
|
|
|
KEYWORD
| base,nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jun 17 2004
|
|
|
EXTENSIONS
| Corrected and extended by Ryan Propper (rpropper(AT)stanford.edu), Aug 26 2005
|
| |
|
|