OFFSET
1,1
COMMENTS
See A103182 for more information.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..11121 (All terms pertaining to 10^k, k = 0..50)
Michael De Vlieger, Plot of digits of a(n) n = 1..2000, showing nonzero digits in black and 0 in white, 10X exaggeration.
EXAMPLE
We have a(14) = 205 = 80 + 125 = 5 + 200 via 80 * 125 = 10000 and 5 * 200 = 1000. This term appears twice in A103182 for this reason, but only once here. - Michael De Vlieger, Nov 29 2022
MATHEMATICA
nn = 7; f[n_] := Transpose@ {Reverse@ #[[1 ;; Ceiling[Length[#]/2]]], #[[-Ceiling[Length[#]/2] ;; -1]]} &@ Divisors[10^n]; TakeWhile[Union@ Flatten@ Table[Total /@ f[k], {k, 0, nn}], # < Total@ First@ f[nn + 1] &] (* Michael De Vlieger, Nov 29 2022 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Hugo Pfoertner, Nov 28 2022
STATUS
approved
