A333057 Numbers k such that k and k+1 have different (ordered) prime signatures and d_3(k) = d_3(k+1), where d_3 is A007425.
2024, 5624, 13688, 15375, 21608, 50300, 62775, 69375, 70784, 108927, 110888, 116864, 118016, 130815, 149768, 152703, 164024, 213759, 221823, 224720, 238975, 242432, 255231, 257175, 283904, 297135, 324224, 341887, 346544, 365295, 366848, 366975, 379647, 455552
Offset: 1
Keywords
Examples
2024 is a term since d_3(2024) = d_3(2025) = 90, and the prime signatures of 2024 = 2^3 * 11 * 23 and 2025 = 3^4 * 5^2 are different ([1, 1, 3] and [2, 4]).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
f[p_, e_] := (e+1)*(e+2)/2; d3[1] = 1; d3[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[10^5], d3[#] == d3[#+1] && Sort[FactorInteger[#][[;;,2]]] != Sort[FactorInteger[#+1][[;;,2]]] &]
Comments