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) = 295245 is in this sequence because 295245 = 3^10 * 5 has exactly 11 prime factors counted with multiplicity and reverse(295245) = 542592 = 2^7 * 3^3 * 157 also has 11 prime factors counted with multiplicity.
PROG
(PARI) is(n) = {
my(r = fromdigits(Vecrev(digits(n))));
n!=r && bigomega(n) == 11 && bigomega(r) == 11
} \\ David A. Corneth, Mar 07 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Jun 16 2005
EXTENSIONS
a(5)-a(25) from Donovan Johnson, Apr 09 2010
STATUS
approved