A109029 Numbers that have exactly nine prime factors counted with multiplicity (A046312) whose digit reversal is different and also has 9 prime factors (with multiplicity).
21168, 23424, 23616, 27456, 41184, 42432, 48114, 61632, 65472, 86112, 211410, 212256, 213192, 215232, 217440, 219072, 230208, 232512, 236925, 236928, 238656, 238680, 251100, 251505, 251748, 253824, 255024, 255960, 257856, 259968, 270912
Offset: 1
Examples
a(1) = 21168 is in this sequence because 21168 = 2^4 * 3^3 * 7^2 has exactly 9 prime factors counted with multiplicity and reverse(21168) = 86112 = 2^5 * 3^2 * 13 * 23 also has exactly 9 prime factors counted with multiplicity.
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.
Crossrefs
Programs
-
Mathematica
okQ[n_]:=Module[{idn=IntegerDigits[n],ridn},ridn=Reverse[idn];idn!=ridn && PrimeOmega[n]==9&&PrimeOmega[FromDigits[ridn]]==9]; Select[Range[ 271000],okQ] (* Harvey P. Dale, Sep 24 2011 *)
-
PARI
is(n) = { my(r = fromdigits(Vecrev(digits(n)))); n!=r && bigomega(n) == 9 && bigomega(r) == 9 } \\ David A. Corneth, Mar 07 2024
Comments