OFFSET
1,1
COMMENTS
bigomega(n), also called Omega(n) is the number of prime divisors of n (counted with multiplicity) A001222.
EXAMPLE
7000 is in the sequence because bigomega(7000) = reversal(7000) = 7.
MATHEMATICA
Do[If[Plus @@ Last /@ FactorInteger[ n ] ==FromDigits[Reverse[IntegerDigits[n]]],
Print[n]], {n, 1, 10^9}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Nov 18 2010
EXTENSIONS
a(9)-a(26) from Donovan Johnson, Nov 19 2010
STATUS
approved