|
Search: id:A076135
|
|
|
| A076135 |
|
Numbers n such that O(n) = E(n)-1, where O(n), E(n) denote the number of integers k, 1 <= k <= n, such that Omega(n) is even or odd, respectively and Omega(n) denotes the number of prime factors of n, counting multiplicity. |
|
+0 1
|
|
| 906180359, 906180361, 906180363, 906180365, 906180367, 906180369, 906180371, 906180373, 906180375, 906180391, 906180393, 906180423, 906180425, 906180517, 906180519, 906180525, 906180529, 906180533, 906180537, 906180553, 906180555
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
In 1919, George Polya conjectured that O(n) >= E(n) for n >= 2. However, in 1958, C. B. Haselgrove showed that there are infinitely many positive integers n for which O(n) < E(n). In 1966, R.S. Lehman showed that 906180359 is the smallest positive integer for which O(n) = E(n) - 1. (Tattersall, p. 92)
|
|
REFERENCES
|
J. Tattersall, "Elementary Number Theory in Nine Chapters". Cambridge University Press, 2001.
|
|
MATHEMATICA
|
(*This program relies on Lehman's result that 906180359 is the least term of the sequence.*) Omega[n_] := Apply[Plus, Transpose[FactorInteger[n]][[2]]]; start = 906180360; l = {906180359}; o = 0; e = 1; i = start; While[i < 906193475, If[Mod[Omega[i], 2] == 0, e = e + 1, o = o + 1]; If[o == e - 1, l = Append[l, i]]; i = i + 1]; l
|
|
CROSSREFS
|
Sequence in context: A091340 A114665 A051470 this_sequence A015382 A115385 A122532
Adjacent sequences: A076132 A076133 A076134 this_sequence A076136 A076137 A076138
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Oct 30 2002
|
|
|
Search completed in 0.002 seconds
|