OFFSET
1,1
COMMENTS
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Almost Prime.
Eric Weisstein's World of Mathematics, Emirp.
Eric Weisstein and Jonathan Vos Post, Emirpimes.
EXAMPLE
a(1) = 46848 is in this sequence because 46848 = 2^8 * 3 * 61 has exactly 10 prime factors counted with multiplicity and reverse(46848) = 84864 = 2^7 * 3 * 13 * 17 also has exactly 10 prime factors counted with multiplicity.
MATHEMATICA
taQ[n_]:=Module[{idn=IntegerDigits[n], rev}, rev=Reverse[idn]; rev!=idn&&PrimeOmega[n] == 10 == PrimeOmega[FromDigits[rev]]]; Select[Range[ 1000000], taQ] (* Harvey P. Dale, May 03 2013 *)
PROG
(PARI) is(n) = {
my(r = fromdigits(Vecrev(digits(n))));
n!=r && bigomega(n) == 10 && bigomega(r) == 10
} \\ David A. Corneth, Mar 07 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Jun 16 2005
STATUS
approved