OFFSET
1,1
COMMENTS
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1000 terms from Harvey P. Dale)
Eric Weisstein's World of Mathematics, Almost Prime.
Eric Weisstein's World of Mathematics, Emirp.
Eric Weisstein and Jonathan Vos Post, Emirpimes.
EXAMPLE
a(2) = 1386 is in this sequence because 1386 = 2 * 3^2 * 7 * 11 has exactly 5 prime factors counted with multiplicity and reverse(1386) = 6831 = 3^3 * 11 * 23 is also has exactly 5 prime factors counted with multiplicity.
5355 is in this sequence because 5355 = 3^2 * 5 * 7 * 17 and reverse(5355) = 5535 = 3^3 * 5 * 41.
MATHEMATICA
Select[Range[6000], !PalindromeQ[#]&&Total[FactorInteger[#][[All, 2]]]==Total[ FactorInteger[ IntegerReverse[#]][[All, 2]]]==5&] (* Harvey P. Dale, Nov 20 2022 *)
PROG
(PARI) is(n) = {
my(r = fromdigits(Vecrev(digits(n))));
n!=r && bigomega(n) == 5 && bigomega(r) == 5
} \\ David A. Corneth, Mar 07 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Jun 16 2005
EXTENSIONS
Typo in definition corrected by Harvey P. Dale, Nov 20 2022
STATUS
approved