OFFSET
1,1
COMMENTS
a(n) is the unique positive integer less than 10^n such that a(n) - 1 is divisible by 2^n and a(n) + 1 is divisible by 5^n.
LINKS
Eric M. Schmidt, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Trimorphic Number
FORMULA
a(n) = (2 * A007185(n) - 1) mod 10^n.
PROG
(Sage) def A224473(n) : return crt(1, -1, 2^n, 5^n);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric M. Schmidt, Apr 07 2013
STATUS
approved