login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A109028
Numbers that have exactly eight prime factors counted with multiplicity (A046310) whose digit reversal is different and also has 8 prime factors (with multiplicity).
10
16560, 25515, 27864, 42480, 46872, 51552, 57348, 61488, 65448, 67797, 69408, 69840, 79776, 80496, 84375, 84456, 88416, 105336, 119448, 125928, 160416, 167076, 202032, 204984, 206928, 210960, 211104, 211464, 213750, 213792, 213920, 213984
OFFSET
1,1
COMMENTS
This sequence is the k = 8 instance of the series which begins with k = 1 (emirps), k = 2, k = 3 (A109023), k = 4 (A109024), k = 5 (A109025), k = 6 (A109026), k = 7 (A109027).
LINKS
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
KEYWORD
nonn,base
AUTHOR
Jonathan Vos Post, Jun 16 2005
STATUS
approved