Inhaltsverzeichnis

Development of
Algorithmic Constructions

23:22:39
Deutsch
19.Apr 2024

Polynom = x^2+3x-47

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) = 47 = 47
f(1) = 43 = 43
f(2) = 37 = 37
f(3) = 29 = 29
f(4) = 19 = 19
f(5) = 7 = 7
f(6) = 7 = 7
f(7) = 23 = 23
f(8) = 41 = 41
f(9) = 61 = 61
f(10) = 83 = 83
f(11) = 107 = 107
f(12) = 133 = 7*19
f(13) = 161 = 7*23
f(14) = 191 = 191
f(15) = 223 = 223
f(16) = 257 = 257
f(17) = 293 = 293
f(18) = 331 = 331
f(19) = 371 = 7*53
f(20) = 413 = 7*59
f(21) = 457 = 457
f(22) = 503 = 503
f(23) = 551 = 19*29
f(24) = 601 = 601
f(25) = 653 = 653
f(26) = 707 = 7*101
f(27) = 763 = 7*109
f(28) = 821 = 821
f(29) = 881 = 881
f(30) = 943 = 23*41
f(31) = 1007 = 19*53
f(32) = 1073 = 29*37
f(33) = 1141 = 7*163
f(34) = 1211 = 7*173
f(35) = 1283 = 1283
f(36) = 1357 = 23*59
f(37) = 1433 = 1433
f(38) = 1511 = 1511
f(39) = 1591 = 37*43
f(40) = 1673 = 7*239
f(41) = 1757 = 7*251
f(42) = 1843 = 19*97
f(43) = 1931 = 1931
f(44) = 2021 = 43*47
f(45) = 2113 = 2113
f(46) = 2207 = 2207
f(47) = 2303 = 7*7*47
f(48) = 2401 = 7*7*7*7
f(49) = 2501 = 41*61
f(50) = 2603 = 19*137
f(51) = 2707 = 2707
f(52) = 2813 = 29*97
f(53) = 2921 = 23*127
f(54) = 3031 = 7*433
f(55) = 3143 = 7*449
f(56) = 3257 = 3257
f(57) = 3373 = 3373
f(58) = 3491 = 3491
f(59) = 3611 = 23*157
f(60) = 3733 = 3733
f(61) = 3857 = 7*19*29
f(62) = 3983 = 7*569
f(63) = 4111 = 4111
f(64) = 4241 = 4241
f(65) = 4373 = 4373
f(66) = 4507 = 4507
f(67) = 4643 = 4643
f(68) = 4781 = 7*683
f(69) = 4921 = 7*19*37
f(70) = 5063 = 61*83
f(71) = 5207 = 41*127
f(72) = 5353 = 53*101
f(73) = 5501 = 5501
f(74) = 5651 = 5651
f(75) = 5803 = 7*829
f(76) = 5957 = 7*23*37
f(77) = 6113 = 6113
f(78) = 6271 = 6271
f(79) = 6431 = 59*109
f(80) = 6593 = 19*347
f(81) = 6757 = 29*233
f(82) = 6923 = 7*23*43
f(83) = 7091 = 7*1013
f(84) = 7261 = 53*137
f(85) = 7433 = 7433
f(86) = 7607 = 7607
f(87) = 7783 = 43*181
f(88) = 7961 = 19*419
f(89) = 8141 = 7*1163
f(90) = 8323 = 7*29*41
f(91) = 8507 = 47*181
f(92) = 8693 = 8693
f(93) = 8881 = 83*107
f(94) = 9071 = 47*193
f(95) = 9263 = 59*157
f(96) = 9457 = 7*7*193
f(97) = 9653 = 7*7*197
f(98) = 9851 = 9851
f(99) = 10051 = 19*23*23
f(100) = 10253 = 10253

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+3x-47

f(0)=47
f(1)=43
f(2)=37
f(3)=29
f(4)=19
f(5)=7
f(6)=1
f(7)=23
f(8)=41
f(9)=61
f(10)=83
f(11)=107
f(12)=1
f(13)=1
f(14)=191
f(15)=223
f(16)=257
f(17)=293
f(18)=331
f(19)=53
f(20)=59
f(21)=457
f(22)=503
f(23)=1
f(24)=601
f(25)=653
f(26)=101
f(27)=109
f(28)=821
f(29)=881
f(30)=1
f(31)=1
f(32)=1
f(33)=163
f(34)=173
f(35)=1283
f(36)=1
f(37)=1433
f(38)=1511
f(39)=1
f(40)=239
f(41)=251
f(42)=97
f(43)=1931
f(44)=1
f(45)=2113
f(46)=2207
f(47)=1
f(48)=1
f(49)=1
f(50)=137
f(51)=2707
f(52)=1
f(53)=127
f(54)=433
f(55)=449
f(56)=3257
f(57)=3373
f(58)=3491
f(59)=157
f(60)=3733
f(61)=1
f(62)=569
f(63)=4111
f(64)=4241
f(65)=4373
f(66)=4507
f(67)=4643
f(68)=683
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=5501
f(74)=5651
f(75)=829
f(76)=1
f(77)=6113
f(78)=6271
f(79)=1
f(80)=347
f(81)=233
f(82)=1
f(83)=1013
f(84)=1
f(85)=7433
f(86)=7607
f(87)=181
f(88)=419
f(89)=1163
f(90)=1
f(91)=1
f(92)=8693
f(93)=1
f(94)=193
f(95)=1
f(96)=1
f(97)=197
f(98)=9851
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+3x-47 could be written as f(y)= y^2-49.25 with x=y-1.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+1.5
f'(x)>2x+2

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

47, 43, 37, 29, 19, 7, 1, 23, 41, 61, 83, 107, 1, 1, 191, 223, 257, 293, 331, 53, 59, 457, 503, 1, 601, 653, 101, 109, 821, 881, 1, 1, 1, 163, 173, 1283, 1, 1433, 1511, 1, 239, 251, 97, 1931, 1, 2113, 2207, 1, 1, 1, 137, 2707, 1, 127, 433, 449, 3257, 3373, 3491, 157, 3733, 1, 569, 4111, 4241, 4373, 4507, 4643, 683, 1, 1, 1, 1, 5501, 5651, 829, 1, 6113, 6271, 1, 347, 233, 1, 1013, 1, 7433, 7607, 181, 419, 1163, 1, 1, 8693, 1, 193, 1, 1, 197, 9851, 1, 10253, 10457, 10663, 1553, 1583, 491, 311, 617, 11941, 12161, 1, 1801, 313, 353, 13291, 13523, 13757, 1999, 1, 499, 14713, 14957, 661, 15451, 2243, 1, 853, 1, 727, 16981, 401, 1, 2539, 18041, 18311, 18583, 1, 1, 1, 1, 19973, 431, 20543, 563, 21121, 1, 443, 22003, 769, 1, 619, 1009, 3359, 1, 409, 24443, 1303, 25073, 25391, 3673, 3719, 26357, 26683, 27011, 1439, 27673, 4001, 4049, 1, 29021, 29363, 487, 733, 1, 1, 1637, 379, 1097, 607, 32531, 1, 4751, 33623, 1789, 34361, 739, 35107, 1, 1, 36241, 691, 1609, 613, 37781, 1, 787, 1, 1, 1, 40151, 1, 5851, 1, 41771, 42181, 1, 1483, 1, 6263, 6323, 44683, 1049, 45533, 1, 2017, 6689, 1, 1289, 48131, 48571, 2131, 1, 7129, 7193, 1373, 479, 1783, 52163, 521, 7583, 7649, 1019, 1, 54941, 55411, 1, 1, 1, 1, 57791, 3067, 58757, 59243, 1, 1229, 557, 631, 61703, 62201, 62701, 9029, 1, 1, 1061, 1, 2267, 1123, 9539, 9613, 1, 2971, 1861, 69383, 69911, 1, 10139, 3109, 72043, 1, 73121, 3877, 10601, 1, 1, 751, 76403, 1877, 77513, 587, 1, 79193, 79757, 1709, 3517, 1, 11719, 11801, 1, 83761, 1, 1, 2311, 1, 1, 1, 2143, 1669, 1, 2423, 12893, 12979, 91457, 2141, 92671, 93281, 93893, 1, 1, 5039, 1, 1, 97607, 4271, 1, 1, 1697, 5303, 2473, 102031, 1237, 14759, 14851, 3607, 105251, 773, 839, 2281, 811, 1, 1, 109843, 1873, 1039, 1153, 16073, 1, 2777, 2161, 115211, 115891, 2711, 2393, 1, 1223, 119321, 2791, 6353, 121403, 17443, 1, 123503, 4283, 5431, 125621, 1, 18149, 18251, 128473, 1, 797, 130633, 131357, 18869, 18973, 133541, 1, 135007, 135743, 136481, 19603, 19709, 4783, 3769, 1, 2389, 1, 1, 1, 143971, 144731, 1, 6359, 1, 1, 1117, 149333, 150107, 150883, 3527, 152441, 1, 1, 8147, 155581, 156371, 157163, 827, 22679, 991, 3911, 5557, 161957, 1, 8609, 1021, 23599, 1523, 166823, 167641, 1, 169283, 1279, 24419, 171761, 1613, 2843, 174257, 1, 1, 25253, 3779, 7759, 9437, 3833, 181001, 1, 1, 1, 1, 6389, 1, 4349, 26839, 1, 1493, 1, 3137, 192233, 6659, 1, 1, 10303, 196643, 3727, 8627, 199313, 1, 28729, 202001, 1, 8861, 204707, 1619, 1, 29633, 3931, 209257, 210173, 1, 5171, 1601, 1, 214783, 1979, 216641, 217573, 1, 1, 1657, 5147, 4729, 223207, 224153, 9787, 1, 32429, 1, 228913, 1, 12149, 1201, 1, 1, 6343, 235661, 2851, 237607, 1, 4889, 4909, 10501, 1231, 4127, 244481, 245471, 1, 1, 4073, 1, 250451, 6133, 252457, 36209, 36353, 1, 256493, 13553, 1, 1, 37223, 37369, 1, 6131, 1, 5653, 2447, 1319, 1, 1129, 11777, 7349, 2551, 1, 39293, 39443, 1, 278207, 2879, 280321, 281381, 1, 1, 284573, 285641, 286711, 287783, 1, 1, 5939, 292091, 293173, 7177, 12841, 1181, 2237, 1471, 2801, 1291, 301901, 5717, 8219, 1, 43759, 1777, 10639, 1, 1627, 8429, 1, 1951, 7331, 1, 317483, 1, 6803, 1993, 1, 5477, 3907, 325421, 326563, 327707, 1, 47143, 1, 332303, 333457, 3313, 335771, 1, 48299, 339257, 1, 11779, 342761, 343933, 7043, 1, 15107, 1, 1, 4229, 352193, 2657, 1, 355763, 1, 358153, 1, 360551, 51679, 2729, 6871, 1, 8941, 15991, 369007, 52889, 1, 372661, 6337, 1, 1, 377561, 1, 1, 2339, 382493, 1, 6311, 20327, 55351, 55529, 9511, 1, 1, 6673, 394963, 1, 56783, 2203, 1, 1, 402541, 1, 1, 8293, 407633, 408911, 21589, 411473, 1, 59149, 59333, 416621, 10193, 9749, 420503, 421801, 60443, 3191, 1, 427013, 4003, 429631, 1, 61751, 2693, 1, 7151, 437533, 1, 440183, 63073, 1543, 444173, 445507, 8431, 12113, 1, 2221, 64601, 453553, 2357, 1, 2371, 458957, 3461, 1, 463031, 1, 4273, 467123, 468491, 1, 1, 11527, 3019, 1, 11087, 16487, 68501, 68699, 482281, 483671, 485063, 25603, 21211, 1889, 2417, 492053, 493457, 10529, 21577, 1, 1, 1, 26417, 9497, 2011, 506183, 507607, 72719, 72923, 511891, 27017, 514757, 516193, 1, 2557, 1, 5381, 523403, 3343, 1, 527753, 1, 1, 1, 533581, 1, 5531, 12511, 1, 1, 1, 543857, 1, 1747, 548291, 78539, 1, 14939, 24097, 9419, 29327, 13627, 1, 2767, 1, 564703, 1, 1, 29959, 81533, 81749, 573757, 1, 576791, 578311, 5419, 1567, 83269, 584411, 30839, 587473, 25609, 590543, 2063, 1, 13841, 596707, 1, 11317, 1733, 2003, 86351, 20897, 3181, 1, 2621, 10037, 12527, 1, 616961, 1, 21383, 1, 623261, 3881, 1, 33053, 629593, 631181, 2521, 27581, 1933, 91079, 639151, 13633, 1, 643957, 1, 1, 92683, 1, 22483, 653623, 655241, 1, 4951, 1, 28771, 15427, 12547, 1, 18061, 1, 1, 1907, 674813, 35603, 678103, 679751, 1, 97579, 12919, 686363, 1, 36299, 691343, 14143, 14177, 5483, 6911, 1, 701357, 703033, 100673, 100913, 1, 30859, 1, 15173, 1, 102359, 1, 719903, 1, 1, 17683, 726707, 104059, 2819, 731831, 1, 17099, 736973, 32117, 1, 106019, 17299, 12637, 12251, 1, 1, 1, 1, 3917, 18481, 759463, 761207, 5569, 3767, 1, 768203, 1, 1, 40709, 14627, 1, 1, 780523, 21143, 784061, 3989, 41453, 4903, 113023, 792941, 1, 19427, 798293, 1, 114553, 114809, 2749, 42487, 809051, 1, 9791, 116351, 4021, 13411, 1, 1, 6011, 3701, 118163, 118423, 1, 832607, 834433, 3499, 838091, 1, 6329, 1, 845431, 847271, 1, 14423, 4201, 1, 1, 8849, 2053, 1, 863921, 17669, 17707, 29983, 1, 37967, 2309, 1, 125551, 2677, 4621, 884491, 18859, 888257, 1, 1, 127703, 895813, 897707, 20921, 901501, 8443, 5623, 1, 909113, 2029, 48049, 914843, 1, 3547, 1, 922511, 1, 926357, 48857, 930211, 1, 133439, 936007, 937943, 939881, 4931, 943763, 135101, 1, 1, 8893, 953503, 955457, 957413, 2797, 1, 1, 1, 1, 11677, 20663, 1, 139301, 20789, 979061, 33829, 22861, 985007, 1, 141283, 26783, 992963, 1, 996953, 998951, 142993,

6. Sequence of the polynom (only primes)

47, 43, 37, 29, 19, 7, 23, 41, 61, 83, 107, 191, 223, 257, 293, 331, 53, 59, 457, 503, 601, 653, 101, 109, 821, 881, 163, 173, 1283, 1433, 1511, 239, 251, 97, 1931, 2113, 2207, 137, 2707, 127, 433, 449, 3257, 3373, 3491, 157, 3733, 569, 4111, 4241, 4373, 4507, 4643, 683, 5501, 5651, 829, 6113, 6271, 347, 233, 1013, 7433, 7607, 181, 419, 1163, 8693, 193, 197, 9851, 10253, 10457, 10663, 1553, 1583, 491, 311, 617, 11941, 12161, 1801, 313, 353, 13291, 13523, 13757, 1999, 499, 14713, 14957, 661, 15451, 2243, 853, 727, 16981, 401, 2539, 18041, 18311, 18583, 19973, 431, 20543, 563, 21121, 443, 22003, 769, 619, 1009, 3359, 409, 24443, 1303, 25073, 25391, 3673, 3719, 26357, 26683, 27011, 1439, 27673, 4001, 4049, 29021, 29363, 487, 733, 1637, 379, 1097, 607, 32531, 4751, 33623, 1789, 34361, 739, 35107, 36241, 691, 1609, 613, 37781, 787, 40151, 5851, 41771, 42181, 1483, 6263, 6323, 44683, 1049, 45533, 2017, 6689, 1289, 48131, 48571, 2131, 7129, 7193, 1373, 479, 1783, 52163, 521, 7583, 7649, 1019, 54941, 55411, 57791, 3067, 58757, 59243, 1229, 557, 631, 61703, 62201, 62701, 9029, 1061, 2267, 1123, 9539, 9613, 2971, 1861, 69383, 69911, 10139, 3109, 72043, 73121, 3877, 10601, 751, 76403, 1877, 77513, 587, 79193, 79757, 1709, 3517, 11719, 11801, 83761, 2311, 2143, 1669, 2423, 12893, 12979, 91457, 2141, 92671, 93281, 93893, 5039, 97607, 4271, 1697, 5303, 2473, 102031, 1237, 14759, 14851, 3607, 105251, 773, 839, 2281, 811, 109843, 1873, 1039, 1153, 16073, 2777, 2161, 115211, 115891, 2711, 2393, 1223, 119321, 2791, 6353, 121403, 17443, 123503, 4283, 5431, 125621, 18149, 18251, 128473, 797, 130633, 131357, 18869, 18973, 133541, 135007, 135743, 136481, 19603, 19709, 4783, 3769, 2389, 143971, 144731, 6359, 1117, 149333, 150107, 150883, 3527, 152441, 8147, 155581, 156371, 157163, 827, 22679, 991, 3911, 5557, 161957, 8609, 1021, 23599, 1523, 166823, 167641, 169283, 1279, 24419, 171761, 1613, 2843, 174257, 25253, 3779, 7759, 9437, 3833, 181001, 6389, 4349, 26839, 1493, 3137, 192233, 6659, 10303, 196643, 3727, 8627, 199313, 28729, 202001, 8861, 204707, 1619, 29633, 3931, 209257, 210173, 5171, 1601, 214783, 1979, 216641, 217573, 1657, 5147, 4729, 223207, 224153, 9787, 32429, 228913, 12149, 1201, 6343, 235661, 2851, 237607, 4889, 4909, 10501, 1231, 4127, 244481, 245471, 4073, 250451, 6133, 252457, 36209, 36353, 256493, 13553, 37223, 37369, 6131, 5653, 2447, 1319, 1129, 11777, 7349, 2551, 39293, 39443, 278207, 2879, 280321, 281381, 284573, 285641, 286711, 287783, 5939, 292091, 293173, 7177, 12841, 1181, 2237, 1471, 2801, 1291, 301901, 5717, 8219, 43759, 1777, 10639, 1627, 8429, 1951, 7331, 317483, 6803, 1993, 5477, 3907, 325421, 326563, 327707, 47143, 332303, 333457, 3313, 335771, 48299, 339257, 11779, 342761, 343933, 7043, 15107, 4229, 352193, 2657, 355763, 358153, 360551, 51679, 2729, 6871, 8941, 15991, 369007, 52889, 372661, 6337, 377561, 2339, 382493, 6311, 20327, 55351, 55529, 9511, 6673, 394963, 56783, 2203, 402541, 8293, 407633, 408911, 21589, 411473, 59149, 59333, 416621, 10193, 9749, 420503, 421801, 60443, 3191, 427013, 4003, 429631, 61751, 2693, 7151, 437533, 440183, 63073, 1543, 444173, 445507, 8431, 12113, 2221, 64601, 453553, 2357, 2371, 458957, 3461, 463031, 4273, 467123, 468491, 11527, 3019, 11087, 16487, 68501, 68699, 482281, 483671, 485063, 25603, 21211, 1889, 2417, 492053, 493457, 10529, 21577, 26417, 9497, 2011, 506183, 507607, 72719, 72923, 511891, 27017, 514757, 516193, 2557, 5381, 523403, 3343, 527753, 533581, 5531, 12511, 543857, 1747, 548291, 78539, 14939, 24097, 9419, 29327, 13627, 2767, 564703, 29959, 81533, 81749, 573757, 576791, 578311, 5419, 1567, 83269, 584411, 30839, 587473, 25609, 590543, 2063, 13841, 596707, 11317, 1733, 2003, 86351, 20897, 3181, 2621, 10037, 12527, 616961, 21383, 623261, 3881, 33053, 629593, 631181, 2521, 27581, 1933, 91079, 639151, 13633, 643957, 92683, 22483, 653623, 655241, 4951, 28771, 15427, 12547, 18061, 1907, 674813, 35603, 678103, 679751, 97579, 12919, 686363, 36299, 691343, 14143, 14177, 5483, 6911, 701357, 703033, 100673, 100913, 30859, 15173, 102359, 719903, 17683, 726707, 104059, 2819, 731831, 17099, 736973, 32117, 106019, 17299, 12637, 12251, 3917, 18481, 759463, 761207, 5569, 3767, 768203, 40709, 14627, 780523, 21143, 784061, 3989, 41453, 4903, 113023, 792941, 19427, 798293, 114553, 114809, 2749, 42487, 809051, 9791, 116351, 4021, 13411, 6011, 3701, 118163, 118423, 832607, 834433, 3499, 838091, 6329, 845431, 847271, 14423, 4201, 8849, 2053, 863921, 17669, 17707, 29983, 37967, 2309, 125551, 2677, 4621, 884491, 18859, 888257, 127703, 895813, 897707, 20921, 901501, 8443, 5623, 909113, 2029, 48049, 914843, 3547, 922511, 926357, 48857, 930211, 133439, 936007, 937943, 939881, 4931, 943763, 135101, 8893, 953503, 955457, 957413, 2797, 11677, 20663, 139301, 20789, 979061, 33829, 22861, 985007, 141283, 26783, 992963, 996953, 998951, 142993,

7. Distribution of the primes

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

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)
1109900.9000000.9000000.0000000.0000000.0000000.000000
21007147240.7100000.4700000.2400007.8888895.222222inf
31.0007272874400.7270000.2870000.44000010.2394366.10638318.333334
410.0007.2692.0165.2530.7269000.2016000.5253009.9986257.02439011.938637
5100.00072.02015.70656.3140.7202000.1570600.5631409.9078277.79067510.720350
61.000.000715.399126.962588.4370.7153990.1269620.5884379.9333388.08366210.449213
710.000.0007.120.3861.074.0236.046.3630.7120390.1074020.6046369.9530288.45940510.275293
8100.000.00070.952.4329.302.97061.649.4620.7095240.0930300.6164959.9646898.66179810.196123
91.000.000.000707.548.10282.090.287625.457.8150.7075480.0820900.6254589.9721478.82409510.145389
1010.000.000.0007.060.032.708734.610.0586.325.422.6500.7060030.0734610.6325429.9781678.94880610.113269


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
245501.2500001.2500000.0000001.6666671.666667-nan
387700.8750000.8750000.0000001.4000001.400000-nan
416131300.8125000.8125000.0000001.8571431.857143-nan
532252140.7812500.6562500.1250001.9230771.615385inf
6644934150.7656250.5312500.2343751.9600001.6190483.750000
71289557380.7421880.4453120.2968751.9387761.6764712.533333
825618996930.7382810.3750000.3632811.9894741.6842112.447368
95123751622130.7324220.3164060.4160161.9841271.6875002.290323
101.0247462944520.7285160.2871090.4414061.9893331.8148152.122066
112.0481.4775309470.7211910.2587890.4624021.9798931.8027212.095133
124.0962.9779432.0340.7268070.2302250.4965822.0155721.7792452.147835
138.1925.9421.6974.2450.7253420.2071530.5181881.9959691.7995762.087021
1416.38411.8883.1268.7620.7255860.1907960.5347902.0006731.8420742.064075
1532.76823.7285.77717.9510.7241210.1763000.5478211.9959621.8480492.048733
1665.53647.22310.75336.4700.7205660.1640780.5564881.9901801.8613472.031642
17131.07294.25520.02774.2280.7191090.1527940.5663151.9959551.8624572.035317
18262.144188.21837.379150.8390.7179950.1425900.5754051.9969021.8664302.032104
19524.288375.65970.163305.4960.7165130.1338250.5826871.9958721.8770702.025312
201.048.576750.041132.607617.4340.7152950.1264640.5888311.9966011.8899852.021087
212.097.1521.497.777251.3711.246.4060.7141960.1198630.5943331.9969271.8956092.018687
224.194.3042.991.134478.2682.512.8660.7131420.1140280.5991141.9970491.9026382.016089
238.388.6085.974.475911.6195.062.8560.7122130.1086730.6035391.9973951.9060842.014774
2416.777.21611.936.0341.741.29110.194.7430.7114430.1037890.6076541.9978381.9101082.013635
2533.554.43223.845.8483.332.94520.512.9030.7106620.0993300.6113321.9978031.9140652.012106
2667.108.86447.641.4926.391.74241.249.7500.7099140.0952440.6146691.9978951.9177462.010917
27134.217.72895.192.82112.277.60282.915.2190.7092420.0914750.6177661.9981081.9208542.010078
28268.435.456190.214.14123.623.169166.590.9720.7086030.0880030.6206001.9981981.9240862.009172
29536.870.912380.120.47945.513.184334.607.2950.7080300.0847750.6232551.9983821.9266332.008556
301.073.741.824759.664.59387.823.830671.840.7630.7074930.0817920.6257001.9984841.9296352.007849
312.147.483.6481.518.262.637169.662.5491.348.600.0880.7069960.0790050.6279911.9985961.9318512.007321
324.294.967.2963.034.531.136328.162.5752.706.368.5610.7065320.0764060.6301261.9986871.9342072.006799
338.589.934.5926.065.320.377635.426.7435.429.893.6340.7060960.0739730.6321231.9987671.9363172.006339
3417.179.869.18412.123.629.4131.231.624.77810.892.004.6350.7056880.0716900.6339981.9988441.9382642.005933
3534.359.738.36824.234.105.5402.389.528.94221.844.576.5980.7053050.0695440.6357611.9989151.9401432.005561
3668.719.476.73648.443.552.6934.640.128.82643.803.423.8670.7049460.0675230.6374241.9989831.9418592.005231


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
245320221
387341222
41613582434
532218135565
6643413219988
712857203714161611
825696336321302619
95121625310945473832
101.0242949719777757270
112.048530180350132136128134
124.096943322621227237240239
138.1921.6975731.124408420435434
1416.3843.1261.0512.075758792784792
1532.7685.7771.9663.8111.4091.4601.4531.455
1665.53610.7533.6517.1022.7012.6662.7122.674
17131.07220.0276.72613.3015.0305.0284.9904.979
18262.14437.37912.55424.8259.2839.3879.4119.298
19524.28870.16323.62646.53717.43817.66017.56017.505
201.048.576132.60744.37588.23232.90833.33633.16333.200
212.097.152251.37183.829167.54262.66463.01062.84262.855
224.194.304478.268159.603318.665119.604119.783119.318119.563
238.388.608911.619304.292607.327227.877228.221227.513228.008
2416.777.2161.741.291580.9601.160.331435.270435.694435.216435.111
2533.554.4323.332.9451.111.2142.221.731833.230833.239833.440833.036
2667.108.8646.391.7422.130.4464.261.2961.597.7911.598.5731.597.8331.597.545
27134.217.72812.277.6024.093.4718.184.1313.070.1973.069.0503.070.1283.068.227
28268.435.45623.623.1697.874.43615.748.7335.905.7705.904.7675.907.6885.904.944
29536.870.91245.513.18415.172.77430.340.41011.379.43211.376.10611.379.68611.377.960
301.073.741.82487.823.83029.272.63358.551.19721.954.49921.956.61121.955.17821.957.542
312.147.483.648169.662.54956.553.677113.108.87242.410.31242.419.72542.415.13542.417.377
324.294.967.296328.162.575109.388.122218.774.45382.033.53482.046.76582.037.61382.044.663
338.589.934.592635.426.743211.809.313423.617.430158.843.060158.868.339158.854.104158.861.240
3417.179.869.1841.231.624.778410.546.408821.078.370307.890.348307.925.113307.886.089307.923.228
3534.359.738.3682.389.528.942796.518.4971.593.010.445597.368.470597.393.690597.367.485597.399.297
3668.719.476.7364.640.128.8261.546.716.3943.093.412.4321.160.029.0521.160.036.4901.160.024.4901.160.038.794


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
4160000000
5324130130
66415695352
71283816221210106
825693425129261919
95122139511857535251
101.024452205247106115116115
112.048947427520228242236241
124.0962.0349571.077524515505490
138.1924.2452.0452.2001.0561.0721.0941.023
1416.3848.7624.2304.5322.1522.1872.2272.196
1532.76817.9518.8149.1374.4574.4724.5124.510
1665.53636.47017.90618.5649.0299.0449.2949.103
17131.07274.22836.31137.91718.52918.47118.65918.569
18262.144150.83973.87476.96537.79337.63237.82037.594
19524.288305.496149.907155.58976.26376.47376.51776.243
201.048.576617.434303.623313.811154.044154.392154.589154.409
212.097.1521.246.406613.352633.054311.370311.797311.303311.936
224.194.3042.512.8661.238.0071.274.859628.172627.897628.624628.173
238.388.6085.062.8562.496.7812.566.0751.265.6031.265.4351.265.4901.266.328
2416.777.21610.194.7435.030.3095.164.4342.547.2842.549.4712.548.8932.549.095
2533.554.43220.512.90310.127.24710.385.6565.129.9475.127.3645.126.9355.128.657
2667.108.86441.249.75020.377.75420.871.99610.316.26610.313.11010.310.21310.310.161
27134.217.72882.915.21940.977.88841.937.33120.734.09720.728.76120.726.49420.725.867
28268.435.456166.590.97282.381.03884.209.93441.655.20741.646.66241.643.37341.645.730
29536.870.912334.607.295165.546.882169.060.41383.665.26383.652.66783.649.48483.639.881
301.073.741.824671.840.763332.537.016339.303.747167.977.891167.951.034167.969.632167.942.206
312.147.483.6481.348.600.088667.752.518680.847.570337.179.724337.124.357337.158.834337.137.173
324.294.967.2962.706.368.5611.340.489.2131.365.879.348676.612.607676.556.454676.585.566676.613.934
338.589.934.5925.429.893.6342.690.334.7482.739.558.8861.357.494.4031.357.441.9581.357.455.3661.357.501.907
3417.179.869.18410.892.004.6355.398.240.5675.493.764.0682.723.023.4882.722.958.6922.723.002.3022.723.020.153
3534.359.738.36821.844.576.59810.829.601.78611.014.974.8125.461.117.6565.461.118.0805.461.171.4365.461.169.426
3668.719.476.73643.803.423.86721.721.797.47122.081.626.39610.950.831.14610.950.829.83610.950.843.76110.950.919.124


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 43, 37, 29, 19, 7, 1, 23, 41, 61, 83, 107, 1, 1, 191, 223, 257, 293, 331, 53,
Found in Database : 47, 43, 37, 29, 19, 7, 23, 41, 61, 83, 107, 191, 223, 257, 293, 331, 53, 59, 457, 503, 601, 653, 101, 109, 821, 881, 163, 173, 1283, 1433, 1511,
Found in Database : 7, 19, 23, 29, 37, 41, 43, 47, 53, 59, 61, 83, 97, 101, 107, 109, 127, 137,