A287763 Numbers n for which A230625(n) < n, where A230625 is the concatenation of the prime factorization written in binary, converted back to decimal.
25, 27, 32, 49, 54, 64, 81, 96, 98, 121, 125, 128, 135, 147, 162, 169, 189, 192, 216, 224, 242, 243, 245, 250, 256, 289, 297, 320, 338, 343, 351, 352, 361, 363, 375, 384, 392, 405, 416, 432, 448, 486, 500, 507, 512, 513, 529, 539, 567, 576, 578, 605, 621, 625, 637, 640, 648, 675, 686, 704, 722, 729, 736, 750, 768, 775, 783, 784
Offset: 1
Programs
-
Mathematica
Select[Range@ 800, Function[n, FromDigits[#, 2] < n &@ Flatten@ Map[IntegerDigits[#, 2] &, FactorInteger[n] /. {p_, 1} :> {p}]]] (* Michael De Vlieger, Jun 23 2017 *)
-
PARI
forcomposite(n=1,1e6,A230625(n)
Comments