OFFSET
1,1
COMMENTS
The first terms that appear in both the concatenations in increasing and decreasing order are 510, 550, 624, 714, 1111, 5625, 50100, 51020, 53125, 56250, 67134, ...
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..250
EXAMPLE
Aliquot parts of 95 are 1, 5, 19 and their concatenation in decreasing order is 1951 where 95 appears.
MAPLE
with(numtheory): P:=proc(n) local a, b, k;
a:=sort([op(divisors(n) minus {n})]); b:=a[nops(a)];
for k from nops(a) by -1 to 2 do b:=b*10^(ilog10(a[k-1])+1)+a[k-1]; od;
if searchtext(convert(n, string), convert(b, string))>0
then n; fi; end: seq(P(i), i=2..22220);
MATHEMATICA
Select[Range[23000], SequenceCount[Flatten[IntegerDigits/@Reverse[Most[Divisors[ #]]]], IntegerDigits[ #]]>0&] (* Harvey P. Dale, Nov 20 2023 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Paolo P. Lava, Feb 05 2019
STATUS
approved