Inhaltsverzeichnis

Development of
Algorithmic Constructions

07:40:39
Deutsch
20.Apr 2024

Polynom = x^2+9x-17

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) = 17 = 17
f(1) = 7 = 7
f(2) = 5 = 5
f(3) = 19 = 19
f(4) = 35 = 5*7
f(5) = 53 = 53
f(6) = 73 = 73
f(7) = 95 = 5*19
f(8) = 119 = 7*17
f(9) = 145 = 5*29
f(10) = 173 = 173
f(11) = 203 = 7*29
f(12) = 235 = 5*47
f(13) = 269 = 269
f(14) = 305 = 5*61
f(15) = 343 = 7*7*7
f(16) = 383 = 383
f(17) = 425 = 5*5*17
f(18) = 469 = 7*67
f(19) = 515 = 5*103
f(20) = 563 = 563
f(21) = 613 = 613
f(22) = 665 = 5*7*19
f(23) = 719 = 719
f(24) = 775 = 5*5*31
f(25) = 833 = 7*7*17
f(26) = 893 = 19*47
f(27) = 955 = 5*191
f(28) = 1019 = 1019
f(29) = 1085 = 5*7*31
f(30) = 1153 = 1153
f(31) = 1223 = 1223
f(32) = 1295 = 5*7*37
f(33) = 1369 = 37*37
f(34) = 1445 = 5*17*17
f(35) = 1523 = 1523
f(36) = 1603 = 7*229
f(37) = 1685 = 5*337
f(38) = 1769 = 29*61
f(39) = 1855 = 5*7*53
f(40) = 1943 = 29*67
f(41) = 2033 = 19*107
f(42) = 2125 = 5*5*5*17
f(43) = 2219 = 7*317
f(44) = 2315 = 5*463
f(45) = 2413 = 19*127
f(46) = 2513 = 7*359
f(47) = 2615 = 5*523
f(48) = 2719 = 2719
f(49) = 2825 = 5*5*113
f(50) = 2933 = 7*419
f(51) = 3043 = 17*179
f(52) = 3155 = 5*631
f(53) = 3269 = 7*467
f(54) = 3385 = 5*677
f(55) = 3503 = 31*113
f(56) = 3623 = 3623
f(57) = 3745 = 5*7*107
f(58) = 3869 = 53*73
f(59) = 3995 = 5*17*47
f(60) = 4123 = 7*19*31
f(61) = 4253 = 4253
f(62) = 4385 = 5*877
f(63) = 4519 = 4519
f(64) = 4655 = 5*7*7*19
f(65) = 4793 = 4793
f(66) = 4933 = 4933
f(67) = 5075 = 5*5*7*29
f(68) = 5219 = 17*307
f(69) = 5365 = 5*29*37
f(70) = 5513 = 37*149
f(71) = 5663 = 7*809
f(72) = 5815 = 5*1163
f(73) = 5969 = 47*127
f(74) = 6125 = 5*5*5*7*7
f(75) = 6283 = 61*103
f(76) = 6443 = 17*379
f(77) = 6605 = 5*1321
f(78) = 6769 = 7*967
f(79) = 6935 = 5*19*73
f(80) = 7103 = 7103
f(81) = 7273 = 7*1039
f(82) = 7445 = 5*1489
f(83) = 7619 = 19*401
f(84) = 7795 = 5*1559
f(85) = 7973 = 7*17*67
f(86) = 8153 = 31*263
f(87) = 8335 = 5*1667
f(88) = 8519 = 7*1217
f(89) = 8705 = 5*1741
f(90) = 8893 = 8893
f(91) = 9083 = 31*293
f(92) = 9275 = 5*5*7*53
f(93) = 9469 = 17*557
f(94) = 9665 = 5*1933
f(95) = 9863 = 7*1409
f(96) = 10063 = 29*347
f(97) = 10265 = 5*2053
f(98) = 10469 = 19*19*29
f(99) = 10675 = 5*5*7*61
f(100) = 10883 = 10883

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+9x-17

f(0)=17
f(1)=7
f(2)=5
f(3)=19
f(4)=1
f(5)=53
f(6)=73
f(7)=1
f(8)=1
f(9)=29
f(10)=173
f(11)=1
f(12)=47
f(13)=269
f(14)=61
f(15)=1
f(16)=383
f(17)=1
f(18)=67
f(19)=103
f(20)=563
f(21)=613
f(22)=1
f(23)=719
f(24)=31
f(25)=1
f(26)=1
f(27)=191
f(28)=1019
f(29)=1
f(30)=1153
f(31)=1223
f(32)=37
f(33)=1
f(34)=1
f(35)=1523
f(36)=229
f(37)=337
f(38)=1
f(39)=1
f(40)=1
f(41)=107
f(42)=1
f(43)=317
f(44)=463
f(45)=127
f(46)=359
f(47)=523
f(48)=2719
f(49)=113
f(50)=419
f(51)=179
f(52)=631
f(53)=467
f(54)=677
f(55)=1
f(56)=3623
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=4253
f(62)=877
f(63)=4519
f(64)=1
f(65)=4793
f(66)=4933
f(67)=1
f(68)=307
f(69)=1
f(70)=149
f(71)=809
f(72)=1163
f(73)=1
f(74)=1
f(75)=1
f(76)=379
f(77)=1321
f(78)=967
f(79)=1
f(80)=7103
f(81)=1039
f(82)=1489
f(83)=401
f(84)=1559
f(85)=1
f(86)=263
f(87)=1667
f(88)=1217
f(89)=1741
f(90)=8893
f(91)=293
f(92)=1
f(93)=557
f(94)=1933
f(95)=1409
f(96)=347
f(97)=2053
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+9x-17 could be written as f(y)= y^2-37.25 with x=y-4.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+4.5
f'(x)>2x+8

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

17, 7, 5, 19, 1, 53, 73, 1, 1, 29, 173, 1, 47, 269, 61, 1, 383, 1, 67, 103, 563, 613, 1, 719, 31, 1, 1, 191, 1019, 1, 1153, 1223, 37, 1, 1, 1523, 229, 337, 1, 1, 1, 107, 1, 317, 463, 127, 359, 523, 2719, 113, 419, 179, 631, 467, 677, 1, 3623, 1, 1, 1, 1, 4253, 877, 4519, 1, 4793, 4933, 1, 307, 1, 149, 809, 1163, 1, 1, 1, 379, 1321, 967, 1, 7103, 1039, 1489, 401, 1559, 1, 263, 1667, 1217, 1741, 8893, 293, 1, 557, 1933, 1409, 347, 2053, 1, 1, 10883, 11093, 1, 11519, 2347, 11953, 1, 1, 12619, 367, 769, 251, 2707, 281, 2801, 14243, 2069, 1, 14969, 1, 1, 827, 1, 331, 659, 577, 16993, 1, 17519, 3557, 2579, 1, 3719, 18869, 547, 19423, 1, 571, 20269, 4111, 1097, 3019, 857, 587, 1, 421, 22613, 4583, 1, 941, 23833, 3449, 1, 1, 1, 1, 887, 5209, 3767, 1, 443, 1609, 1, 28019, 1, 4099, 29033, 1, 1, 859, 1789, 30763, 1, 31469, 1, 32183, 4649, 6581, 1, 1, 919, 929, 6949, 1, 1, 1237, 5179, 431, 37019, 7481, 5399, 38183, 1543, 1, 7873, 2339, 40163, 1, 773, 1, 1, 42193, 8521, 43019, 1, 43853, 44273, 1277, 45119, 9109, 1483, 947, 1, 47269, 1, 1553, 2557, 1, 1, 1, 50363, 1, 10253, 51719, 2087, 1, 53093, 10711, 7717, 641, 1, 2917, 1597, 56369, 11369, 1, 57803, 11657, 3457, 1693, 59743, 1, 1, 2111, 12343, 62213, 1, 1, 63719, 1, 3407, 1231, 13151, 9467, 1, 1, 9689, 13669, 1129, 13879, 1427, 1499, 14197, 601, 14411, 1, 73133, 1, 74219, 787, 1, 709, 1, 4051, 1, 691, 78643, 1, 79769, 16067, 4759, 1, 1, 82619, 2377, 83773, 1259, 16987, 643, 1013, 86693, 1, 1, 88469, 1, 12809, 90263, 1069, 1, 1, 92683, 3217, 2683, 3049, 1, 13679, 5669, 1021, 1, 1, 98873, 5237, 2861, 100769, 1193, 102043, 14669, 4133, 103969, 1, 105263, 105913, 21313, 1, 863, 108533, 821, 1, 1, 1, 1, 6619, 22639, 16267, 739, 115223, 115903, 3331, 117269, 761, 997, 2539, 4801, 1979, 3469, 6427, 1, 3529, 7307, 1, 1721, 18049, 25411, 1907, 3671, 2749, 751, 1, 1, 911, 1, 19079, 1, 135019, 1429, 1, 3709, 5519, 1, 27893, 4523, 1931, 4049, 142469, 1, 1, 2731, 29101, 1367, 4201, 2423, 148573, 1, 7901, 1, 151673, 1, 1613, 1, 4423, 155593, 9199, 6287, 22567, 1, 159563, 1, 32233, 161969, 1, 23369, 5303, 1, 1, 1, 1, 8867, 1, 10007, 1, 1, 172603, 34687, 1, 5003, 6067, 10399, 1, 178469, 35863, 2689, 1361, 36373, 2503, 1049, 1, 1459, 1201, 26717, 1, 188753, 1, 1229, 11257, 38449, 1, 194003, 38977, 27967, 1063, 1, 3253, 1, 1, 1, 28859, 6997, 40763, 204719, 1, 12149, 207443, 5953, 209269, 1, 1, 4327, 42589, 6899, 1, 215723, 216653, 43517, 1, 43891, 3613, 4517, 1, 223219, 1, 32159, 226063, 45403, 1123, 9157, 7927, 1, 1, 12251, 46747, 33529, 235673, 1, 237619, 1, 2239, 1, 1, 242519, 1571, 244493, 35069, 9859, 14557, 1, 249463, 1, 2647, 36067, 10139, 1471, 1, 1, 257519, 1783, 5297, 260573, 1, 37517, 1, 15569, 265703, 7621, 7237, 1453, 5507, 1, 1, 16057, 7829, 1, 276113, 7919, 278219, 11171, 9043, 1, 3323, 283519, 1, 1, 9887, 57559, 1423, 1, 1, 41729, 1, 294269, 3109, 42349, 297533, 2389, 1, 3539, 301913, 303013, 8689, 305219, 12253, 1187, 1, 3643, 2447, 1, 313003, 10133, 9007, 16651, 63499, 10987, 2687, 2213, 5279, 1319, 324293, 1, 13063, 46817, 1, 1, 47309, 66463, 17551, 2677, 47969, 1, 3559, 2851, 68087, 341603, 2699, 1, 1, 69259, 49639, 20509, 1, 1, 1, 1, 12227, 1, 356969, 71633, 21139, 2711, 72353, 362969, 2081, 1913, 366593, 73561, 1, 74047, 371453, 53239, 74779, 375119, 75269, 53939, 19937, 1, 1, 1, 1, 1, 2207, 1, 77743, 1, 5839, 1481, 8377, 1, 10709, 397493, 11393, 1, 4721, 21187, 57689, 81019, 1619, 1, 408923, 410203, 1, 58967, 82811, 415343, 1, 1, 6257, 2713, 60259, 24889, 2927, 1, 1, 1, 429643, 1759, 22751, 5101, 62129, 2437, 87509, 438869, 12577, 441523, 11969, 1, 1, 89371, 448193, 1, 3607, 23801, 12959, 9679, 26839, 4817, 1, 18413, 1, 2281, 1, 16061, 93427, 1, 1, 1, 1, 2017, 7793, 476753, 1, 1, 96181, 68899, 25457, 19403, 4723, 1, 489263, 490663, 1, 13337, 1, 496283, 1451, 1, 500519, 14341, 1, 1, 3491, 1, 1669, 1, 1, 102667, 514769, 6073, 1, 519083, 1, 74567, 104683, 524863, 1873, 1, 2311, 21227, 4001, 533593, 1, 1, 1, 1, 1, 15497, 4813, 3761, 14779, 1, 3547, 551269, 1, 5381, 1, 1, 79817, 5897, 561713, 1, 2131, 1753, 22709, 11617, 570743, 114451, 81967, 115057, 8609, 34019, 16567, 581369, 116579, 11927, 585953, 117497, 1, 1, 1, 593633, 1, 19249, 119653, 9833, 85909, 3259, 1, 3463, 607583, 609143, 1823, 1861, 1, 615403, 1663, 1, 1, 124339, 1, 32887, 125287, 1, 125921, 1, 3313, 1, 635969, 4397, 91309, 6221, 128473, 643969, 1, 12211, 34147, 18583, 652019, 4217, 34487, 1, 1, 660119, 1, 17929, 14149, 133327, 95467, 133981, 4507, 5657, 26993, 676469, 135623, 1, 23497, 2039, 3373, 1, 14639, 689693, 19753, 693019, 138937, 3209, 11443, 139939, 41257, 1, 1, 706403, 20231, 709769, 7489, 6311, 6007, 28661, 1, 1, 721613, 1, 3919, 14831, 29137, 1, 104549, 5059, 13873, 147397, 105529, 740423, 148429, 1, 149119, 747323, 1, 1, 752519, 1, 107999, 24443, 1787, 12479, 21799, 1, 3347, 1, 1, 30869, 1, 110749, 8179, 778769, 1, 1, 1, 2153, 3041, 1, 1973, 113279, 2999, 1901, 2383, 114299, 801883, 1, 115067, 161453, 809063, 42677, 1, 814469, 1, 6151, 2837, 164341, 823519, 23581, 17599, 15641, 3391, 28711, 9817, 28837, 1, 167987, 7867, 24103, 44497, 847283, 6793, 7151, 1, 23099, 3307, 171673, 27749, 34483, 123419, 50929, 173531, 4007, 2857, 1, 1, 25057, 878869, 1, 7417, 2549, 6113, 46751, 1, 16831, 893933, 5119, 52807, 179923, 901513, 1, 181063, 1, 1, 911033, 1, 1, 1, 5927, 12611, 1, 1, 25037, 1, 7817, 932153, 1, 133717, 1, 2789, 1, 5393, 32611, 11149, 1, 1, 10037, 955469, 5471, 959383, 2663, 1, 14407, 193447, 1, 138739, 1, 2657, 27917, 31583, 57709, 1, 140717, 1, 1, 7451, 39719, 18773, 1, 1, 1, 6917, 143567, 1,

6. Sequence of the polynom (only primes)

17, 7, 5, 19, 53, 73, 29, 173, 47, 269, 61, 383, 67, 103, 563, 613, 719, 31, 191, 1019, 1153, 1223, 37, 1523, 229, 337, 107, 317, 463, 127, 359, 523, 2719, 113, 419, 179, 631, 467, 677, 3623, 4253, 877, 4519, 4793, 4933, 307, 149, 809, 1163, 379, 1321, 967, 7103, 1039, 1489, 401, 1559, 263, 1667, 1217, 1741, 8893, 293, 557, 1933, 1409, 347, 2053, 10883, 11093, 11519, 2347, 11953, 12619, 367, 769, 251, 2707, 281, 2801, 14243, 2069, 14969, 827, 331, 659, 577, 16993, 17519, 3557, 2579, 3719, 18869, 547, 19423, 571, 20269, 4111, 1097, 3019, 857, 587, 421, 22613, 4583, 941, 23833, 3449, 887, 5209, 3767, 443, 1609, 28019, 4099, 29033, 859, 1789, 30763, 31469, 32183, 4649, 6581, 919, 929, 6949, 1237, 5179, 431, 37019, 7481, 5399, 38183, 1543, 7873, 2339, 40163, 773, 42193, 8521, 43019, 43853, 44273, 1277, 45119, 9109, 1483, 947, 47269, 1553, 2557, 50363, 10253, 51719, 2087, 53093, 10711, 7717, 641, 2917, 1597, 56369, 11369, 57803, 11657, 3457, 1693, 59743, 2111, 12343, 62213, 63719, 3407, 1231, 13151, 9467, 9689, 13669, 1129, 13879, 1427, 1499, 14197, 601, 14411, 73133, 74219, 787, 709, 4051, 691, 78643, 79769, 16067, 4759, 82619, 2377, 83773, 1259, 16987, 643, 1013, 86693, 88469, 12809, 90263, 1069, 92683, 3217, 2683, 3049, 13679, 5669, 1021, 98873, 5237, 2861, 100769, 1193, 102043, 14669, 4133, 103969, 105263, 105913, 21313, 863, 108533, 821, 6619, 22639, 16267, 739, 115223, 115903, 3331, 117269, 761, 997, 2539, 4801, 1979, 3469, 6427, 3529, 7307, 1721, 18049, 25411, 1907, 3671, 2749, 751, 911, 19079, 135019, 1429, 3709, 5519, 27893, 4523, 1931, 4049, 142469, 2731, 29101, 1367, 4201, 2423, 148573, 7901, 151673, 1613, 4423, 155593, 9199, 6287, 22567, 159563, 32233, 161969, 23369, 5303, 8867, 10007, 172603, 34687, 5003, 6067, 10399, 178469, 35863, 2689, 1361, 36373, 2503, 1049, 1459, 1201, 26717, 188753, 1229, 11257, 38449, 194003, 38977, 27967, 1063, 3253, 28859, 6997, 40763, 204719, 12149, 207443, 5953, 209269, 4327, 42589, 6899, 215723, 216653, 43517, 43891, 3613, 4517, 223219, 32159, 226063, 45403, 1123, 9157, 7927, 12251, 46747, 33529, 235673, 237619, 2239, 242519, 1571, 244493, 35069, 9859, 14557, 249463, 2647, 36067, 10139, 1471, 257519, 1783, 5297, 260573, 37517, 15569, 265703, 7621, 7237, 1453, 5507, 16057, 7829, 276113, 7919, 278219, 11171, 9043, 3323, 283519, 9887, 57559, 1423, 41729, 294269, 3109, 42349, 297533, 2389, 3539, 301913, 303013, 8689, 305219, 12253, 1187, 3643, 2447, 313003, 10133, 9007, 16651, 63499, 10987, 2687, 2213, 5279, 1319, 324293, 13063, 46817, 47309, 66463, 17551, 2677, 47969, 3559, 2851, 68087, 341603, 2699, 69259, 49639, 20509, 12227, 356969, 71633, 21139, 2711, 72353, 362969, 2081, 1913, 366593, 73561, 74047, 371453, 53239, 74779, 375119, 75269, 53939, 19937, 2207, 77743, 5839, 1481, 8377, 10709, 397493, 11393, 4721, 21187, 57689, 81019, 1619, 408923, 410203, 58967, 82811, 415343, 6257, 2713, 60259, 24889, 2927, 429643, 1759, 22751, 5101, 62129, 2437, 87509, 438869, 12577, 441523, 11969, 89371, 448193, 3607, 23801, 12959, 9679, 26839, 4817, 18413, 2281, 16061, 93427, 2017, 7793, 476753, 96181, 68899, 25457, 19403, 4723, 489263, 490663, 13337, 496283, 1451, 500519, 14341, 3491, 1669, 102667, 514769, 6073, 519083, 74567, 104683, 524863, 1873, 2311, 21227, 4001, 533593, 15497, 4813, 3761, 14779, 3547, 551269, 5381, 79817, 5897, 561713, 2131, 1753, 22709, 11617, 570743, 114451, 81967, 115057, 8609, 34019, 16567, 581369, 116579, 11927, 585953, 117497, 593633, 19249, 119653, 9833, 85909, 3259, 3463, 607583, 609143, 1823, 1861, 615403, 1663, 124339, 32887, 125287, 125921, 3313, 635969, 4397, 91309, 6221, 128473, 643969, 12211, 34147, 18583, 652019, 4217, 34487, 660119, 17929, 14149, 133327, 95467, 133981, 4507, 5657, 26993, 676469, 135623, 23497, 2039, 3373, 14639, 689693, 19753, 693019, 138937, 3209, 11443, 139939, 41257, 706403, 20231, 709769, 7489, 6311, 6007, 28661, 721613, 3919, 14831, 29137, 104549, 5059, 13873, 147397, 105529, 740423, 148429, 149119, 747323, 752519, 107999, 24443, 1787, 12479, 21799, 3347, 30869, 110749, 8179, 778769, 2153, 3041, 1973, 113279, 2999, 1901, 2383, 114299, 801883, 115067, 161453, 809063, 42677, 814469, 6151, 2837, 164341, 823519, 23581, 17599, 15641, 3391, 28711, 9817, 28837, 167987, 7867, 24103, 44497, 847283, 6793, 7151, 23099, 3307, 171673, 27749, 34483, 123419, 50929, 173531, 4007, 2857, 25057, 878869, 7417, 2549, 6113, 46751, 16831, 893933, 5119, 52807, 179923, 901513, 181063, 911033, 5927, 12611, 25037, 7817, 932153, 133717, 2789, 5393, 32611, 11149, 10037, 955469, 5471, 959383, 2663, 14407, 193447, 138739, 2657, 27917, 31583, 57709, 140717, 7451, 39719, 18773, 6917, 143567,

7. Distribution of the primes

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

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)
1108710.8000000.7000000.1000000.0000000.0000000.000000
21006726410.6700000.2600000.4100008.3750003.71428641.000000
31.0007011765250.7010000.1760000.52500010.4626876.76923112.804878
410.0006.9961.2815.7150.6996000.1281000.5715009.9800287.27840910.885715
5100.00069.8559.82260.0330.6985500.0982200.6003309.9849917.66744710.504462
61.000.000697.07980.698616.3810.6970790.0806980.6163819.9789428.21604510.267369
710.000.0006.964.398680.2786.284.1200.6964400.0680280.6284129.9908308.42992410.195188
8100.000.00069.587.4625.890.52963.696.9330.6958750.0589050.6369699.9918858.65900210.136173
91.000.000.000695.435.58751.956.605643.478.9820.6954360.0519570.6434799.9936908.82036310.102198
1010.000.000.0006.951.092.462464.975.3546.486.117.1080.6951090.0464980.6486129.9953078.94930310.079765


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
386600.7500000.7500000.0000001.5000001.500000-nan
41612930.7500000.5625000.1875002.0000001.500000inf
532211560.6562500.4687500.1875001.7500001.6666672.000000
6644120210.6406250.3125000.3281251.9523811.3333333.500000
71288734530.6796880.2656250.4140622.1219511.7000002.523809
8256175611140.6835940.2382810.4453122.0114941.7941182.150943
95123561072490.6953120.2089840.4863282.0342861.7540982.184211
101.0247171815360.7001950.1767580.5234382.0140451.6915892.152611
112.0481.4373221.1150.7016600.1572270.5444342.0041841.7790062.080224
124.0962.8675852.2820.6999510.1428220.5571291.9951291.8167702.046637
138.1925.7171.0834.6340.6978760.1322020.5656741.9940701.8512822.030675
1416.38411.4531.9479.5060.6990360.1188350.5802002.0033231.7977842.051359
1532.76822.8973.60819.2890.6987610.1101070.5886541.9992141.8531072.029140
1665.53645.7706.71939.0510.6983950.1025240.5958711.9989521.8622512.024522
17131.07291.49412.54978.9450.6980440.0957410.6023031.9989951.8676892.021587
18262.144182.88923.718159.1710.6976660.0904770.6071891.9989181.8900312.016227
19524.288365.77144.451321.3200.6976530.0847840.6128691.9999621.8741462.018709
201.048.576730.97984.356646.6230.6971160.0804480.6166681.9984611.8977302.012396
212.097.1521.461.557159.6811.301.8760.6969250.0761420.6207831.9994511.8929422.013346
224.194.3042.921.849303.3892.618.4600.6966230.0723340.6242901.9991351.8999692.011297
238.388.6085.842.743577.4825.265.2610.6965090.0688410.6276681.9996731.9034372.010823
2416.777.21611.681.8161.103.04510.578.7710.6962900.0657470.6305441.9993721.9100942.009164
2533.554.43223.359.0052.109.85621.249.1490.6961530.0628790.6332741.9996041.9127562.008659
2667.108.86446.706.5904.045.21642.661.3740.6959820.0602780.6357041.9995111.9172952.007675
27134.217.72893.387.7407.773.64485.614.0960.6957930.0579180.6378751.9994551.9216882.006829
28268.435.456186.742.61614.951.749171.790.8670.6956700.0557000.6399711.9996481.9233902.006572
29536.870.912373.416.90328.808.218344.608.6850.6955430.0536590.6418841.9996341.9267462.005978
301.073.741.824746.704.39355.584.617691.119.7760.6954230.0517670.6436551.9996531.9294712.005521
312.147.483.6481.493.187.103107.391.2271.385.795.8760.6953190.0500080.6453111.9997031.9320312.005146
324.294.967.2962.985.943.588207.709.9722.778.233.6160.6952190.0483610.6468581.9997121.9341432.004793
338.589.934.5925.971.110.250402.206.5345.568.903.7160.6951290.0468230.6483061.9997401.9363852.004476
3417.179.869.18411.940.785.821779.589.84211.161.195.9790.6950450.0453780.6496671.9997601.9382822.004200
3534.359.738.36823.878.920.2701.512.520.61522.366.399.6550.6949680.0440200.6509481.9997781.9401492.003943
3668.719.476.73647.752.942.9782.937.082.48644.815.860.4920.6948970.0427400.6521571.9997951.9418462.003714


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
123121011
244221111
386332121
4169362142
532155103354
664207133467
712834122287910
825661194213141717
9512107357223273027
101.0241815412745444646
112.04832210022283848174
124.096585192393150153143139
138.1921.083361722264286275258
1416.3841.9476551.292476507497467
1532.7683.6081.2252.383892932908876
1665.5366.7192.2944.4251.6461.7151.6881.670
17131.07212.5494.2198.3303.1003.1693.1353.145
18262.14423.7187.90915.8095.9015.9795.9135.925
19524.28844.45114.76129.69011.07811.15211.07511.146
201.048.57684.35628.11256.24421.10521.06521.04221.144
212.097.152159.68153.260106.42139.90039.96839.86439.949
224.194.304303.389100.953202.43675.80375.89875.75675.932
238.388.608577.482192.389385.093144.329144.372144.363144.418
2416.777.2161.103.045367.740735.305275.456275.703275.790276.096
2533.554.4322.109.856703.0531.406.803527.025527.830527.478527.523
2667.108.8644.045.2161.347.8202.697.3961.010.9811.012.0581.011.3931.010.784
27134.217.7287.773.6442.592.1725.181.4721.942.2631.944.6121.944.1861.942.583
28268.435.45614.951.7494.984.9649.966.7853.735.9623.739.4033.739.1943.737.190
29536.870.91228.808.2189.602.29719.205.9217.200.4557.203.7957.202.2007.201.768
301.073.741.82455.584.61718.525.90337.058.71413.895.40913.898.71913.893.90013.896.589
312.147.483.648107.391.22735.793.61471.597.61326.848.17826.849.25626.844.67626.849.117
324.294.967.296207.709.97269.237.071138.472.90151.931.17851.923.41551.924.34051.931.039
338.589.934.592402.206.534134.068.007268.138.527100.551.193100.553.365100.551.087100.550.889
3417.179.869.184779.589.842259.865.861519.723.981194.897.013194.891.759194.901.029194.900.041
3534.359.738.3681.512.520.615504.183.1561.008.337.459378.124.337378.143.849378.115.116378.137.313
3668.719.476.7362.937.082.486979.027.3041.958.055.182734.263.056734.288.582734.250.464734.280.384


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
4163120021
5326330123
6642110112667
712853252812171212
8256114536128302828
951224913111856706459
101.024536281255131143124138
112.0481.115570545280287268280
124.0962.2821.1741.108569567567579
138.1924.6342.3652.2691.1381.1641.1491.183
1416.3849.5064.8634.6432.3342.3962.3702.406
1532.76819.2899.7729.5174.7854.8294.8184.857
1665.53639.05119.81419.2379.7429.7529.7629.795
17131.07278.94540.03038.91519.79319.76819.64119.743
18262.144159.17180.48078.69139.92739.67139.74239.831
19524.288321.320162.798158.52280.48780.50580.14080.188
201.048.576646.623327.146319.477161.854161.846161.207161.716
212.097.1521.301.876658.426643.450325.465325.600325.029325.782
224.194.3042.618.4601.322.4971.295.963654.334655.005654.292654.829
238.388.6085.265.2612.657.2492.608.0121.315.7271.316.2771.316.5441.316.713
2416.777.21610.578.7715.335.5035.243.2682.645.7232.644.3202.643.5472.645.181
2533.554.43221.249.14910.716.14010.533.0095.312.9495.311.5695.311.3975.313.234
2667.108.86442.661.37421.505.78021.155.59410.664.00810.664.77910.666.12210.666.465
27134.217.72885.614.09643.147.28942.466.80721.401.42821.400.54421.408.05921.404.065
28268.435.456171.790.86786.544.15385.246.71442.941.35742.947.89742.952.19842.949.415
29536.870.912344.608.685173.549.561171.059.12486.136.18486.159.78686.154.83386.157.882
301.073.741.824691.119.776347.977.507343.142.269172.766.914172.784.751172.777.362172.790.749
312.147.483.6481.385.795.876697.581.724688.214.152346.429.438346.468.228346.440.597346.457.613
324.294.967.2962.778.233.6161.398.159.6591.380.073.957694.516.379694.582.820694.550.513694.583.904
338.589.934.5925.568.903.7162.801.932.0272.766.971.6891.392.219.0741.392.229.4441.392.234.8711.392.220.327
3417.179.869.18411.161.195.9795.614.488.8145.546.707.1652.790.347.9042.790.261.9702.790.321.9172.790.264.188
3534.359.738.36822.366.399.65511.248.808.53411.117.591.1215.591.666.3155.591.566.1255.591.681.6305.591.485.585
3668.719.476.73644.815.860.49222.535.223.69022.280.636.80211.204.021.67211.203.945.30211.204.055.23711.203.838.281


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 7, 5, 19, 1, 53, 73, 1, 1, 29, 173, 1, 47, 269, 61, 1, 383, 1, 67, 103,
Found in Database : 17, 7, 5, 19, 53, 73, 29, 173, 47, 269, 61, 383, 67, 103, 563, 613, 719, 31, 191, 1019, 1153, 1223, 37, 1523, 229, 337,
Found in Database : 5, 7, 17, 19, 29, 31, 37, 47, 53, 61, 67, 73, 103, 107, 113, 127, 149,