OFFSET
1,1
COMMENTS
Numbers in the sequence m cannot have even digits and 1: {3, 5, 7, 9, 33, 35, 37, 39, 53, ..., 99, 333, 335, ...}.
Subset of A256935.
EXAMPLE
a(5) = 33 because m(5) = 9, whose odd prime factors are 3 * 3, thus 33 is the concatenation of the factors.
MATHEMATICA
f[n_] := Block[{of = Select[Table[#1, {#2}] & @@@ FactorInteger@ n // Flatten, PrimeQ@ # && # > 2 &]}, IntegerDigits@ of // Flatten // FromDigits]; f /@ Select[Range@ 755, Plus @@ Pick[DigitCount@#, {1, 1, 0, 1, 0, 1, 0, 1, 0, 1}, 1] == 0 &] (* Michael De Vlieger, Apr 14 2015 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giovanni Teofilatto, Apr 14 2015
STATUS
approved