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”).

A181639
Numbers n such that omega(n) = digit-reverse(n).
0
20, 30, 200, 300, 2000, 3000, 20000, 30000, 200000, 300000, 2000000, 3000000, 20000000, 30000000
OFFSET
1,1
COMMENTS
omega(n) = A001221(n) is the number of distinct primes dividing n.
FORMULA
{n: A001221(n) = A004086(n)}
EXAMPLE
300 is in the sequence because omega(300) = reversal(300) = 3.
MATHEMATICA
Do[If[Length[ FactorInteger[ n ]]==FromDigits[Reverse[IntegerDigits[n]]], Print[n]],
{n, 1, 10^9}]
Select[Range[10^9], PrimeNu[#]==FromDigits[Reverse[IntegerDigits[#]]]&] (* or *) Flatten[Table[{2*10^n, 3*10^n}, {n, 10}]] (* Harvey P. Dale, Dec 17 2013 *)
CROSSREFS
Cf. A001221.
Sequence in context: A066214 A285494 A120210 * A166631 A167360 A113760
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Nov 18 2010
STATUS
approved