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(2) = 25515 is in this sequence because 25515 = 3^6 * 5 * 7 has exactly 8 prime factors counted with multiplicity and reverse(25515) = 51552 = 2^5 * 3^2 * 179 also has exactly 8 prime factors counted with multiplicity.
PROG
(PARI) is(n) = {
my(r = fromdigits(Vecrev(digits(n))));
n!=r && bigomega(n) == 8 && bigomega(r) == 8
} \\ David A. Corneth, Mar 07 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Jun 16 2005
STATUS
approved