OFFSET
1,2
COMMENTS
a(n) is the unique nonnegative integer less than 10^n such that a(n) + 2^(n-1) - 1 is divisible by 2^n and a(n) 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) = (A007185(n) + 10^n/2) mod 10^n.
PROG
(Sage) def A224477(n) : return crt(2^(n-1)+1, 0, 2^n, 5^n)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Eric M. Schmidt, Apr 07 2013
STATUS
approved