A087325 Numbers k such that k and its 10's complement both have the same prime signature.
3, 5, 7, 11, 14, 15, 17, 26, 29, 30, 35, 38, 41, 47, 50, 53, 59, 62, 65, 70, 71, 74, 83, 85, 86, 89, 94, 97, 110, 111, 113, 122, 129, 132, 134, 137, 140, 150, 153, 158, 170, 173, 174, 179, 183, 185, 186, 187, 191, 195, 201, 206, 209, 212, 215, 219, 221, 227, 236
Offset: 1
Examples
35 is a member as 35= 5*7 and its 10's complement (100-35) = 65 = 13*5 both have the prime signature p*q. 35 is a member as 35 = 5*7 and its 10's complement (100-35) = 65 = 13*5 both have the prime signature p*q.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
ps:= n -> sort(ifactors(n)[2][..,2]): tc:= n -> 10^(1+ilog10(n))-n: select(n -> ps(n) = ps(tc(n)), [$1..1000]); # Robert Israel, Jul 02 2024
Extensions
More terms from David Wasserman, May 06 2005
Comments