OFFSET
1,1
COMMENTS
Except for initial 0, rearrangement of numbers in A056524. They first differ at a(101) = 110011, while A056524(101) = 101101. If n has digits d_1 d_2 ... d_k, permute them to d_1 d_k d_2 d_{k-1} ... d_{floor(k/2)+1} and use that as index to A056524. - Franklin T. Adams-Watters, Jun 20 2006
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..9999
EXAMPLE
a(12) = 1221, deleting the LSB and the third digit 2 we get 12, deleting second and fourth digit we get 21.
PROG
(Haskell)
import Data.List (transpose)
a110745 n = read (concat $ transpose [ns, reverse ns]) :: Integer
where ns = show n
-- Reinhard Zumkeller, Feb 14 2015
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 10 2005
EXTENSIONS
More terms from Franklin T. Adams-Watters, Jun 20 2006
STATUS
approved