OFFSET
1,2
COMMENTS
EXAMPLE
The first value not itself a semiprime palindrome (A046328) or power of semiprimes (i.e., 16 = 4 * 4 which concatenate to the palindrome 44, 484 = 22^2) is 56 = 4 * 14. The first where additionally the first factor is not a single digit is 765 = 15 * 51 = 3^2 * 5 * 17 since (15, 51) are a pair of emirpimes A097393, and 765 = A158126(1).
MATHEMATICA
ok[n_] := n == 1 || Block[{d, p = Join @@ mu /@ FactorInteger[n]}, EvenQ@ Length[p] && AnyTrue[ Union[ Sort /@ ((Times @@@ #) & /@ Union[ (Sort /@ Partition[#, 2]) & /@ Permutations[p]])], (d = Join @@ IntegerDigits[#]; d == Reverse[d]) &]]; Select[ Range[1000], ok] (* Giovanni Resta, Sep 15 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Apr 22 2011
EXTENSIONS
Additional terms from Franklin T. Adams-Watters, Apr 28 2011
More terms from Giovanni Resta, Sep 15 2018
STATUS
approved