Inhaltsverzeichnis

Development of
Algorithmic Constructions

04:32:35
Deutsch
20.Apr 2024

Polynom = x^2-29x+7

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) = 7 = 7
f(1) = 21 = 3*7
f(2) = 47 = 47
f(3) = 71 = 71
f(4) = 93 = 3*31
f(5) = 113 = 113
f(6) = 131 = 131
f(7) = 147 = 3*7*7
f(8) = 161 = 7*23
f(9) = 173 = 173
f(10) = 183 = 3*61
f(11) = 191 = 191
f(12) = 197 = 197
f(13) = 201 = 3*67
f(14) = 203 = 7*29
f(15) = 203 = 7*29
f(16) = 201 = 3*67
f(17) = 197 = 197
f(18) = 191 = 191
f(19) = 183 = 3*61
f(20) = 173 = 173
f(21) = 161 = 7*23
f(22) = 147 = 3*7*7
f(23) = 131 = 131
f(24) = 113 = 113
f(25) = 93 = 3*31
f(26) = 71 = 71
f(27) = 47 = 47
f(28) = 21 = 3*7
f(29) = 7 = 7
f(30) = 37 = 37
f(31) = 69 = 3*23
f(32) = 103 = 103
f(33) = 139 = 139
f(34) = 177 = 3*59
f(35) = 217 = 7*31
f(36) = 259 = 7*37
f(37) = 303 = 3*101
f(38) = 349 = 349
f(39) = 397 = 397
f(40) = 447 = 3*149
f(41) = 499 = 499
f(42) = 553 = 7*79
f(43) = 609 = 3*7*29
f(44) = 667 = 23*29
f(45) = 727 = 727
f(46) = 789 = 3*263
f(47) = 853 = 853
f(48) = 919 = 919
f(49) = 987 = 3*7*47
f(50) = 1057 = 7*151
f(51) = 1129 = 1129
f(52) = 1203 = 3*401
f(53) = 1279 = 1279
f(54) = 1357 = 23*59
f(55) = 1437 = 3*479
f(56) = 1519 = 7*7*31
f(57) = 1603 = 7*229
f(58) = 1689 = 3*563
f(59) = 1777 = 1777
f(60) = 1867 = 1867
f(61) = 1959 = 3*653
f(62) = 2053 = 2053
f(63) = 2149 = 7*307
f(64) = 2247 = 3*7*107
f(65) = 2347 = 2347
f(66) = 2449 = 31*79
f(67) = 2553 = 3*23*37
f(68) = 2659 = 2659
f(69) = 2767 = 2767
f(70) = 2877 = 3*7*137
f(71) = 2989 = 7*7*61
f(72) = 3103 = 29*107
f(73) = 3219 = 3*29*37
f(74) = 3337 = 47*71
f(75) = 3457 = 3457
f(76) = 3579 = 3*1193
f(77) = 3703 = 7*23*23
f(78) = 3829 = 7*547
f(79) = 3957 = 3*1319
f(80) = 4087 = 61*67
f(81) = 4219 = 4219
f(82) = 4353 = 3*1451
f(83) = 4489 = 67*67
f(84) = 4627 = 7*661
f(85) = 4767 = 3*7*227
f(86) = 4909 = 4909
f(87) = 5053 = 31*163
f(88) = 5199 = 3*1733
f(89) = 5347 = 5347
f(90) = 5497 = 23*239
f(91) = 5649 = 3*7*269
f(92) = 5803 = 7*829
f(93) = 5959 = 59*101
f(94) = 6117 = 3*2039
f(95) = 6277 = 6277
f(96) = 6439 = 47*137
f(97) = 6603 = 3*31*71
f(98) = 6769 = 7*967
f(99) = 6937 = 7*991
f(100) = 7107 = 3*23*103

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-29x+7

f(0)=7
f(1)=3
f(2)=47
f(3)=71
f(4)=31
f(5)=113
f(6)=131
f(7)=1
f(8)=23
f(9)=173
f(10)=61
f(11)=191
f(12)=197
f(13)=67
f(14)=29
f(15)=1
f(16)=1
f(17)=1
f(18)=1
f(19)=1
f(20)=1
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=37
f(31)=1
f(32)=103
f(33)=139
f(34)=59
f(35)=1
f(36)=1
f(37)=101
f(38)=349
f(39)=397
f(40)=149
f(41)=499
f(42)=79
f(43)=1
f(44)=1
f(45)=727
f(46)=263
f(47)=853
f(48)=919
f(49)=1
f(50)=151
f(51)=1129
f(52)=401
f(53)=1279
f(54)=1
f(55)=479
f(56)=1
f(57)=229
f(58)=563
f(59)=1777
f(60)=1867
f(61)=653
f(62)=2053
f(63)=307
f(64)=107
f(65)=2347
f(66)=1
f(67)=1
f(68)=2659
f(69)=2767
f(70)=137
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=3457
f(76)=1193
f(77)=1
f(78)=547
f(79)=1319
f(80)=1
f(81)=4219
f(82)=1451
f(83)=1
f(84)=661
f(85)=227
f(86)=4909
f(87)=163
f(88)=1733
f(89)=5347
f(90)=239
f(91)=269
f(92)=829
f(93)=1
f(94)=2039
f(95)=6277
f(96)=1
f(97)=1
f(98)=967
f(99)=991

b) Substitution of the polynom
The polynom f(x)=x^2-29x+7 could be written as f(y)= y^2-203.25 with x=y+14.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-14.5
f'(x)>2x-30 with x > 14

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

7, 3, 47, 71, 31, 113, 131, 1, 23, 173, 61, 191, 197, 67, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 37, 1, 103, 139, 59, 1, 1, 101, 349, 397, 149, 499, 79, 1, 1, 727, 263, 853, 919, 1, 151, 1129, 401, 1279, 1, 479, 1, 229, 563, 1777, 1867, 653, 2053, 307, 107, 2347, 1, 1, 2659, 2767, 137, 1, 1, 1, 1, 3457, 1193, 1, 547, 1319, 1, 4219, 1451, 1, 661, 227, 4909, 163, 1733, 5347, 239, 269, 829, 1, 2039, 6277, 1, 1, 967, 991, 1, 251, 257, 2543, 211, 1, 389, 8353, 8539, 2909, 241, 9109, 443, 1, 9697, 3299, 10099, 10303, 1, 1531, 223, 1, 11353, 503, 3929, 12007, 1747, 593, 409, 12907, 1, 461, 1, 659, 2011, 1, 1, 1, 1, 5099, 2221, 1, 5351, 347, 16567, 1, 743, 1, 839, 577, 271, 6143, 317, 18979, 1, 2791, 19819, 6701, 20389, 1, 1, 3037, 3079, 7283, 22147, 22447, 7583, 23053, 1, 1, 23977, 1, 1, 24919, 25237, 1217, 3697, 26203, 1, 1, 877, 9173, 1, 4027, 1, 28867, 29209, 9851, 1031, 1, 1, 30949, 1361, 1, 1, 32377, 1559, 4729, 33469, 11279, 433, 1, 1, 1, 5101, 523, 36469, 1, 12413, 1, 5431, 1, 38803, 39199, 1, 1, 569, 1, 1, 41617, 14009, 1, 42853, 14423, 1, 6301, 14843, 44953, 1973, 15269, 46237, 1, 2243, 1, 47977, 16139, 48859, 1049, 1, 1, 50647, 17033, 1663, 52009, 17489, 7561, 1, 619, 54319, 54787, 1, 2423, 1, 2699, 937, 57637, 19373, 58603, 1597, 2837, 8581, 2633, 1, 1009, 62047, 20849, 9007, 1297, 1, 64567, 1103, 21863, 66103, 1, 1, 2333, 2351, 22901, 647, 883, 3347, 1, 71353, 773, 1, 557, 1, 1, 10657, 677, 1283, 76249, 25601, 77359, 11131, 1, 79039, 3461, 26723, 80737, 81307, 1, 11779, 1051, 1, 2903, 823, 1237, 12277, 1, 1, 631, 1, 29633, 2887, 1, 617, 91303, 91909, 30839, 4049, 93739, 4493, 13567, 1567, 32069, 2617, 97453, 32693, 1, 1, 709, 2719, 3491, 1171, 3307, 14737, 4943, 701, 105097, 1, 1033, 107053, 1, 1, 3517, 36563, 1, 1657, 1, 2293, 1, 1, 4973, 115057, 1, 2477, 16729, 1, 1, 1, 39953, 4157, 1, 5807, 2503, 1, 41351, 124759, 3391, 1, 18127, 18229, 42773, 129037, 129757, 1, 131203, 1, 6317, 133387, 1889, 1, 135589, 136327, 1, 19687, 1, 787, 6089, 140797, 1627, 1, 1, 47939, 144577, 1439, 1571, 1, 1, 1, 1, 149953, 1069, 151507, 152287, 1, 1, 2621, 1, 156217, 797, 2287, 1, 3253, 1, 1229, 1, 809, 163417, 1, 1, 7211, 166669, 55829, 3581, 169129, 8093, 1, 2417, 1, 1063, 1153, 58313, 25111, 1097, 1, 1, 5779, 59999, 180847, 1, 8693, 4957, 1789, 2683, 3049, 3167, 1277, 929, 1, 63443, 2693, 1, 64319, 27691, 27817, 1, 8543, 6367, 66089, 2521, 28579, 1367, 201847, 202747, 67883, 3467, 8933, 1, 29611, 208189, 1483, 210019, 5701, 70619, 1, 30529, 2467, 7433, 5851, 1, 3259, 31327, 10487, 3301, 222109, 1, 223999, 224947, 1, 1409, 2129, 76253, 229717, 1, 77213, 1, 1, 78179, 1, 236479, 79151, 1579, 1487, 11447, 4091, 1, 2797, 1, 245317, 1, 1, 248299, 3613, 1093, 3181, 2273, 36187, 1, 85109, 8269, 257353, 1213, 259387, 37201, 1, 11411, 1523, 88169, 2027, 8599, 12743, 38377, 1, 90239, 9371, 1, 91283, 1, 1, 92333, 2753, 279109, 1987, 281227, 1, 1, 7687, 4261, 4153, 287629, 1, 13799, 1123, 1, 97673, 294103, 1399, 1619, 1847, 6091, 3221, 300649, 301747, 1, 1, 43579, 1, 307267, 2729, 1453, 1181, 13553, 14897, 44851, 1933, 105401, 1423, 318457, 1, 45817, 45979, 1, 1697, 1, 108803, 327553, 46957, 1, 330997, 1, 1, 10789, 1, 1, 2099, 339103, 1, 3191, 342607, 114593, 49279, 1, 115769, 348487, 1, 1, 1787, 50461, 2411, 355609, 356803, 2539, 11587, 3499, 1, 51829, 2657, 1, 6007, 1, 3323, 1823, 1, 1, 1, 374953, 3389, 1, 54091, 18089, 381103, 1, 127859, 384817, 2591, 18443, 1, 389797, 130349, 392299, 1, 1303, 1, 1831, 132863, 399853, 401119, 134129, 3919, 57847, 1, 14051, 2707, 4409, 1721, 412603, 19709, 1, 8861, 1, 419053, 420349, 140549, 1, 60607, 141851, 426859, 428167, 143159, 430789, 61729, 20639, 5503, 18959, 4703, 1429, 3359, 21017, 63241, 1, 5119, 1, 448027, 3187, 1, 64579, 6571, 1, 7477, 1, 1693, 9391, 21977, 1, 12547, 155201, 1, 4637, 22367, 1, 1, 2677, 475207, 476587, 1489, 1, 9811, 160709, 16673, 1, 1, 6869, 1, 23357, 491899, 15913, 1601, 1, 1, 1, 71479, 501769, 167729, 504607, 1, 169151, 1, 72901, 170579, 513169, 10949, 4649, 1, 74131, 1, 2473, 16879, 1, 18143, 527599, 1, 75787, 1, 1, 534889, 536353, 5783, 77041, 1, 2963, 543703, 1, 3877, 4001, 78517, 1, 552589, 554077, 185189, 557059, 9467, 26669, 80221, 563047, 1, 24611, 19571, 1, 2203, 81727, 1, 575119, 576637, 1, 15667, 1, 27749, 1, 25469, 1, 3083, 590389, 1, 1, 1877, 198851, 598099, 2689, 8713, 12301, 1, 201953, 607417, 608977, 1801, 21107, 3023, 29297, 1, 1, 206651, 1, 623107, 1, 12781, 1, 209813, 4817, 20407, 211403, 1, 1, 212999, 5669, 642199, 3203, 645409, 92431, 1, 1, 651853, 217823, 655087, 656707, 1, 3251, 2087, 221069, 4783, 21499, 2819, 1, 95911, 1, 29333, 1949, 225983, 679597, 13903, 1, 1, 686209, 6197, 6827, 691189, 32993, 2111, 30269, 6287, 699529, 3089, 234293, 1, 1, 1, 709603, 1, 10333, 12113, 102337, 1, 719749, 11827, 241049, 1, 5227, 34679, 104281, 1, 244463, 1, 1, 1, 105751, 105997, 247901, 10499, 747157, 4231, 20287, 4673, 1, 1, 1, 253103, 1, 3331, 1, 109471, 768049, 1873, 24889, 773317, 1, 110977, 111229, 1, 782137, 1, 2593, 4831, 3637, 5381, 34469, 794569, 265451, 798139, 7079, 38177, 1, 1, 9277, 27893, 810697, 270833, 116329, 1, 4621, 1, 1, 274451, 6299, 1, 1, 11699, 2399, 1, 836107, 837937, 39989, 1, 1, 1, 10723, 848959, 283601, 17401, 2069, 2179, 37313, 1, 9907, 863767, 123661, 1, 1, 4129, 4099, 874957, 1, 41843, 17971, 13171, 1, 5869, 888103, 296663, 1, 127681, 8069, 897553, 3319, 13063, 29137, 1, 1, 908959, 6553, 304259, 31541, 31607, 1, 5717, 922357, 308093, 926203, 15731, 310019, 1, 133417, 311951, 937789, 3061, 313889, 1, 1, 45119, 20201, 12043, 317783, 25819, 4217, 45677, 2251, 31069, 1, 1, 969037,

6. Sequence of the polynom (only primes)

7, 3, 47, 71, 31, 113, 131, 23, 173, 61, 191, 197, 67, 29, 37, 103, 139, 59, 101, 349, 397, 149, 499, 79, 727, 263, 853, 919, 151, 1129, 401, 1279, 479, 229, 563, 1777, 1867, 653, 2053, 307, 107, 2347, 2659, 2767, 137, 3457, 1193, 547, 1319, 4219, 1451, 661, 227, 4909, 163, 1733, 5347, 239, 269, 829, 2039, 6277, 967, 991, 251, 257, 2543, 211, 389, 8353, 8539, 2909, 241, 9109, 443, 9697, 3299, 10099, 10303, 1531, 223, 11353, 503, 3929, 12007, 1747, 593, 409, 12907, 461, 659, 2011, 5099, 2221, 5351, 347, 16567, 743, 839, 577, 271, 6143, 317, 18979, 2791, 19819, 6701, 20389, 3037, 3079, 7283, 22147, 22447, 7583, 23053, 23977, 24919, 25237, 1217, 3697, 26203, 877, 9173, 4027, 28867, 29209, 9851, 1031, 30949, 1361, 32377, 1559, 4729, 33469, 11279, 433, 5101, 523, 36469, 12413, 5431, 38803, 39199, 569, 41617, 14009, 42853, 14423, 6301, 14843, 44953, 1973, 15269, 46237, 2243, 47977, 16139, 48859, 1049, 50647, 17033, 1663, 52009, 17489, 7561, 619, 54319, 54787, 2423, 2699, 937, 57637, 19373, 58603, 1597, 2837, 8581, 2633, 1009, 62047, 20849, 9007, 1297, 64567, 1103, 21863, 66103, 2333, 2351, 22901, 647, 883, 3347, 71353, 773, 557, 10657, 677, 1283, 76249, 25601, 77359, 11131, 79039, 3461, 26723, 80737, 81307, 11779, 1051, 2903, 823, 1237, 12277, 631, 29633, 2887, 617, 91303, 91909, 30839, 4049, 93739, 4493, 13567, 1567, 32069, 2617, 97453, 32693, 709, 2719, 3491, 1171, 3307, 14737, 4943, 701, 105097, 1033, 107053, 3517, 36563, 1657, 2293, 4973, 115057, 2477, 16729, 39953, 4157, 5807, 2503, 41351, 124759, 3391, 18127, 18229, 42773, 129037, 129757, 131203, 6317, 133387, 1889, 135589, 136327, 19687, 787, 6089, 140797, 1627, 47939, 144577, 1439, 1571, 149953, 1069, 151507, 152287, 2621, 156217, 797, 2287, 3253, 1229, 809, 163417, 7211, 166669, 55829, 3581, 169129, 8093, 2417, 1063, 1153, 58313, 25111, 1097, 5779, 59999, 180847, 8693, 4957, 1789, 2683, 3049, 3167, 1277, 929, 63443, 2693, 64319, 27691, 27817, 8543, 6367, 66089, 2521, 28579, 1367, 201847, 202747, 67883, 3467, 8933, 29611, 208189, 1483, 210019, 5701, 70619, 30529, 2467, 7433, 5851, 3259, 31327, 10487, 3301, 222109, 223999, 224947, 1409, 2129, 76253, 229717, 77213, 78179, 236479, 79151, 1579, 1487, 11447, 4091, 2797, 245317, 248299, 3613, 1093, 3181, 2273, 36187, 85109, 8269, 257353, 1213, 259387, 37201, 11411, 1523, 88169, 2027, 8599, 12743, 38377, 90239, 9371, 91283, 92333, 2753, 279109, 1987, 281227, 7687, 4261, 4153, 287629, 13799, 1123, 97673, 294103, 1399, 1619, 1847, 6091, 3221, 300649, 301747, 43579, 307267, 2729, 1453, 1181, 13553, 14897, 44851, 1933, 105401, 1423, 318457, 45817, 45979, 1697, 108803, 327553, 46957, 330997, 10789, 2099, 339103, 3191, 342607, 114593, 49279, 115769, 348487, 1787, 50461, 2411, 355609, 356803, 2539, 11587, 3499, 51829, 2657, 6007, 3323, 1823, 374953, 3389, 54091, 18089, 381103, 127859, 384817, 2591, 18443, 389797, 130349, 392299, 1303, 1831, 132863, 399853, 401119, 134129, 3919, 57847, 14051, 2707, 4409, 1721, 412603, 19709, 8861, 419053, 420349, 140549, 60607, 141851, 426859, 428167, 143159, 430789, 61729, 20639, 5503, 18959, 4703, 1429, 3359, 21017, 63241, 5119, 448027, 3187, 64579, 6571, 7477, 1693, 9391, 21977, 12547, 155201, 4637, 22367, 2677, 475207, 476587, 1489, 9811, 160709, 16673, 6869, 23357, 491899, 15913, 1601, 71479, 501769, 167729, 504607, 169151, 72901, 170579, 513169, 10949, 4649, 74131, 2473, 16879, 18143, 527599, 75787, 534889, 536353, 5783, 77041, 2963, 543703, 3877, 4001, 78517, 552589, 554077, 185189, 557059, 9467, 26669, 80221, 563047, 24611, 19571, 2203, 81727, 575119, 576637, 15667, 27749, 25469, 3083, 590389, 1877, 198851, 598099, 2689, 8713, 12301, 201953, 607417, 608977, 1801, 21107, 3023, 29297, 206651, 623107, 12781, 209813, 4817, 20407, 211403, 212999, 5669, 642199, 3203, 645409, 92431, 651853, 217823, 655087, 656707, 3251, 2087, 221069, 4783, 21499, 2819, 95911, 29333, 1949, 225983, 679597, 13903, 686209, 6197, 6827, 691189, 32993, 2111, 30269, 6287, 699529, 3089, 234293, 709603, 10333, 12113, 102337, 719749, 11827, 241049, 5227, 34679, 104281, 244463, 105751, 105997, 247901, 10499, 747157, 4231, 20287, 4673, 253103, 3331, 109471, 768049, 1873, 24889, 773317, 110977, 111229, 782137, 2593, 4831, 3637, 5381, 34469, 794569, 265451, 798139, 7079, 38177, 9277, 27893, 810697, 270833, 116329, 4621, 274451, 6299, 11699, 2399, 836107, 837937, 39989, 10723, 848959, 283601, 17401, 2069, 2179, 37313, 9907, 863767, 123661, 4129, 4099, 874957, 41843, 17971, 13171, 5869, 888103, 296663, 127681, 8069, 897553, 3319, 13063, 29137, 908959, 6553, 304259, 31541, 31607, 5717, 922357, 308093, 926203, 15731, 310019, 133417, 311951, 937789, 3061, 313889, 45119, 20201, 12043, 317783, 25819, 4217, 45677, 2251, 31069, 969037,

7. Distribution of the primes

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

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)
11010731.0000000.7000001.0000000.0000000.0000000.000000
21005830280.5800000.3000000.5800005.8000004.2857149.333333
31.0007011975040.7010000.1970000.70100012.0862066.56666718.000000
410.0007.1181.4535.6650.7118000.1453000.71180010.1540667.37563511.240079
5100.00071.12311.15659.9670.7112300.1115600.7112309.9919927.67790810.585526
61.000.000707.63291.766615.8660.7076320.0917660.7076329.9494118.22570810.270082
710.000.0007.052.506776.3556.276.1510.7052510.0776350.7052519.9663478.46015910.190774
8100.000.00070.362.5466.724.30463.638.2420.7036250.0672430.7036259.9769568.66137810.139692
91.000.000.000702.338.54859.337.300643.001.2480.7023390.0593370.7023399.9817108.82430410.104007
1010.000.000.0007.013.279.380531.037.7156.482.241.6650.7013280.0531040.7013289.9856108.94947510.081227


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
245411.2500001.0000000.2500001.6666671.333333inf
388621.0000000.7500000.2500001.6000001.5000002.000000
41614950.8750000.5625000.3125001.7500001.5000002.500000
532151050.4687500.3125000.1562501.0714291.1111111.000000
6643722150.5781250.3437500.2343752.4666672.2000003.000000
71288138430.6328120.2968750.3359382.1891891.7272732.866667
825616670960.6484380.2734380.3750002.0493831.8421052.232558
95123471142330.6777340.2226560.4550782.0903611.6285712.427083
101.0247182025160.7011720.1972660.5039062.0691641.7719302.214592
112.0481.4393781.0610.7026370.1845700.5180662.0041781.8712872.056201
124.0962.8946802.2140.7065430.1660160.5405272.0111191.7989422.086711
138.1925.8071.2244.5830.7088620.1494140.5594482.0065651.8000002.070009
1416.38411.6392.2499.3900.7103880.1372680.5731202.0043051.8374182.048876
1532.76823.3014.12519.1760.7110900.1258850.5852052.0019761.8341492.042172
1665.53646.6477.60039.0470.7117770.1159670.5958102.0019311.8424242.036243
17131.07293.14814.24478.9040.7106630.1086730.6019901.9968701.8742102.020744
18262.144186.03226.779159.2530.7096560.1021540.6075021.9971661.8800202.018313
19524.288371.42950.706320.7230.7084450.0967140.6117311.9965871.8934992.013921
201.048.576741.99795.845646.1520.7076230.0914050.6162191.9976821.8902102.014673
212.097.1521.482.083181.8311.300.2520.7067120.0867040.6200081.9974241.8971362.012300
224.194.3042.961.541345.5272.616.0140.7060860.0823800.6237061.9982291.9002652.011929
238.388.6085.917.418659.0275.258.3910.7054110.0785620.6268491.9980881.9073102.010077
2416.777.21611.825.5611.258.36410.567.1970.7048580.0750040.6298541.9984331.9094272.009588
2533.554.43223.634.4862.409.30221.225.1840.7043630.0718030.6325601.9985931.9146302.008592
2667.108.86447.236.3014.619.24442.617.0570.7038760.0688320.6350441.9986181.9172542.007853
27134.217.72894.412.9638.873.64285.539.3210.7034310.0661140.6373181.9987371.9210162.007162
28268.435.456188.719.01117.074.433171.644.5780.7030330.0636070.6394261.9988681.9241742.006616
29536.870.912377.236.12032.904.496344.331.6240.7026570.0612890.6413681.9989301.9271212.006073
301.073.741.824754.092.39463.482.680690.609.7140.7023030.0591230.6431801.9989931.9293012.005653
312.147.483.6481.507.484.110122.645.7531.384.838.3570.7019770.0571110.6448661.9990711.9319562.005240
324.294.967.2963.013.666.521237.220.1432.776.446.3780.7016740.0552320.6464421.9991361.9341902.004888
338.589.934.5926.024.879.220459.345.9375.565.533.2830.7013880.0534750.6479131.9991861.9363702.004553
3417.179.869.18412.045.181.729890.352.72211.154.829.0070.7011220.0518250.6492971.9992401.9383052.004270


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
123110012
244120013
386141113
4169171134
53210271135
664221473478
7128383077101011
82567062714192017
9512114106724283230
101.024202194748495550
112.048378370797949493
124.0966806727171167177165
138.1921.2241.2167305301306312
1416.3842.2492.2417551558563577
1532.7684.1254.11779951.0471.0361.047
1665.5367.6007.59271.8651.9161.8881.931
17131.07214.24414.23673.5273.5653.5533.599
18262.14426.77926.77176.6696.7486.6366.726
19524.28850.70650.698712.63012.70112.64212.733
201.048.57695.84595.837723.88424.05823.83324.070
212.097.152181.831181.823745.38845.69345.27045.480
224.194.304345.527345.519786.11886.80686.28986.314
238.388.608659.027659.0197164.606165.324164.528164.569
2416.777.2161.258.3641.258.3567314.433314.873314.477314.581
2533.554.4322.409.3022.409.2947602.699602.362601.575602.666
2667.108.8644.619.2444.619.23671.155.4491.154.6931.154.3521.154.750
27134.217.7288.873.6428.873.63472.218.3392.217.4182.217.9712.219.914
28268.435.45617.074.43317.074.42574.268.1914.267.3254.269.5894.269.328
29536.870.91232.904.49632.904.48878.227.1648.223.8708.228.2708.225.192
301.073.741.82463.482.68063.482.672715.873.73915.868.86615.870.41315.869.662
312.147.483.648122.645.753122.645.745730.662.12030.659.14830.662.91530.661.570
324.294.967.296237.220.143237.220.135759.302.31959.306.62759.301.28659.309.911
338.589.934.592459.345.937459.345.9297114.831.488114.842.519114.830.991114.840.939
3417.179.869.184890.352.722890.352.7147222.586.313222.594.272222.585.302222.586.835


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
241100001
382110002
4165320122
5325320122
66415691365
71284316277121212
825696356120252526
95122339713649576661
101.024516223293121131138126
112.0481.061459602268276263254
124.0962.2149501.264559547570538
138.1924.5832.0182.5651.1471.1481.1711.117
1416.3849.3904.2265.1642.3542.3832.3752.278
1532.76819.1768.70210.4744.8174.8054.8424.712
1665.53639.04717.88021.1679.8039.7669.7789.700
17131.07278.90436.30442.60019.82519.73419.64519.700
18262.144159.25373.73685.51739.80839.95839.74439.743
19524.288320.723149.253171.47080.22680.21580.19980.083
201.048.576646.152302.305343.847161.639161.546161.638161.329
212.097.1521.300.252611.367688.885324.847325.130325.106325.169
224.194.3042.616.0141.235.8141.380.200653.523653.344654.003655.144
238.388.6085.258.3912.491.5772.766.8141.313.6091.314.8411.314.5051.315.436
2416.777.21610.567.1975.020.4855.546.7122.640.8992.642.6512.641.0492.642.598
2533.554.43221.225.18410.110.12511.115.0595.308.1915.305.8235.304.0175.307.153
2667.108.86442.617.05720.347.71122.269.34610.655.75910.656.45110.651.42010.653.427
27134.217.72885.539.32140.926.12644.613.19521.383.83421.387.95021.383.25321.384.284
28268.435.456171.644.57882.283.06689.361.51242.907.76942.917.28542.906.62542.912.899
29536.870.912344.331.624165.353.263178.978.36186.074.36886.089.41986.077.46786.090.370
301.073.741.824690.609.714332.199.570358.410.144172.629.586172.675.521172.645.458172.659.149
312.147.483.6481.384.838.357667.157.836717.680.521346.180.524346.231.168346.214.263346.212.402
324.294.967.2962.776.446.3781.339.403.4271.437.042.951694.078.134694.146.167694.120.267694.101.810
338.589.934.5925.565.533.2832.688.369.3872.877.163.8961.391.332.4681.391.426.5941.391.388.1771.391.386.044
3417.179.869.18411.154.829.0075.394.703.1565.760.125.8512.788.658.6502.788.730.0322.788.776.9042.788.663.421


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 3, 47, 71, 31, 113, 131, 1, 23, 173, 61, 191, 197, 67, 29, 1, 1, 1, 1, 1,
Found in Database : 7, 3, 47, 71, 31, 113, 131, 23, 173, 61, 191, 197, 67, 29, 37, 103, 139, 59, 101, 349, 397,
Found in Database : 3, 7, 23, 29, 31, 37, 47, 59, 61, 67, 71, 79, 101, 103, 107, 113, 131, 137, 139, 149,