OFFSET
1,1
COMMENTS
Concatenation of the divisors starting with the largest one leads to another sequence.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
First semiprime is 4; 4 is 2*2 -> 22.
Second semiprime is 6; 6 is 2*3 -> 23.
Third semiprime is 9; 9 is 3*3 -> 33.
Fourth semiprime is 10; 10 is 2*5 -> 25.
MAPLE
MATHEMATICA
FromDigits@ Flatten[IntegerDigits@ Table[#1, {#2}] & @@@ FactorInteger@ #] & /@ Select[Range@ 144, PrimeOmega@ # == 2 &] (* Michael De Vlieger, Oct 01 2015 *)
PROG
(PARI) do(x)=my(v=List()); forprime(p=2, sqrt(x), forprime(q=p, x\p, listput(v, [p*q, eval(Str(p, q))]))); Vec(apply(u->u[2], vecsort(v, 1))) \\ Charles R Greathouse IV, Sep 30 2015
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Eric Angelini, May 09 2005
EXTENSIONS
More terms from Reinhard Zumkeller, May 19 2005
Data corrected by Giovanni Teofilatto and Altug Alkan, Oct 01 2015
STATUS
approved