|
Search: id:A061601
|
|
|
| A061601 |
|
9's complement of n: a(n) = 10^d - 1 - n where d is the number of digits in n. If a is a digit in n replace it with 9 - a. |
|
+0 4
|
|
| 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 89, 88, 87, 86, 85, 84, 83, 82, 81, 80, 79, 78, 77, 76, 75, 74, 73, 72, 71, 70, 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28
(list; graph; listen)
|
|
|
OFFSET
|
0,1
|
|
|
COMMENT
|
Also anti-nine numbers. - Cino Hilliard (hillcino368(AT)gmail.com), Mar 11 2006
|
|
REFERENCES
|
Kjartan Poskitt, Murderous Maths: Numbers, The Key to the Universe, Scholastic Ltd, 2002. See p 159.
|
|
LINKS
|
Harry J. Smith, Table of n, a(n) for n=0,...,1000
Matthew M. Conroy, Home page (listed instead of email address)
|
|
EXAMPLE
|
a(7) = 2 = 10 - 1 -7. a(123) = 1000 -1 -123 = 876.
|
|
PROGRAM
|
(PARI) g(n) = for(x=0, n, ln=length(Str(x)); y=10^ln-1 - x; print1(y", ")) - Cino Hilliard (hillcino368(AT)gmail.com), Mar 11 2006
(PARI) { for (n=0, 1000, ln=length(Str(n)); write("b061601.txt", n, " ", 10^ln - 1 - n) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 25 2009]
|
|
CROSSREFS
|
Sequence in context: A023451 A109910 A084019 this_sequence A098756 A112454 A138531
Adjacent sequences: A061598 A061599 A061600 this_sequence A061602 A061603 A061604
|
|
KEYWORD
|
nonn,base,easy
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), May 19 2001
|
|
EXTENSIONS
|
Corrected and extended by Matthew M. Conroy, Jan 19 2002
|
|
|
Search completed in 0.002 seconds
|