Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:20:10
Deutsch
20.Apr 2024

Polynom = x^2+59x-127

0. Sequence

1. Algorithm

2. Mathematical background

3. Correctness of the algorithm

4. Infinity of the sequence

5. Sequence of the polynom with 1

6. Sequence of the polynom (only primes)

7. Distribution of the primes

8. Check for existing Integer Sequences by OEIS

0. Sequence

f(0) = 127 = 127
f(1) = 67 = 67
f(2) = 5 = 5
f(3) = 59 = 59
f(4) = 125 = 5*5*5
f(5) = 193 = 193
f(6) = 263 = 263
f(7) = 335 = 5*67
f(8) = 409 = 409
f(9) = 485 = 5*97
f(10) = 563 = 563
f(11) = 643 = 643
f(12) = 725 = 5*5*29
f(13) = 809 = 809
f(14) = 895 = 5*179
f(15) = 983 = 983
f(16) = 1073 = 29*37
f(17) = 1165 = 5*233
f(18) = 1259 = 1259
f(19) = 1355 = 5*271
f(20) = 1453 = 1453
f(21) = 1553 = 1553
f(22) = 1655 = 5*331
f(23) = 1759 = 1759
f(24) = 1865 = 5*373
f(25) = 1973 = 1973
f(26) = 2083 = 2083
f(27) = 2195 = 5*439
f(28) = 2309 = 2309
f(29) = 2425 = 5*5*97
f(30) = 2543 = 2543
f(31) = 2663 = 2663
f(32) = 2785 = 5*557
f(33) = 2909 = 2909
f(34) = 3035 = 5*607
f(35) = 3163 = 3163
f(36) = 3293 = 37*89
f(37) = 3425 = 5*5*137
f(38) = 3559 = 3559
f(39) = 3695 = 5*739
f(40) = 3833 = 3833
f(41) = 3973 = 29*137
f(42) = 4115 = 5*823
f(43) = 4259 = 4259
f(44) = 4405 = 5*881
f(45) = 4553 = 29*157
f(46) = 4703 = 4703
f(47) = 4855 = 5*971
f(48) = 5009 = 5009
f(49) = 5165 = 5*1033
f(50) = 5323 = 5323
f(51) = 5483 = 5483
f(52) = 5645 = 5*1129
f(53) = 5809 = 37*157
f(54) = 5975 = 5*5*239
f(55) = 6143 = 6143
f(56) = 6313 = 59*107
f(57) = 6485 = 5*1297
f(58) = 6659 = 6659
f(59) = 6835 = 5*1367
f(60) = 7013 = 7013
f(61) = 7193 = 7193
f(62) = 7375 = 5*5*5*59
f(63) = 7559 = 7559
f(64) = 7745 = 5*1549
f(65) = 7933 = 7933
f(66) = 8123 = 8123
f(67) = 8315 = 5*1663
f(68) = 8509 = 67*127
f(69) = 8705 = 5*1741
f(70) = 8903 = 29*307
f(71) = 9103 = 9103
f(72) = 9305 = 5*1861
f(73) = 9509 = 37*257
f(74) = 9715 = 5*29*67
f(75) = 9923 = 9923
f(76) = 10133 = 10133
f(77) = 10345 = 5*2069
f(78) = 10559 = 10559
f(79) = 10775 = 5*5*431
f(80) = 10993 = 10993
f(81) = 11213 = 11213
f(82) = 11435 = 5*2287
f(83) = 11659 = 89*131
f(84) = 11885 = 5*2377
f(85) = 12113 = 12113
f(86) = 12343 = 12343
f(87) = 12575 = 5*5*503
f(88) = 12809 = 12809
f(89) = 13045 = 5*2609
f(90) = 13283 = 37*359
f(91) = 13523 = 13523
f(92) = 13765 = 5*2753
f(93) = 14009 = 14009
f(94) = 14255 = 5*2851
f(95) = 14503 = 14503
f(96) = 14753 = 14753
f(97) = 15005 = 5*3001
f(98) = 15259 = 15259
f(99) = 15515 = 5*29*107
f(100) = 15773 = 15773

1. Algorithm

If you are interested in some better algorithms have a look at quadr_Sieb_x^2+1.php.

2. Mathematical background

Lemma: If p | f(x) then also p | f(x+p) and p | f(-x-b/a) a) p | f(x) <=> ax^2 + bx + c = 0 mod p p | f(x+p) <=> a(x+p)^2 + b(x+p) + c = 0 mod p <=> ax^2 + 2axp + ap^2 + bx + bp + c = 0 mod p <=> ax^2 + bx + c = 0 mod p Thus if p | f(x) then p | f(x+p) b) if b = 0 mod a p | f(x) <=> ax^2 + bx + c = 0 mod p p | f(-x-b/a) <=> a(-x-b/a)^2 + b(-x-b/a) + c = 0 mod p <=> ax^2 + 2bx + b^2/a - bx - b^2/a + c = 0 mod p <=> ax^2 + bx + c = 0 mod p Thus if p | f(x) then p | f(-x-b/a)

3. Correctness of the algorithm

The proof for this polynom is similar to the proof for the polynom f(x)=x^2-4x+1. a) First terms for the polynom f(x) = x^2+59x-127

f(0)=127
f(1)=67
f(2)=5
f(3)=59
f(4)=1
f(5)=193
f(6)=263
f(7)=1
f(8)=409
f(9)=97
f(10)=563
f(11)=643
f(12)=29
f(13)=809
f(14)=179
f(15)=983
f(16)=37
f(17)=233
f(18)=1259
f(19)=271
f(20)=1453
f(21)=1553
f(22)=331
f(23)=1759
f(24)=373
f(25)=1973
f(26)=2083
f(27)=439
f(28)=2309
f(29)=1
f(30)=2543
f(31)=2663
f(32)=557
f(33)=2909
f(34)=607
f(35)=3163
f(36)=89
f(37)=137
f(38)=3559
f(39)=739
f(40)=3833
f(41)=1
f(42)=823
f(43)=4259
f(44)=881
f(45)=157
f(46)=4703
f(47)=971
f(48)=5009
f(49)=1033
f(50)=5323
f(51)=5483
f(52)=1129
f(53)=1
f(54)=239
f(55)=6143
f(56)=107
f(57)=1297
f(58)=6659
f(59)=1367
f(60)=7013
f(61)=7193
f(62)=1
f(63)=7559
f(64)=1549
f(65)=7933
f(66)=8123
f(67)=1663
f(68)=1
f(69)=1741
f(70)=307
f(71)=9103
f(72)=1861
f(73)=257
f(74)=1
f(75)=9923
f(76)=10133
f(77)=2069
f(78)=10559
f(79)=431
f(80)=10993
f(81)=11213
f(82)=2287
f(83)=131
f(84)=2377
f(85)=12113
f(86)=12343
f(87)=503
f(88)=12809
f(89)=2609
f(90)=359
f(91)=13523
f(92)=2753
f(93)=14009
f(94)=2851
f(95)=14503
f(96)=14753
f(97)=3001
f(98)=15259
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+59x-127 could be written as f(y)= y^2-997.25 with x=y-29.5

c) Backsubstitution Beside by backsubstitution you get an estimation for the huge of the primes with p | f(x) and p < f(x) f'(y)>(2y-1) with with y=x+29.5
f'(x)>2x+58

4. Infinity of the sequence

The mathematical proof is analogue to the proof for the polynom f(x)=x^2+1

5. Sequence of the polynom with 1

127, 67, 5, 59, 1, 193, 263, 1, 409, 97, 563, 643, 29, 809, 179, 983, 37, 233, 1259, 271, 1453, 1553, 331, 1759, 373, 1973, 2083, 439, 2309, 1, 2543, 2663, 557, 2909, 607, 3163, 89, 137, 3559, 739, 3833, 1, 823, 4259, 881, 157, 4703, 971, 5009, 1033, 5323, 5483, 1129, 1, 239, 6143, 107, 1297, 6659, 1367, 7013, 7193, 1, 7559, 1549, 7933, 8123, 1663, 1, 1741, 307, 9103, 1861, 257, 1, 9923, 10133, 2069, 10559, 431, 10993, 11213, 2287, 131, 2377, 12113, 12343, 503, 12809, 2609, 359, 13523, 2753, 14009, 2851, 14503, 14753, 3001, 15259, 1, 15773, 16033, 3259, 571, 673, 17093, 1, 3527, 17909, 3637, 499, 18743, 761, 19309, 3919, 337, 20173, 4093, 20759, 4211, 163, 367, 4391, 22259, 4513, 1, 1, 1, 821, 1, 24443, 24763, 173, 25409, 5147, 389, 26393, 1069, 27059, 5479, 27733, 419, 5683, 28759, 5821, 29453, 29803, 1, 30509, 6173, 31223, 31583, 6389, 32309, 1307, 191, 33413, 1, 34159, 6907, 34913, 1217, 1427, 1, 197, 36833, 37223, 7523, 199, 7681, 38803, 1, 1, 40009, 1, 40823, 41233, 8329, 1, 1699, 727, 43313, 8747, 44159, 241, 45013, 1567, 1, 46309, 9349, 1627, 47623, 9613, 1, 9791, 1, 49853, 10061, 1, 10243, 51673, 1409, 1, 547, 2141, 53993, 509, 10987, 827, 11177, 1, 56843, 2293, 57809, 1, 2027, 59273, 11953, 60259, 1, 61253, 1669, 12451, 647, 12653, 63773, 64283, 12959, 65309, 2633, 66343, 66863, 13477, 1151, 13687, 68963, 69493, 2801, 1907, 1, 71633, 72173, 14543, 73259, 1, 74353, 74903, 15091, 2621, 15313, 1, 593, 15649, 78809, 1, 79943, 80513, 16217, 2207, 16447, 82813, 937, 3359, 84559, 17029, 85733, 86323, 17383, 87509, 1, 829, 89303, 17981, 3121, 18223, 1, 92333, 641, 93559, 3767, 94793, 95413, 19207, 1, 19457, 1, 98543, 3967, 99809, 20089, 1, 101723, 347, 1, 20731, 2819, 104953, 21121, 1801, 21383, 1109, 108233, 751, 1231, 4409, 1, 3847, 22447, 112909, 22717, 701, 839, 1, 1087, 23399, 859, 118373, 23813, 119759, 24091, 1249, 121853, 1, 123259, 24793, 124673, 125383, 25219, 733, 5101, 1, 4447, 1, 130409, 26227, 4547, 1979, 5333, 134059, 26959, 135533, 136273, 1, 397, 27701, 1063, 1, 28151, 141509, 769, 1607, 2437, 28909, 1, 5843, 146843, 147613, 1, 149159, 1, 5197, 1, 6091, 153059, 1061, 1, 155423, 1, 797, 853, 1, 159403, 1, 161009, 32363, 162623, 163433, 1, 165059, 1327, 166693, 1319, 1, 169159, 33997, 170813, 4639, 6899, 173309, 1201, 1, 911, 1, 6121, 35671, 179203, 180053, 1, 181759, 36523, 183473, 184333, 37039, 2777, 7477, 187793, 5099, 37907, 190409, 1, 3257, 193043, 7757, 194809, 39139, 196583, 3347, 1, 6871, 40031, 1879, 201953, 1399, 5507, 40933, 1, 206483, 41479, 208309, 8369, 210143, 211063, 42397, 212909, 42767, 214763, 215693, 1733, 217559, 491, 219433, 220373, 44263, 6007, 44641, 224153, 1381, 1559, 1657, 1, 228923, 7927, 1, 231809, 9311, 233743, 234713, 47137, 236659, 47527, 6449, 1, 9623, 241559, 1, 243533, 1, 49103, 246509, 1, 3709, 249503, 50101, 1543, 50503, 4297, 1, 51109, 1483, 10303, 1, 2917, 52127, 1123, 1, 1, 264743, 10631, 1, 53569, 268883, 269923, 54193, 272009, 1, 274103, 275153, 1493, 277259, 55663, 1, 1621, 56299, 282559, 2269, 9817, 285763, 57367, 2267, 1993, 1, 291143, 11689, 2239, 1, 1531, 1889, 1609, 298759, 59971, 300953, 302053, 60631, 304259, 1, 306473, 307583, 577, 1, 12437, 312043, 313163, 1, 315409, 1, 317663, 318793, 1, 11071, 64439, 323333, 324473, 65123, 4877, 65581, 329053, 330203, 66271, 332509, 66733, 1753, 1877, 67429, 338309, 1, 340643, 341813, 68597, 1747, 69067, 1, 1283, 2791, 12071, 70249, 1789, 1777, 2447, 617, 1, 4027, 9719, 72161, 1, 72643, 364423, 2879, 73369, 368059, 14771, 370493, 1, 74587, 374159, 1, 2749, 377843, 1, 380309, 1, 1, 1, 2657, 6551, 77551, 389003, 13457, 78301, 392759, 78803, 395273, 396533, 79559, 399059, 1, 401593, 402863, 1, 10957, 1, 6089, 4219, 16421, 411809, 82619, 414383, 415673, 1, 418259, 83911, 420853, 14557, 84691, 1823, 85213, 14737, 428683, 85999, 11657, 3461, 433943, 435263, 87317, 437909, 1, 3469, 2711, 17729, 1, 1, 447233, 1, 89983, 2521, 691, 12269, 7717, 91331, 458009, 91873, 15887, 2671, 1571, 464809, 1, 467543, 468913, 94057, 471659, 1, 474413, 475793, 19087, 1, 95989, 13009, 2003, 96823, 485509, 97381, 488303, 7309, 98221, 3137, 1, 495323, 496733, 1487, 499559, 1, 502393, 3209, 2731, 17471, 1, 509513, 510943, 4099, 5297, 103049, 1489, 518123, 103913, 521009, 104491, 523903, 525353, 105361, 4937, 105943, 531173, 532633, 2887, 4217, 21481, 9127, 6067, 108287, 1, 108877, 545863, 9277, 757, 550309, 110359, 1, 2381, 111253, 557759, 3023, 560753, 2333, 1, 565259, 1, 568273, 4159, 114259, 2999, 22973, 3217, 577363, 115777, 580409, 116387, 2153, 584993, 1, 1, 3187, 1, 1, 118843, 787, 1783, 598853, 600403, 120391, 6781, 121013, 1, 1, 121949, 1, 4903, 3119, 16649, 123517, 619159, 124147, 622313, 623893, 1, 627059, 2131, 3167, 21787, 126683, 3191, 127321, 1, 2677, 1, 643009, 128923, 4933, 17509, 1, 1, 26107, 654293, 655913, 131507, 659159, 132157, 6829, 664043, 26627, 667309, 1, 670583, 672223, 1, 18257, 135431, 1, 680453, 136421, 683759, 1, 687073, 688733, 138079, 692059, 27749, 1, 697063, 139747, 1951, 140417, 703763, 10529, 5657, 19157, 142099, 712183, 713873, 143113, 717259, 143791, 720653, 722353, 1, 12301, 1, 729173, 1787, 146519, 25321, 1, 1, 739463, 1, 742909, 148927, 746363, 748093, 1, 4787, 150659, 755033, 756773, 151703, 3181, 1, 763753, 765503, 887, 7187, 154153, 20879, 774283, 155209, 26821, 31183, 2129, 3361, 5413, 786659, 1, 1, 791993, 31751, 5807, 159469, 1, 800923, 4339, 907, 1, 1, 809903, 2423, 1, 163063, 817123, 1, 164149, 12277, 1, 826193, 828013, 1, 831659, 1873, 835313, 28867, 1, 14251, 1, 844483, 846323, 169633, 850009, 170371, 853703, 3329, 171481, 859259, 172223, 862973, 4481, 1, 868559, 941, 1987, 6673, 1, 877909, 1, 881663, 30467, 1, 2281, 177839, 30727, 892973, 178973, 1, 1, 900553, 2459, 180871, 906259, 4909, 1, 10247, 182779, 2551, 36709, 1, 921563, 967, 925409, 185467, 5701, 931193, 1, 935059, 2797, 32377, 1, 188563, 977, 6529, 14159, 1, 3229, 954509, 1, 958423, 960383, 1, 964309, 38651, 9049, 970213, 1, 974159, 991, 978113, 26489, 1, 984059, 1, 988033, 990023, 997, 1, 6869, 5171, 1000003, 200401, 1, 201203, 2053, 1010033, 202409, 27407, 1, 1, 1020113, 204427, 1024159, 205237, 1028213, 2969, 1, 1034309, 207269, 1038383, 3389, 208493, 1044509, 209311, 6679, 7669, 1, 1, 2179,

6. Sequence of the polynom (only primes)

127, 67, 5, 59, 193, 263, 409, 97, 563, 643, 29, 809, 179, 983, 37, 233, 1259, 271, 1453, 1553, 331, 1759, 373, 1973, 2083, 439, 2309, 2543, 2663, 557, 2909, 607, 3163, 89, 137, 3559, 739, 3833, 823, 4259, 881, 157, 4703, 971, 5009, 1033, 5323, 5483, 1129, 239, 6143, 107, 1297, 6659, 1367, 7013, 7193, 7559, 1549, 7933, 8123, 1663, 1741, 307, 9103, 1861, 257, 9923, 10133, 2069, 10559, 431, 10993, 11213, 2287, 131, 2377, 12113, 12343, 503, 12809, 2609, 359, 13523, 2753, 14009, 2851, 14503, 14753, 3001, 15259, 15773, 16033, 3259, 571, 673, 17093, 3527, 17909, 3637, 499, 18743, 761, 19309, 3919, 337, 20173, 4093, 20759, 4211, 163, 367, 4391, 22259, 4513, 821, 24443, 24763, 173, 25409, 5147, 389, 26393, 1069, 27059, 5479, 27733, 419, 5683, 28759, 5821, 29453, 29803, 30509, 6173, 31223, 31583, 6389, 32309, 1307, 191, 33413, 34159, 6907, 34913, 1217, 1427, 197, 36833, 37223, 7523, 199, 7681, 38803, 40009, 40823, 41233, 8329, 1699, 727, 43313, 8747, 44159, 241, 45013, 1567, 46309, 9349, 1627, 47623, 9613, 9791, 49853, 10061, 10243, 51673, 1409, 547, 2141, 53993, 509, 10987, 827, 11177, 56843, 2293, 57809, 2027, 59273, 11953, 60259, 61253, 1669, 12451, 647, 12653, 63773, 64283, 12959, 65309, 2633, 66343, 66863, 13477, 1151, 13687, 68963, 69493, 2801, 1907, 71633, 72173, 14543, 73259, 74353, 74903, 15091, 2621, 15313, 593, 15649, 78809, 79943, 80513, 16217, 2207, 16447, 82813, 937, 3359, 84559, 17029, 85733, 86323, 17383, 87509, 829, 89303, 17981, 3121, 18223, 92333, 641, 93559, 3767, 94793, 95413, 19207, 19457, 98543, 3967, 99809, 20089, 101723, 347, 20731, 2819, 104953, 21121, 1801, 21383, 1109, 108233, 751, 1231, 4409, 3847, 22447, 112909, 22717, 701, 839, 1087, 23399, 859, 118373, 23813, 119759, 24091, 1249, 121853, 123259, 24793, 124673, 125383, 25219, 733, 5101, 4447, 130409, 26227, 4547, 1979, 5333, 134059, 26959, 135533, 136273, 397, 27701, 1063, 28151, 141509, 769, 1607, 2437, 28909, 5843, 146843, 147613, 149159, 5197, 6091, 153059, 1061, 155423, 797, 853, 159403, 161009, 32363, 162623, 163433, 165059, 1327, 166693, 1319, 169159, 33997, 170813, 4639, 6899, 173309, 1201, 911, 6121, 35671, 179203, 180053, 181759, 36523, 183473, 184333, 37039, 2777, 7477, 187793, 5099, 37907, 190409, 3257, 193043, 7757, 194809, 39139, 196583, 3347, 6871, 40031, 1879, 201953, 1399, 5507, 40933, 206483, 41479, 208309, 8369, 210143, 211063, 42397, 212909, 42767, 214763, 215693, 1733, 217559, 491, 219433, 220373, 44263, 6007, 44641, 224153, 1381, 1559, 1657, 228923, 7927, 231809, 9311, 233743, 234713, 47137, 236659, 47527, 6449, 9623, 241559, 243533, 49103, 246509, 3709, 249503, 50101, 1543, 50503, 4297, 51109, 1483, 10303, 2917, 52127, 1123, 264743, 10631, 53569, 268883, 269923, 54193, 272009, 274103, 275153, 1493, 277259, 55663, 1621, 56299, 282559, 2269, 9817, 285763, 57367, 2267, 1993, 291143, 11689, 2239, 1531, 1889, 1609, 298759, 59971, 300953, 302053, 60631, 304259, 306473, 307583, 577, 12437, 312043, 313163, 315409, 317663, 318793, 11071, 64439, 323333, 324473, 65123, 4877, 65581, 329053, 330203, 66271, 332509, 66733, 1753, 1877, 67429, 338309, 340643, 341813, 68597, 1747, 69067, 1283, 2791, 12071, 70249, 1789, 1777, 2447, 617, 4027, 9719, 72161, 72643, 364423, 2879, 73369, 368059, 14771, 370493, 74587, 374159, 2749, 377843, 380309, 2657, 6551, 77551, 389003, 13457, 78301, 392759, 78803, 395273, 396533, 79559, 399059, 401593, 402863, 10957, 6089, 4219, 16421, 411809, 82619, 414383, 415673, 418259, 83911, 420853, 14557, 84691, 1823, 85213, 14737, 428683, 85999, 11657, 3461, 433943, 435263, 87317, 437909, 3469, 2711, 17729, 447233, 89983, 2521, 691, 12269, 7717, 91331, 458009, 91873, 15887, 2671, 1571, 464809, 467543, 468913, 94057, 471659, 474413, 475793, 19087, 95989, 13009, 2003, 96823, 485509, 97381, 488303, 7309, 98221, 3137, 495323, 496733, 1487, 499559, 502393, 3209, 2731, 17471, 509513, 510943, 4099, 5297, 103049, 1489, 518123, 103913, 521009, 104491, 523903, 525353, 105361, 4937, 105943, 531173, 532633, 2887, 4217, 21481, 9127, 6067, 108287, 108877, 545863, 9277, 757, 550309, 110359, 2381, 111253, 557759, 3023, 560753, 2333, 565259, 568273, 4159, 114259, 2999, 22973, 3217, 577363, 115777, 580409, 116387, 2153, 584993, 3187, 118843, 787, 1783, 598853, 600403, 120391, 6781, 121013, 121949, 4903, 3119, 16649, 123517, 619159, 124147, 622313, 623893, 627059, 2131, 3167, 21787, 126683, 3191, 127321, 2677, 643009, 128923, 4933, 17509, 26107, 654293, 655913, 131507, 659159, 132157, 6829, 664043, 26627, 667309, 670583, 672223, 18257, 135431, 680453, 136421, 683759, 687073, 688733, 138079, 692059, 27749, 697063, 139747, 1951, 140417, 703763, 10529, 5657, 19157, 142099, 712183, 713873, 143113, 717259, 143791, 720653, 722353, 12301, 729173, 1787, 146519, 25321, 739463, 742909, 148927, 746363, 748093, 4787, 150659, 755033, 756773, 151703, 3181, 763753, 765503, 887, 7187, 154153, 20879, 774283, 155209, 26821, 31183, 2129, 3361, 5413, 786659, 791993, 31751, 5807, 159469, 800923, 4339, 907, 809903, 2423, 163063, 817123, 164149, 12277, 826193, 828013, 831659, 1873, 835313, 28867, 14251, 844483, 846323, 169633, 850009, 170371, 853703, 3329, 171481, 859259, 172223, 862973, 4481, 868559, 941, 1987, 6673, 877909, 881663, 30467, 2281, 177839, 30727, 892973, 178973, 900553, 2459, 180871, 906259, 4909, 10247, 182779, 2551, 36709, 921563, 967, 925409, 185467, 5701, 931193, 935059, 2797, 32377, 188563, 977, 6529, 14159, 3229, 954509, 958423, 960383, 964309, 38651, 9049, 970213, 974159, 991, 978113, 26489, 984059, 988033, 990023, 997, 6869, 5171, 1000003, 200401, 201203, 2053, 1010033, 202409, 27407, 1020113, 204427, 1024159, 205237, 1028213, 2969, 1034309, 207269, 1038383, 3389, 208493, 1044509, 209311, 6679, 7669, 2179,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+59x-127 and
the reducible primes which appear as divisor for the first time
p | x^2+59x-127 and p < x^2+59x-127

To avoid confusion with the number of primes:
I did not count the primes <= A
but I counted the primes appending the x and therefore the x <= A

ABCDEFGHIJK
exponent =log10 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
1109810.9000000.8000000.1000000.0000000.0000000.000000
21009051390.9000000.5100000.39000010.0000006.37500039.000000
31.0008093424670.8090000.3420000.4670008.9888896.70588311.974359
410.0007.9022.4205.4820.7902000.2420000.5482009.7676147.07602411.738758
5100.00076.73918.90057.8390.7673900.1890000.5783909.7113397.80991710.550712
61.000.000753.668154.841598.8270.7536680.1548410.5988279.8211868.19264510.353343
710.000.0007.444.5291.310.9036.133.6260.7444530.1310900.6133639.8777308.46612410.242735
8100.000.00073.779.46511.354.67662.424.7890.7377950.1135470.6242489.9105628.66172110.177469
91.000.000.000732.613.091100.180.187632.432.9040.7326130.1001800.6324339.9297708.82281310.131118
1010.000.000.0007.285.059.704896.510.4196.388.549.2850.7285060.0896510.6388559.9439388.94897910.101544


ABCDEFGHIJK
exponent =log2 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
123301.5000001.5000000.0000000.0000000.0000000.000000
244401.0000001.0000000.0000001.3333331.333333-nan
387700.8750000.8750000.0000001.7500001.750000-nan
416151140.9375000.6875000.2500002.1428571.571429inf
5323020100.9375000.6250000.3125002.0000001.8181822.500000
6645834240.9062500.5312500.3750001.9333331.7000002.400000
712811359540.8828120.4609380.4218751.9482761.7352942.250000
82562161091070.8437500.4257810.4179691.9115041.8474581.981481
95124261912350.8320310.3730470.4589841.9722221.7522942.196262
101.0248263474790.8066410.3388670.4677731.9389671.8167542.038298
112.0481.6466261.0200.8037110.3056640.4980471.9927361.8040352.129436
124.0963.2831.1192.1640.8015140.2731930.5283201.9945321.7875402.121569
138.1926.4782.0414.4370.7907710.2491460.5416261.9731951.8239502.050370
1416.38412.8293.7349.0950.7830200.2279050.5551151.9803951.8294952.049809
1532.76825.4356.95918.4760.7762150.2123720.5638431.9826171.8636852.031446
1665.53650.50812.92637.5820.7706910.1972350.5734561.9857681.8574512.034098
17131.072100.34424.20276.1420.7655640.1846470.5809171.9866951.8723502.026023
18262.144199.49545.353154.1420.7610130.1730080.5880051.9881111.8739362.024402
19524.288396.94585.442311.5030.7571130.1629680.5941451.9897491.8839332.020883
201.048.576790.010161.830628.1800.7534120.1543330.5990791.9902251.8940332.016610
212.097.1521.573.614306.8681.266.7460.7503580.1463260.6040321.9918911.8962372.016533
224.194.3043.135.384584.0872.551.2970.7475340.1392570.6082771.9924731.9033822.014056
238.388.6086.249.6431.112.9035.136.7400.7450160.1326680.6123471.9932621.9053722.013384
2416.777.21612.462.0562.125.78510.336.2710.7427960.1267070.6160901.9940431.9101262.012224
2533.554.43224.854.4504.068.01920.786.4310.7407200.1212360.6194841.9944101.9136552.011019
2667.108.86449.581.0247.800.27541.780.7490.7388150.1162330.6225821.9948551.9174632.010001
27134.217.72898.924.85714.984.99983.939.8580.7370480.1116470.6254011.9952161.9210862.009056
28268.435.456197.415.09628.822.728168.592.3680.7354290.1073730.6280561.9956071.9234392.008490
29536.870.912394.006.09755.547.649338.458.4480.7338940.1034660.6304281.9958261.9272172.007555
301.073.741.824786.487.820107.175.353679.312.4670.7324740.0998150.6326591.9961311.9294312.007078
312.147.483.6481.570.126.501207.048.8091.363.077.6920.7311470.0964150.6347321.9963771.9318702.006555
324.294.967.2963.134.942.556400.477.9212.734.464.6350.7299110.0932440.6366671.9966181.9342202.006096
338.589.934.5926.259.929.356775.462.4415.484.466.9150.7287520.0902760.6384761.9968241.9363432.005682
3417.179.869.18412.501.160.9091.503.062.99310.998.097.9160.7276630.0874900.6401741.9970131.9382802.005318


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p=f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
123210111
244220211
387432212
41611563413
532208124646
664341123711610
712859203913161416
8256109367328262728
95121916312848444950
101.02434711822994818686
112.048626204422160150161155
124.0961.119378741276267285291
138.1922.0416821.359509489516527
1416.3843.7341.2542.480920908949957
1532.7686.9592.3184.6411.7381.7281.7341.759
1665.53612.9264.3208.6063.2033.2473.2393.237
17131.07224.2028.07516.1276.0386.0906.0286.046
18262.14445.35315.16830.18511.25411.42911.35611.314
19524.28885.44228.59656.84621.39921.33721.43921.267
201.048.576161.83054.178107.65240.46840.35540.52240.485
212.097.152306.868102.532204.33676.66976.49276.85776.850
224.194.304584.087195.099388.988145.923146.090145.883146.191
238.388.6081.112.903371.504741.399278.087278.311277.897278.608
2416.777.2162.125.785708.8091.416.976531.355531.392531.212531.826
2533.554.4324.068.0191.356.4012.711.6181.017.2721.017.2561.017.0311.016.460
2667.108.8647.800.2752.599.6215.200.6541.949.8541.950.5761.950.1191.949.726
27134.217.72814.984.9994.994.1869.990.8133.745.3323.745.1013.747.8833.746.683
28268.435.45628.822.7289.608.77119.213.9577.206.0577.204.9727.205.9577.205.742
29536.870.91255.547.64918.520.93637.026.71313.889.28813.885.99413.887.84513.884.522
301.073.741.824107.175.35335.728.87671.446.47726.797.90426.792.53026.793.06226.791.857
312.147.483.648207.048.80969.018.765138.030.04451.768.90651.760.40151.762.14051.757.362
324.294.967.296400.477.921133.485.607266.992.314100.131.682100.120.573100.115.810100.109.856
338.589.934.592775.462.441258.482.289516.980.152193.889.709193.856.680193.861.639193.854.413
3417.179.869.1841.503.062.993501.017.7441.002.045.249375.784.265375.758.304375.762.982375.757.442


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p|f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
120000000
240000000
380000000
4164221120
53210642242
6642414108466
712854322217101215
8256107575028282724
95122351379855505872
101.024479277202115108121135
112.0481.020588432255245248272
124.0962.1641.210954534540542548
138.1924.4372.3912.0461.1061.1041.1201.107
1416.3849.0954.8134.2822.2542.2952.2942.252
1532.76818.4769.8548.6224.5744.6604.6754.567
1665.53637.58219.89417.6889.2809.5139.4769.313
17131.07276.14239.99136.15118.80119.10319.20819.030
18262.144154.14280.61173.53138.30238.67538.62338.542
19524.288311.503162.407149.09677.40877.96578.29977.831
201.048.576628.180327.366300.814156.194157.391157.421157.174
212.097.1521.266.746658.597608.149315.713316.723317.680316.630
224.194.3042.551.2971.323.3331.227.964636.930637.976637.910638.481
238.388.6085.136.7402.659.5842.477.1561.283.9311.283.6811.284.0951.285.033
2416.777.21610.336.2715.342.3824.993.8892.581.8842.583.5042.585.3932.585.490
2533.554.43220.786.43110.726.18110.060.2505.196.0705.196.7115.197.9995.195.651
2667.108.86441.780.74921.524.08120.256.66810.443.15510.445.39510.446.68010.445.519
27134.217.72883.939.85843.186.37740.753.48120.985.39020.982.53620.984.69320.987.239
28268.435.456168.592.36886.631.63481.960.73442.154.19542.148.16042.147.28642.142.727
29536.870.912338.458.448173.710.380164.748.06884.618.02284.608.31984.617.11084.614.997
301.073.741.824679.312.467348.287.854331.024.613169.849.507169.822.221169.819.744169.820.995
312.147.483.6481.363.077.692698.200.686664.877.006340.789.440340.760.658340.743.382340.784.212
324.294.967.2962.734.464.6351.399.420.3461.335.044.289683.620.852683.600.793683.608.878683.634.112
338.589.934.5925.484.466.9152.804.483.6062.679.983.3091.371.088.8991.371.113.3811.371.102.7781.371.161.857
3417.179.869.18410.998.097.9165.619.563.3515.378.534.5652.749.463.1912.749.505.6012.749.547.4052.749.581.719


8. Check for existing Integer Sequences by OEIS

Found in Database : 127, 67, 5, 59, 1, 193, 263, 1, 409, 97, 563, 643, 29, 809, 179, 983, 37, 233, 1259, 271,
Found in Database : 127, 67, 5, 59, 193, 263, 409, 97, 563, 643, 29, 809, 179, 983, 37, 233, 1259, 271, 1453, 1553, 331, 1759, 373, 1973, 2083, 439, 2309, 2543, 2663, 557, 2909, 607, 3163, 89, 137, 3559, 739,
Found in Database : 5, 29, 37, 59, 67, 89, 97, 107, 127, 131, 137,