Inhaltsverzeichnis

Development of
Algorithmic Constructions

05:14:18
Deutsch
20.Apr 2024

Polynom = x^2-188x+139

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) = 139 = 139
f(1) = 3 = 3
f(2) = 233 = 233
f(3) = 13 = 13
f(4) = 597 = 3*199
f(5) = 97 = 97
f(6) = 953 = 953
f(7) = 141 = 3*47
f(8) = 1301 = 1301
f(9) = 23 = 23
f(10) = 1641 = 3*547
f(11) = 113 = 113
f(12) = 1973 = 1973
f(13) = 267 = 3*89
f(14) = 2297 = 2297
f(15) = 307 = 307
f(16) = 2613 = 3*13*67
f(17) = 173 = 173
f(18) = 2921 = 23*127
f(19) = 3 = 3
f(20) = 3221 = 3221
f(21) = 421 = 421
f(22) = 3513 = 3*1171
f(23) = 457 = 457
f(24) = 3797 = 3797
f(25) = 123 = 3*41
f(26) = 4073 = 4073
f(27) = 263 = 263
f(28) = 4341 = 3*1447
f(29) = 559 = 13*43
f(30) = 4601 = 43*107
f(31) = 591 = 3*197
f(32) = 4853 = 23*211
f(33) = 311 = 311
f(34) = 5097 = 3*1699
f(35) = 163 = 163
f(36) = 5333 = 5333
f(37) = 681 = 3*227
f(38) = 5561 = 67*83
f(39) = 709 = 709
f(40) = 5781 = 3*41*47
f(41) = 23 = 23
f(42) = 5993 = 13*461
f(43) = 381 = 3*127
f(44) = 6197 = 6197
f(45) = 787 = 787
f(46) = 6393 = 3*2131
f(47) = 811 = 811
f(48) = 6581 = 6581
f(49) = 417 = 3*139
f(50) = 6761 = 6761
f(51) = 107 = 107
f(52) = 6933 = 3*2311
f(53) = 877 = 877
f(54) = 7097 = 47*151
f(55) = 897 = 3*13*23
f(56) = 7253 = 7253
f(57) = 229 = 229
f(58) = 7401 = 3*2467
f(59) = 467 = 467
f(60) = 7541 = 7541
f(61) = 951 = 3*317
f(62) = 7673 = 7673
f(63) = 967 = 967
f(64) = 7797 = 3*23*113
f(65) = 491 = 491
f(66) = 7913 = 41*193
f(67) = 249 = 3*83
f(68) = 8021 = 13*617
f(69) = 1009 = 1009
f(70) = 8121 = 3*2707
f(71) = 1021 = 1021
f(72) = 8213 = 43*191
f(73) = 129 = 3*43
f(74) = 8297 = 8297
f(75) = 521 = 521
f(76) = 8373 = 3*2791
f(77) = 1051 = 1051
f(78) = 8441 = 23*367
f(79) = 1059 = 3*353
f(80) = 8501 = 8501
f(81) = 533 = 13*41
f(82) = 8553 = 3*2851
f(83) = 67 = 67
f(84) = 8597 = 8597
f(85) = 1077 = 3*359
f(86) = 8633 = 89*97
f(87) = 1081 = 23*47
f(88) = 8661 = 3*2887
f(89) = 271 = 271
f(90) = 8681 = 8681
f(91) = 543 = 3*181
f(92) = 8693 = 8693
f(93) = 1087 = 1087
f(94) = 8697 = 3*13*223
f(95) = 1087 = 1087
f(96) = 8693 = 8693
f(97) = 543 = 3*181
f(98) = 8681 = 8681
f(99) = 271 = 271
f(100) = 8661 = 3*2887

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-188x+139

f(0)=139
f(1)=3
f(2)=233
f(3)=13
f(4)=199
f(5)=97
f(6)=953
f(7)=47
f(8)=1301
f(9)=23
f(10)=547
f(11)=113
f(12)=1973
f(13)=89
f(14)=2297
f(15)=307
f(16)=67
f(17)=173
f(18)=127
f(19)=1
f(20)=3221
f(21)=421
f(22)=1171
f(23)=457
f(24)=3797
f(25)=41
f(26)=4073
f(27)=263
f(28)=1447
f(29)=43
f(30)=107
f(31)=197
f(32)=211
f(33)=311
f(34)=1699
f(35)=163
f(36)=5333
f(37)=227
f(38)=83
f(39)=709
f(40)=1
f(41)=1
f(42)=461
f(43)=1
f(44)=6197
f(45)=787
f(46)=2131
f(47)=811
f(48)=6581
f(49)=1
f(50)=6761
f(51)=1
f(52)=2311
f(53)=877
f(54)=151
f(55)=1
f(56)=7253
f(57)=229
f(58)=2467
f(59)=467
f(60)=7541
f(61)=317
f(62)=7673
f(63)=967
f(64)=1
f(65)=491
f(66)=193
f(67)=1
f(68)=617
f(69)=1009
f(70)=2707
f(71)=1021
f(72)=191
f(73)=1
f(74)=8297
f(75)=521
f(76)=2791
f(77)=1051
f(78)=367
f(79)=353
f(80)=8501
f(81)=1
f(82)=2851
f(83)=1
f(84)=8597
f(85)=359
f(86)=1
f(87)=1
f(88)=2887
f(89)=271
f(90)=8681
f(91)=181
f(92)=8693
f(93)=1087
f(94)=223
f(95)=1
f(96)=1
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-188x+139 could be written as f(y)= y^2-8697 with x=y+94

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-94
f'(x)>2x-189 with x > 93

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

139, 3, 233, 13, 199, 97, 953, 47, 1301, 23, 547, 113, 1973, 89, 2297, 307, 67, 173, 127, 1, 3221, 421, 1171, 457, 3797, 41, 4073, 263, 1447, 43, 107, 197, 211, 311, 1699, 163, 5333, 227, 83, 709, 1, 1, 461, 1, 6197, 787, 2131, 811, 6581, 1, 6761, 1, 2311, 877, 151, 1, 7253, 229, 2467, 467, 7541, 317, 7673, 967, 1, 491, 193, 1, 617, 1009, 2707, 1021, 191, 1, 8297, 521, 2791, 1051, 367, 353, 8501, 1, 2851, 1, 8597, 359, 1, 1, 2887, 271, 8681, 181, 8693, 1087, 223, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 907, 1, 1303, 1, 569, 239, 1, 1, 2539, 1, 1, 1, 1, 1, 3847, 509, 1433, 283, 4759, 1, 5227, 683, 1901, 743, 269, 1, 6679, 433, 2393, 929, 7687, 331, 631, 1, 2909, 281, 1, 397, 1, 1259, 3449, 1, 10903, 1, 11467, 1, 4013, 1, 12619, 1, 1, 1, 1, 1, 14407, 613, 653, 479, 401, 997, 16267, 691, 16903, 2153, 5849, 1117, 18199, 1, 18859, 2399, 1, 1, 1, 1, 20887, 1327, 7193, 2741, 22279, 1, 1, 1459, 7901, 1, 1879, 1033, 1, 3191, 1, 821, 26647, 563, 409, 1, 1, 1, 673, 1, 1, 941, 10169, 3863, 1361, 1321, 1, 1, 10973, 2083, 33739, 1423, 2659, 4373, 11801, 2239, 541, 1, 1613, 4691, 12653, 4799, 947, 1, 39703, 1, 1, 1, 41479, 1747, 42379, 2677, 1, 1367, 44203, 1861, 45127, 1, 1181, 727, 1093, 1, 47947, 6053, 16301, 6173, 1061, 1049, 50839, 1, 751, 503, 52807, 2221, 1, 1697, 18269, 3457, 55819, 2347, 1, 1, 19289, 1, 1, 619, 1, 7559, 20333, 7691, 1, 1, 63127, 1, 21401, 8093, 65287, 1, 1619, 1, 1, 1063, 641, 1, 1621, 8783, 23609, 1, 1, 1511, 5623, 9209, 24749, 1, 75403, 1583, 3329, 2411, 25913, 9791, 78919, 3313, 80107, 1, 661, 5119, 82507, 3463, 83719, 1, 1231, 5347, 1, 1, 87403, 11003, 2273, 11159, 89899, 1, 91159, 5737, 30809, 11633, 93703, 3931, 1, 1, 1, 1, 97579, 4093, 98887, 1, 1, 1, 101527, 2129, 102859, 12941, 739, 13109, 1, 2213, 106903, 1, 1, 13619, 109639, 4597, 1657, 3491, 1, 7069, 1, 1, 5009, 14489, 38873, 7333, 2879, 1237, 1, 1, 1, 1, 122347, 1, 1, 1, 971, 15749, 1, 1, 128203, 8059, 1, 1019, 1, 1, 132679, 1283, 44729, 4217, 1399, 2843, 3347, 1, 2011, 1, 1, 2939, 1709, 4457, 3677, 1, 144967, 6073, 146539, 1151, 1, 1, 1, 6271, 151303, 19013, 50969, 1, 809, 1, 156139, 853, 1223, 1, 159403, 1669, 161047, 1, 1, 20441, 1, 6883, 166027, 10429, 55901, 1, 1499, 1, 171079, 21491, 57593, 2713, 174487, 1, 1, 22133, 1, 22349, 179659, 3761, 181399, 1, 1489, 23003, 184903, 7741, 1, 5861, 2731, 11833, 1, 7963, 192007, 24113, 64601, 1, 4549, 1, 197419, 1907, 66413, 1, 3001, 1, 1, 12739, 1, 1, 5039, 8647, 208459, 1, 5393, 3301, 212203, 1, 214087, 26879, 71993, 6779, 9473, 1, 219787, 1, 1103, 2141, 1979, 4679, 1069, 7079, 75833, 28559, 1153, 9601, 10061, 3631, 1, 1, 1, 1, 237319, 29789, 79769, 1, 241303, 1, 1, 30539, 81773, 1, 247339, 1, 249367, 15649, 1783, 1, 253447, 1, 255499, 16033, 85853, 8081, 259627, 10861, 1, 32843, 3823, 2069, 5657, 1, 3011, 33629, 1, 33893, 272203, 5693, 1, 1, 92153, 1, 12113, 1, 6529, 8807, 1, 17749, 3203, 11923, 287239, 1567, 1, 1, 1789, 3049, 293803, 1, 98669, 37139, 3593, 1559, 300439, 1, 1, 1, 304903, 1, 307147, 19267, 1, 1213, 311659, 13033, 13649, 39383, 105401, 1, 24499, 6659, 3307, 40241, 107693, 40529, 3041, 6803, 7621, 1, 4783, 41399, 2617, 1, 334699, 1, 112349, 21139, 3499, 1, 5101, 1, 114713, 1, 2003, 1811, 26839, 1, 117101, 1, 8627, 3697, 7577, 1, 119513, 1, 4349, 15091, 363403, 1753, 121949, 11471, 1, 1, 370759, 46499, 2647, 5851, 375703, 7853, 1, 1, 1, 47741, 383179, 8009, 1, 3023, 129401, 1, 390727, 16333, 1, 12329, 131933, 1, 398347, 16651, 400903, 50273, 134489, 1, 2689, 4243, 1, 51239, 1, 51563, 1, 1, 416407, 26107, 1, 52541, 421639, 17623, 424267, 1, 1, 6691, 429547, 1381, 432199, 1, 3371, 1, 437527, 1, 440203, 1, 147629, 55529, 19373, 9311, 34483, 14051, 150329, 56543, 453703, 1, 456427, 1, 3733, 1, 3637, 1, 464647, 4481, 155801, 1, 470167, 1, 472939, 1, 158573, 2593, 10181, 4999, 481303, 30169, 12413, 60689, 5471, 20347, 1, 30697, 1453, 1, 1, 1, 10601, 62459, 167033, 1, 503959, 10529, 1, 63533, 1, 1, 1949, 10709, 2251, 1, 2579, 1, 40099, 1, 524203, 16427, 175709, 33037, 1873, 22147, 532999, 66809, 1, 33589, 3877, 1, 2837, 2953, 1, 1, 547819, 2861, 8221, 34519, 1, 1693, 1, 1, 43063, 35083, 1, 4409, 565867, 1, 568903, 1, 190649, 17921, 1, 12011, 1, 5573, 1997, 1, 584203, 12203, 587287, 18401, 2371, 3217, 593479, 24793, 596587, 4673, 15377, 37579, 2857, 25183, 6247, 75941, 1, 38167, 3539, 1, 615403, 1, 1, 1, 621739, 1, 14533, 39157, 9103, 78713, 3271, 26371, 1, 1, 212573, 19979, 1, 1, 2377, 1, 215801, 10141, 28289, 1, 653899, 1, 219053, 82349, 2437, 1, 2777, 1, 222329, 83579, 670279, 27997, 673579, 21101, 225629, 42409, 680203, 28411, 52579, 2089, 228953, 1871, 1, 7207, 1, 1, 1, 87323, 2281, 1, 30593, 3391, 235673, 88589, 17327, 29671, 1, 1, 239069, 1, 720619, 30097, 2753, 1, 1, 22787, 10909, 15263, 734347, 92009, 1, 1, 4909, 1, 744727, 23327, 1, 7211, 2417, 31393, 1, 11827, 252893, 47527, 762187, 1, 1, 1, 1, 48187, 59443, 2017, 1, 97259, 259949, 2383, 34061, 8179, 3529, 49297, 263513, 99041, 794119, 2551, 8963, 1, 5683, 25097, 4447, 33613, 35153, 1,

6. Sequence of the polynom (only primes)

139, 3, 233, 13, 199, 97, 953, 47, 1301, 23, 547, 113, 1973, 89, 2297, 307, 67, 173, 127, 3221, 421, 1171, 457, 3797, 41, 4073, 263, 1447, 43, 107, 197, 211, 311, 1699, 163, 5333, 227, 83, 709, 461, 6197, 787, 2131, 811, 6581, 6761, 2311, 877, 151, 7253, 229, 2467, 467, 7541, 317, 7673, 967, 491, 193, 617, 1009, 2707, 1021, 191, 8297, 521, 2791, 1051, 367, 353, 8501, 2851, 8597, 359, 2887, 271, 8681, 181, 8693, 1087, 223, 907, 1303, 569, 239, 2539, 3847, 509, 1433, 283, 4759, 5227, 683, 1901, 743, 269, 6679, 433, 2393, 929, 7687, 331, 631, 2909, 281, 397, 1259, 3449, 10903, 11467, 4013, 12619, 14407, 613, 653, 479, 401, 997, 16267, 691, 16903, 2153, 5849, 1117, 18199, 18859, 2399, 20887, 1327, 7193, 2741, 22279, 1459, 7901, 1879, 1033, 3191, 821, 26647, 563, 409, 673, 941, 10169, 3863, 1361, 1321, 10973, 2083, 33739, 1423, 2659, 4373, 11801, 2239, 541, 1613, 4691, 12653, 4799, 947, 39703, 41479, 1747, 42379, 2677, 1367, 44203, 1861, 45127, 1181, 727, 1093, 47947, 6053, 16301, 6173, 1061, 1049, 50839, 751, 503, 52807, 2221, 1697, 18269, 3457, 55819, 2347, 19289, 619, 7559, 20333, 7691, 63127, 21401, 8093, 65287, 1619, 1063, 641, 1621, 8783, 23609, 1511, 5623, 9209, 24749, 75403, 1583, 3329, 2411, 25913, 9791, 78919, 3313, 80107, 661, 5119, 82507, 3463, 83719, 1231, 5347, 87403, 11003, 2273, 11159, 89899, 91159, 5737, 30809, 11633, 93703, 3931, 97579, 4093, 98887, 101527, 2129, 102859, 12941, 739, 13109, 2213, 106903, 13619, 109639, 4597, 1657, 3491, 7069, 5009, 14489, 38873, 7333, 2879, 1237, 122347, 971, 15749, 128203, 8059, 1019, 132679, 1283, 44729, 4217, 1399, 2843, 3347, 2011, 2939, 1709, 4457, 3677, 144967, 6073, 146539, 1151, 6271, 151303, 19013, 50969, 809, 156139, 853, 1223, 159403, 1669, 161047, 20441, 6883, 166027, 10429, 55901, 1499, 171079, 21491, 57593, 2713, 174487, 22133, 22349, 179659, 3761, 181399, 1489, 23003, 184903, 7741, 5861, 2731, 11833, 7963, 192007, 24113, 64601, 4549, 197419, 1907, 66413, 3001, 12739, 5039, 8647, 208459, 5393, 3301, 212203, 214087, 26879, 71993, 6779, 9473, 219787, 1103, 2141, 1979, 4679, 1069, 7079, 75833, 28559, 1153, 9601, 10061, 3631, 237319, 29789, 79769, 241303, 30539, 81773, 247339, 249367, 15649, 1783, 253447, 255499, 16033, 85853, 8081, 259627, 10861, 32843, 3823, 2069, 5657, 3011, 33629, 33893, 272203, 5693, 92153, 12113, 6529, 8807, 17749, 3203, 11923, 287239, 1567, 1789, 3049, 293803, 98669, 37139, 3593, 1559, 300439, 304903, 307147, 19267, 1213, 311659, 13033, 13649, 39383, 105401, 24499, 6659, 3307, 40241, 107693, 40529, 3041, 6803, 7621, 4783, 41399, 2617, 334699, 112349, 21139, 3499, 5101, 114713, 2003, 1811, 26839, 117101, 8627, 3697, 7577, 119513, 4349, 15091, 363403, 1753, 121949, 11471, 370759, 46499, 2647, 5851, 375703, 7853, 47741, 383179, 8009, 3023, 129401, 390727, 16333, 12329, 131933, 398347, 16651, 400903, 50273, 134489, 2689, 4243, 51239, 51563, 416407, 26107, 52541, 421639, 17623, 424267, 6691, 429547, 1381, 432199, 3371, 437527, 440203, 147629, 55529, 19373, 9311, 34483, 14051, 150329, 56543, 453703, 456427, 3733, 3637, 464647, 4481, 155801, 470167, 472939, 158573, 2593, 10181, 4999, 481303, 30169, 12413, 60689, 5471, 20347, 30697, 1453, 10601, 62459, 167033, 503959, 10529, 63533, 1949, 10709, 2251, 2579, 40099, 524203, 16427, 175709, 33037, 1873, 22147, 532999, 66809, 33589, 3877, 2837, 2953, 547819, 2861, 8221, 34519, 1693, 43063, 35083, 4409, 565867, 568903, 190649, 17921, 12011, 5573, 1997, 584203, 12203, 587287, 18401, 2371, 3217, 593479, 24793, 596587, 4673, 15377, 37579, 2857, 25183, 6247, 75941, 38167, 3539, 615403, 621739, 14533, 39157, 9103, 78713, 3271, 26371, 212573, 19979, 2377, 215801, 10141, 28289, 653899, 219053, 82349, 2437, 2777, 222329, 83579, 670279, 27997, 673579, 21101, 225629, 42409, 680203, 28411, 52579, 2089, 228953, 1871, 7207, 87323, 2281, 30593, 3391, 235673, 88589, 17327, 29671, 239069, 720619, 30097, 2753, 22787, 10909, 15263, 734347, 92009, 4909, 744727, 23327, 7211, 2417, 31393, 11827, 252893, 47527, 762187, 48187, 59443, 2017, 97259, 259949, 2383, 34061, 8179, 3529, 49297, 263513, 99041, 794119, 2551, 8963, 5683, 25097, 4447, 33613, 35153,

7. Distribution of the primes

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

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)
11011471.1000000.4000001.1000000.0000000.0000000.000000
21008323600.8300000.2300000.8300007.5454555.7500008.571428
31.0009133215920.9130000.3210000.91300011.00000013.9565229.866667
410.0009.8853.3206.5650.9885000.3320000.98850010.82694410.34267911.089527
5100.00099.84833.30966.5390.9984800.3330900.99848010.10096110.03283110.135415
61.000.000999.803333.206666.5970.9998030.3332060.99980310.01325010.00348310.018140
710.000.0009.999.7603.332.1716.667.5890.9999760.3332170.99997610.00173010.00033310.002429
8100.000.00099.999.71533.321.82366.677.8920.9999970.3332180.99999710.00021110.00003410.000300
91.000.000.000999.999.669333.218.339666.781.3301.0000000.3332181.00000010.00002610.00000310.000036
1010.000.000.0009.999.999.6253.332.183.4986.667.816.1271.0000000.3332181.00000010.00000310.00000110.000004


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)
123211.5000001.0000000.5000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666671.0000003.000000
389451.1250000.5000000.6250001.8000002.0000001.666667
416176111.0625000.3750000.6875001.8888891.5000002.200000
532309210.9375000.2812500.6562501.7647061.5000001.909091
6645516390.8593750.2500000.6093751.8333331.7777781.857143
712810833750.8437500.2578120.5859381.9636362.0625001.923077
8256191731180.7460940.2851560.4609381.7685192.2121211.573333
95124331592740.8457030.3105470.5351562.2670162.1780822.322034
101.0249373296080.9150390.3212890.5937502.1639722.0691822.218978
112.0481.9556711.2840.9545900.3276370.6269532.0864462.0395142.111842
124.0963.9921.3532.6390.9746090.3303220.6442872.0419442.0163932.055296
138.1928.0792.7185.3610.9862060.3317870.6544192.0237982.0088692.031451
1416.38416.2625.44710.8150.9925540.3324580.6600952.0128732.0040472.017348
1532.76832.63510.90721.7280.9959410.3328550.6630862.0068262.0023872.009062
1665.53665.39421.82543.5690.9978330.3330230.6648102.0038002.0010092.005201
17131.072130.91443.66487.2500.9987950.3331300.6656652.0019272.0006422.002571
18262.144261.97387.339174.6340.9993480.3331720.6661762.0011082.0002522.001536
19524.288524.104174.691349.4130.9996490.3331970.6664522.0006032.0001492.000830
201.048.5761.048.378349.393698.9850.9998110.3332070.6666042.0003242.0000632.000455
212.097.1522.096.942698.7981.398.1440.9999000.3332130.6666872.0001772.0000342.000249
224.194.3044.194.0821.397.6072.796.4750.9999470.3332150.6667322.0000942.0000162.000134
238.388.6088.388.3702.795.2275.593.1430.9999720.3332170.6667552.0000492.0000092.000069
2416.777.21616.776.9655.590.46411.186.5010.9999850.3332180.6667672.0000272.0000042.000038
2533.554.43233.554.16811.180.94122.373.2270.9999920.3332180.6667742.0000142.0000022.000020
2667.108.86467.108.58622.361.89344.746.6930.9999960.3332180.6667782.0000072.0000012.000010
27134.217.728134.217.43844.723.79989.493.6390.9999980.3332180.6667802.0000042.0000012.000006
28268.435.456268.435.15389.447.608178.987.5450.9999990.3332180.6667812.0000022.0000002.000003
29536.870.912536.870.593178.895.229357.975.3640.9999990.3332180.6667812.0000012.0000002.000001
301.073.741.8241.073.741.492357.790.468715.951.0241.0000000.3332180.6667812.0000012.0000002.000001
312.147.483.6482.147.483.303715.580.9491.431.902.3541.0000000.3332180.6667812.0000002.0000002.000000
324.294.967.2964.294.966.9401.431.161.9082.863.805.0321.0000000.3332180.6667822.0000002.0000002.000000
338.589.934.5928.589.934.2212.862.323.8285.727.610.3931.0000000.3332180.6667822.0000002.0000002.000000
3417.179.869.18417.179.868.7915.724.647.66511.455.221.1261.0000000.3332180.6667822.0000002.0000002.000000


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
122111100
242111100
384132110
4166153120
5329184140
664161156190
712833132141180
825673235023122711
95121591095023552754
101.024329279502314027139
112.048671621502331127310
124.0961.3531.303502365227651
138.1922.7182.66850231.334271.334
1416.3845.4475.39750232.699272.698
1532.76810.90710.85750235.429275.428
1665.53621.82521.775502310.8882710.887
17131.07243.66443.614502321.8082721.806
18262.14487.33987.289502343.6452743.644
19524.288174.691174.641502387.3212787.320
201.048.576349.393349.3435023174.67227174.671
212.097.152698.798698.7485023349.37427349.374
224.194.3041.397.6071.397.5575023698.77927698.778
238.388.6082.795.2272.795.17750231.397.589271.397.588
2416.777.2165.590.4645.590.41450232.795.207272.795.207
2533.554.43211.180.94111.180.89150235.590.446275.590.445
2667.108.86422.361.89322.361.843502311.180.9222711.180.921
27134.217.72844.723.79944.723.749502322.361.8752722.361.874
28268.435.45689.447.60889.447.558502344.723.7792744.723.779
29536.870.912178.895.229178.895.179502389.447.5902789.447.589
301.073.741.824357.790.468357.790.4185023178.895.20927178.895.209
312.147.483.648715.580.949715.580.8995023357.790.45027357.790.449
324.294.967.2961.431.161.9081.431.161.8585023715.580.92927715.580.929
338.589.934.5922.862.323.8282.862.323.77850231.431.161.889271.431.161.889
3417.179.869.1845.724.647.6655.724.647.61550232.862.323.808272.862.323.807


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
121000100
243200111
385311112
41611643413
532211284746
664392414416910
712875482613251324
8256118684923382631
951227411815571657563
101.024608228379176127181124
112.0481.284451832386255393250
124.0962.6399011.737813507816503
138.1925.3611.8063.5541.6601.0201.6681.013
1416.38410.8153.6247.1903.3692.0373.3722.037
1532.76821.7287.26314.4646.7754.0886.7824.083
1665.53643.56914.54529.02313.6068.17813.6098.176
17131.07287.25029.10658.14327.25116.37327.26116.365
18262.144174.63458.242116.39154.56032.75554.56832.751
19524.288349.413116.518232.894109.18165.524109.18265.526
201.048.576698.985233.079465.905218.415131.073218.422131.075
212.097.1521.398.144466.212931.931436.895262.172436.903262.174
224.194.3042.796.475932.4821.863.992873.860524.374873.871524.370
238.388.6085.593.1431.865.0243.728.1181.747.7911.048.7781.747.7971.048.777
2416.777.21611.186.5013.730.1187.456.3823.495.6592.097.5903.495.6652.097.587
2533.554.43222.373.2277.460.30914.912.9176.991.3904.195.2216.991.3894.195.227
2667.108.86444.746.69314.920.70129.825.99113.982.8508.390.49113.982.8618.390.491
27134.217.72889.493.63929.841.49259.652.14627.965.79816.781.01627.965.79916.781.026
28268.435.456178.987.54559.683.080119.304.46455.931.66133.562.10855.931.68833.562.088
29536.870.912357.975.364119.366.259238.609.104111.863.44067.124.237111.863.44867.124.239
301.073.741.824715.951.024238.732.631477.218.392223.726.974134.248.533223.726.988134.248.529
312.147.483.6481.431.902.354477.465.379954.436.974447.454.052268.497.118447.454.059268.497.125
324.294.967.2962.863.805.032954.930.8871.908.874.144894.908.195536.994.316894.908.214536.994.307
338.589.934.5925.727.610.3931.909.861.8983.817.748.4941.789.816.5191.073.988.6711.789.816.5231.073.988.680
3417.179.869.18411.455.221.1263.819.723.9387.635.497.1873.579.633.1422.147.977.4173.579.633.1532.147.977.414


8. Check for existing Integer Sequences by OEIS

Found in Database : 139, 3, 233, 13, 199, 97, 953, 47, 1301, 23, 547, 113, 1973, 89, 2297, 307, 67, 173, 127, 1,
Found in Database : 139, 3, 233, 13, 199, 97, 953, 47, 1301, 23, 547, 113, 1973, 89, 2297, 307, 67, 173, 127, 3221, 421, 1171, 457, 3797, 41, 4073, 263, 1447, 43, 107, 197, 211, 311, 1699, 163, 5333, 227, 83, 709,
Found in Database : 3, 13, 23, 41, 43, 47, 67, 83, 89, 97, 107, 113, 127, 139,