OFFSET
1,2
COMMENTS
In decimal digits of a(n) there is at least one prime.
EXAMPLE
a(5) = 33 because the fifth odd number is 9, and the odd prime factors of 9 are 3 * 3, thus 33 is the result of the concatenation of these factors.
MATHEMATICA
f[n_] := Block[{of = Select[Table[#1, {#2}] & @@@ FactorInteger@ n // Flatten, PrimeQ@ # && # > 2 &]}, IntegerDigits@ of // Flatten // FromDigits]; f /@ Select[Range@ 360, OddQ[Times @@ IntegerDigits[#]] &] (* Michael De Vlieger, Apr 13 2015 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Giovanni Teofilatto, Apr 13 2015
STATUS
approved