Inhaltsverzeichnis

Development of
Algorithmic Constructions

23:04:01
Deutsch
19.Apr 2024

Polynom = x^2-200x+103

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) = 103 = 103
f(1) = 3 = 3
f(2) = 293 = 293
f(3) = 61 = 61
f(4) = 681 = 3*227
f(5) = 109 = 109
f(6) = 1061 = 1061
f(7) = 39 = 3*13
f(8) = 1433 = 1433
f(9) = 101 = 101
f(10) = 1797 = 3*599
f(11) = 247 = 13*19
f(12) = 2153 = 2153
f(13) = 291 = 3*97
f(14) = 2501 = 41*61
f(15) = 167 = 167
f(16) = 2841 = 3*947
f(17) = 47 = 47
f(18) = 3173 = 19*167
f(19) = 417 = 3*139
f(20) = 3497 = 13*269
f(21) = 457 = 457
f(22) = 3813 = 3*31*41
f(23) = 31 = 31
f(24) = 4121 = 13*317
f(25) = 267 = 3*89
f(26) = 4421 = 4421
f(27) = 571 = 571
f(28) = 4713 = 3*1571
f(29) = 607 = 607
f(30) = 4997 = 19*263
f(31) = 321 = 3*107
f(32) = 5273 = 5273
f(33) = 169 = 13*13
f(34) = 5541 = 3*1847
f(35) = 709 = 709
f(36) = 5801 = 5801
f(37) = 741 = 3*13*19
f(38) = 6053 = 6053
f(39) = 193 = 193
f(40) = 6297 = 3*2099
f(41) = 401 = 401
f(42) = 6533 = 47*139
f(43) = 831 = 3*277
f(44) = 6761 = 6761
f(45) = 859 = 859
f(46) = 6981 = 3*13*179
f(47) = 443 = 443
f(48) = 7193 = 7193
f(49) = 57 = 3*19
f(50) = 7397 = 13*569
f(51) = 937 = 937
f(52) = 7593 = 3*2531
f(53) = 961 = 31*31
f(54) = 7781 = 31*251
f(55) = 123 = 3*41
f(56) = 7961 = 19*419
f(57) = 503 = 503
f(58) = 8133 = 3*2711
f(59) = 1027 = 13*79
f(60) = 8297 = 8297
f(61) = 1047 = 3*349
f(62) = 8453 = 79*107
f(63) = 533 = 13*41
f(64) = 8601 = 3*47*61
f(65) = 271 = 271
f(66) = 8741 = 8741
f(67) = 1101 = 3*367
f(68) = 8873 = 19*467
f(69) = 1117 = 1117
f(70) = 8997 = 3*2999
f(71) = 283 = 283
f(72) = 9113 = 13*701
f(73) = 573 = 3*191
f(74) = 9221 = 9221
f(75) = 1159 = 19*61
f(76) = 9321 = 3*13*239
f(77) = 1171 = 1171
f(78) = 9413 = 9413
f(79) = 591 = 3*197
f(80) = 9497 = 9497
f(81) = 149 = 149
f(82) = 9573 = 3*3191
f(83) = 1201 = 1201
f(84) = 9641 = 31*311
f(85) = 1209 = 3*13*31
f(86) = 9701 = 89*109
f(87) = 19 = 19
f(88) = 9753 = 3*3251
f(89) = 611 = 13*47
f(90) = 9797 = 97*101
f(91) = 1227 = 3*409
f(92) = 9833 = 9833
f(93) = 1231 = 1231
f(94) = 9861 = 3*19*173
f(95) = 617 = 617
f(96) = 9881 = 41*241
f(97) = 309 = 3*103
f(98) = 9893 = 13*761
f(99) = 1237 = 1237
f(100) = 9897 = 3*3299

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-200x+103

f(0)=103
f(1)=3
f(2)=293
f(3)=61
f(4)=227
f(5)=109
f(6)=1061
f(7)=13
f(8)=1433
f(9)=101
f(10)=599
f(11)=19
f(12)=2153
f(13)=97
f(14)=41
f(15)=167
f(16)=947
f(17)=47
f(18)=1
f(19)=139
f(20)=269
f(21)=457
f(22)=31
f(23)=1
f(24)=317
f(25)=89
f(26)=4421
f(27)=571
f(28)=1571
f(29)=607
f(30)=263
f(31)=107
f(32)=5273
f(33)=1
f(34)=1847
f(35)=709
f(36)=5801
f(37)=1
f(38)=6053
f(39)=193
f(40)=2099
f(41)=401
f(42)=1
f(43)=277
f(44)=6761
f(45)=859
f(46)=179
f(47)=443
f(48)=7193
f(49)=1
f(50)=569
f(51)=937
f(52)=2531
f(53)=1
f(54)=251
f(55)=1
f(56)=419
f(57)=503
f(58)=2711
f(59)=79
f(60)=8297
f(61)=349
f(62)=1
f(63)=1
f(64)=1
f(65)=271
f(66)=8741
f(67)=367
f(68)=467
f(69)=1117
f(70)=2999
f(71)=283
f(72)=701
f(73)=191
f(74)=9221
f(75)=1
f(76)=239
f(77)=1171
f(78)=9413
f(79)=197
f(80)=9497
f(81)=149
f(82)=3191
f(83)=1201
f(84)=311
f(85)=1
f(86)=1
f(87)=1
f(88)=3251
f(89)=1
f(90)=1
f(91)=409
f(92)=9833
f(93)=1231
f(94)=173
f(95)=617
f(96)=241
f(97)=1
f(98)=761
f(99)=1237

b) Substitution of the polynom
The polynom f(x)=x^2-200x+103 could be written as f(y)= y^2-9897 with x=y+100

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-100
f'(x)>2x-201 with x > 99

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

103, 3, 293, 61, 227, 109, 1061, 13, 1433, 101, 599, 19, 2153, 97, 41, 167, 947, 47, 1, 139, 269, 457, 31, 1, 317, 89, 4421, 571, 1571, 607, 263, 107, 5273, 1, 1847, 709, 5801, 1, 6053, 193, 2099, 401, 1, 277, 6761, 859, 179, 443, 7193, 1, 569, 937, 2531, 1, 251, 1, 419, 503, 2711, 79, 8297, 349, 1, 1, 1, 271, 8741, 367, 467, 1117, 2999, 283, 701, 191, 9221, 1, 239, 1171, 9413, 197, 9497, 149, 3191, 1201, 311, 1, 1, 1, 3251, 1, 1, 409, 9833, 1231, 173, 617, 241, 1, 761, 1237, 3299, 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, 1, 1, 1, 1, 1, 1, 919, 1, 1, 1, 1, 1, 2203, 1, 2647, 359, 1033, 1, 3559, 1, 4027, 1, 1, 593, 4987, 1, 5479, 1, 1993, 1, 499, 281, 1, 1, 1, 487, 8059, 347, 8599, 1109, 3049, 1, 313, 1, 10267, 1319, 3613, 1, 601, 1, 12007, 769, 4201, 1613, 1, 563, 1063, 883, 4813, 461, 1, 641, 383, 2003, 5449, 521, 1, 1, 17659, 1, 1, 2333, 613, 1, 19687, 1, 6793, 2591, 1, 1, 21787, 1, 577, 1429, 23227, 983, 1, 3041, 8233, 1567, 25447, 1, 26203, 3323, 1, 1, 27739, 1, 1, 1, 9769, 1, 30103, 1, 997, 1, 1, 1, 2503, 1373, 547, 1, 877, 541, 1, 739, 35899, 1, 12253, 4649, 1, 1, 1, 1217, 691, 1, 857, 1697, 41179, 1301, 14029, 2659, 43003, 1811, 1, 1, 787, 2833, 1, 1, 46747, 5903, 15901, 1, 1187, 1, 49639, 1, 1, 6389, 51607, 1, 1283, 3319, 1, 1, 1, 2297, 55639, 7019, 1453, 1787, 3037, 1213, 4519, 1, 643, 7541, 60859, 1279, 61927, 1, 21001, 1, 3373, 2693, 65179, 1, 22093, 4177, 853, 1, 1123, 1, 23209, 1, 5443, 743, 71899, 9059, 1873, 9203, 74203, 1, 75367, 1, 823, 1, 77719, 1, 4153, 4969, 26701, 1, 81307, 3413, 1, 10391, 1, 659, 84967, 1783, 1, 10853, 1, 1, 6823, 1861, 89959, 1, 647, 11483, 92503, 3881, 93787, 1, 773, 1, 3109, 1, 97687, 1, 1, 6229, 2447, 1, 1, 12791, 1, 12959, 104347, 1, 1, 1, 1, 13469, 108439, 4547, 109819, 6907, 1951, 1, 112603, 4721, 1, 1103, 1, 1, 3769, 1, 1, 1, 39901, 15053, 9319, 2539, 122599, 1, 3181, 821, 125527, 5261, 1427, 1, 42829, 1, 6841, 1, 131479, 16529, 1, 1, 134503, 1409, 136027, 17099, 45853, 17291, 7321, 1, 1, 8839, 1, 1, 11059, 1, 1439, 9133, 48973, 1, 1531, 6221, 1, 1451, 829, 2383, 153319, 1, 3779, 19469, 52189, 1, 1, 3313, 1, 5021, 1, 1, 977, 6833, 1, 1, 55501, 10459, 1543, 7043, 8941, 21341, 57193, 1, 1163, 907, 175003, 1, 58909, 1, 3797, 1, 2281, 11317, 60649, 22853, 1087, 7691, 185467, 1, 4801, 5879, 189019, 1, 190807, 1, 1, 6047, 3187, 1, 1, 1, 1, 1913, 1, 1, 1, 1583, 3571, 1, 205399, 8597, 1, 3253, 69709, 1, 16231, 8831, 1, 26729, 71593, 1, 216679, 2267, 1, 2111, 2371, 1, 1, 1, 224359, 14083, 1, 28409, 1, 9551, 230203, 14449, 5953, 3643, 234139, 1, 1, 1, 1, 1, 12637, 5023, 1013, 30389, 81373, 2357, 5237, 1, 248167, 1, 83401, 1, 1, 1, 254299, 1, 85453, 16087, 1, 1, 2927, 32693, 6733, 16477, 4339, 1, 1, 33479, 1907, 1, 271003, 1, 273127, 17137, 91753, 2657, 1, 1, 14713, 17539, 93901, 8837, 9157, 1, 22003, 1889, 1, 9041, 1, 6073, 1289, 36713, 98269, 1, 297019, 6211, 299239, 1, 1, 1, 303703, 1, 305947, 2399, 5407, 19333, 310459, 12983, 312727, 39233, 1, 19759, 3271, 1, 1, 1, 5647, 1, 7907, 3389, 326503, 20479, 109609, 1, 331159, 1, 1997, 1609, 111949, 2633, 338203, 1, 3511, 42719, 1447, 1, 1, 7219, 347707, 43613, 1, 43913, 18553, 7369, 1, 1, 1, 44819, 359767, 1, 362203, 1, 1, 1759, 1, 1, 3659, 46349, 1, 1, 1, 1, 1, 47279, 126493, 47591, 29383, 1, 384487, 24109, 129001, 48533, 389527, 1, 392059, 1, 4243, 1, 1277, 1, 1, 50123, 134089, 12611, 1, 8461, 6679, 1, 10513, 51413, 412603, 8623, 1, 1627, 139273, 52391, 420439, 17573, 423067, 1, 3461, 2053, 2393, 17903, 430999, 4157, 4663, 1, 4003, 1, 5557, 2897, 147229, 1, 34183, 4643, 447079, 28027, 1, 56393, 4229, 18911, 455227, 28537, 1, 7177, 2663, 1481, 463447, 1, 8179, 1, 468967, 1, 10037, 59141, 2593, 1, 1, 9973, 36931, 1, 160969, 60539, 37363, 20297, 488539, 1, 163789, 1621, 1559, 1, 497047, 4793, 1, 31333, 1, 1, 4909, 1, 169501, 63743, 511387, 2671, 4993, 32233, 1, 1, 1, 1, 40231, 32779, 175309, 16481, 12899, 1, 531799, 1, 178249, 1, 537703, 1, 13187, 1, 181213, 68141, 546619, 1, 549607, 1, 1, 69263, 1, 1, 29401, 1, 14401, 1, 564667, 1, 18313, 71153, 190249, 1, 3851, 1, 1, 1, 3169, 5591, 3257, 6089, 586087, 1933, 1, 1801, 4261, 1, 1, 37309, 199501, 1, 46279, 1, 604759, 3989, 2089, 1, 13001, 12763, 19813, 1, 10831, 77369, 1, 1, 623719, 19541, 2069, 1, 1, 26321, 633307, 19841, 1, 39883, 639739, 26723, 49459, 1, 4583, 2131, 2861, 3391, 652699, 1, 5333, 6323, 1, 1721, 2341, 1, 7159, 4391, 16319, 27947, 672379, 1, 2851, 1, 2749, 1, 682327, 1, 17581, 1, 688999, 14389, 692347, 86753, 231901, 1, 36793, 1, 702439, 5501, 235273, 6803, 2617, 1, 712603, 11161, 7699, 1, 719419, 30047, 55603, 1, 2221, 1, 56131, 1, 733147, 1, 245533, 2251, 740059, 7727, 39133, 3583, 1, 1, 750487, 2411, 753979, 1, 2837, 11863, 2689, 1, 40237, 95783, 1, 1, 24889, 16111, 1, 1, 1, 97553, 12823, 16333, 5653, 24611, 2459, 7607, 792919, 33113, 19427, 1,

6. Sequence of the polynom (only primes)

103, 3, 293, 61, 227, 109, 1061, 13, 1433, 101, 599, 19, 2153, 97, 41, 167, 947, 47, 139, 269, 457, 31, 317, 89, 4421, 571, 1571, 607, 263, 107, 5273, 1847, 709, 5801, 6053, 193, 2099, 401, 277, 6761, 859, 179, 443, 7193, 569, 937, 2531, 251, 419, 503, 2711, 79, 8297, 349, 271, 8741, 367, 467, 1117, 2999, 283, 701, 191, 9221, 239, 1171, 9413, 197, 9497, 149, 3191, 1201, 311, 3251, 409, 9833, 1231, 173, 617, 241, 761, 1237, 3299, 919, 2203, 2647, 359, 1033, 3559, 4027, 593, 4987, 5479, 1993, 499, 281, 487, 8059, 347, 8599, 1109, 3049, 313, 10267, 1319, 3613, 601, 12007, 769, 4201, 1613, 563, 1063, 883, 4813, 461, 641, 383, 2003, 5449, 521, 17659, 2333, 613, 19687, 6793, 2591, 21787, 577, 1429, 23227, 983, 3041, 8233, 1567, 25447, 26203, 3323, 27739, 9769, 30103, 997, 2503, 1373, 547, 877, 541, 739, 35899, 12253, 4649, 1217, 691, 857, 1697, 41179, 1301, 14029, 2659, 43003, 1811, 787, 2833, 46747, 5903, 15901, 1187, 49639, 6389, 51607, 1283, 3319, 2297, 55639, 7019, 1453, 1787, 3037, 1213, 4519, 643, 7541, 60859, 1279, 61927, 21001, 3373, 2693, 65179, 22093, 4177, 853, 1123, 23209, 5443, 743, 71899, 9059, 1873, 9203, 74203, 75367, 823, 77719, 4153, 4969, 26701, 81307, 3413, 10391, 659, 84967, 1783, 10853, 6823, 1861, 89959, 647, 11483, 92503, 3881, 93787, 773, 3109, 97687, 6229, 2447, 12791, 12959, 104347, 13469, 108439, 4547, 109819, 6907, 1951, 112603, 4721, 1103, 3769, 39901, 15053, 9319, 2539, 122599, 3181, 821, 125527, 5261, 1427, 42829, 6841, 131479, 16529, 134503, 1409, 136027, 17099, 45853, 17291, 7321, 8839, 11059, 1439, 9133, 48973, 1531, 6221, 1451, 829, 2383, 153319, 3779, 19469, 52189, 3313, 5021, 977, 6833, 55501, 10459, 1543, 7043, 8941, 21341, 57193, 1163, 907, 175003, 58909, 3797, 2281, 11317, 60649, 22853, 1087, 7691, 185467, 4801, 5879, 189019, 190807, 6047, 3187, 1913, 1583, 3571, 205399, 8597, 3253, 69709, 16231, 8831, 26729, 71593, 216679, 2267, 2111, 2371, 224359, 14083, 28409, 9551, 230203, 14449, 5953, 3643, 234139, 12637, 5023, 1013, 30389, 81373, 2357, 5237, 248167, 83401, 254299, 85453, 16087, 2927, 32693, 6733, 16477, 4339, 33479, 1907, 271003, 273127, 17137, 91753, 2657, 14713, 17539, 93901, 8837, 9157, 22003, 1889, 9041, 6073, 1289, 36713, 98269, 297019, 6211, 299239, 303703, 305947, 2399, 5407, 19333, 310459, 12983, 312727, 39233, 19759, 3271, 5647, 7907, 3389, 326503, 20479, 109609, 331159, 1997, 1609, 111949, 2633, 338203, 3511, 42719, 1447, 7219, 347707, 43613, 43913, 18553, 7369, 44819, 359767, 362203, 1759, 3659, 46349, 47279, 126493, 47591, 29383, 384487, 24109, 129001, 48533, 389527, 392059, 4243, 1277, 50123, 134089, 12611, 8461, 6679, 10513, 51413, 412603, 8623, 1627, 139273, 52391, 420439, 17573, 423067, 3461, 2053, 2393, 17903, 430999, 4157, 4663, 4003, 5557, 2897, 147229, 34183, 4643, 447079, 28027, 56393, 4229, 18911, 455227, 28537, 7177, 2663, 1481, 463447, 8179, 468967, 10037, 59141, 2593, 9973, 36931, 160969, 60539, 37363, 20297, 488539, 163789, 1621, 1559, 497047, 4793, 31333, 4909, 169501, 63743, 511387, 2671, 4993, 32233, 40231, 32779, 175309, 16481, 12899, 531799, 178249, 537703, 13187, 181213, 68141, 546619, 549607, 69263, 29401, 14401, 564667, 18313, 71153, 190249, 3851, 3169, 5591, 3257, 6089, 586087, 1933, 1801, 4261, 37309, 199501, 46279, 604759, 3989, 2089, 13001, 12763, 19813, 10831, 77369, 623719, 19541, 2069, 26321, 633307, 19841, 39883, 639739, 26723, 49459, 4583, 2131, 2861, 3391, 652699, 5333, 6323, 1721, 2341, 7159, 4391, 16319, 27947, 672379, 2851, 2749, 682327, 17581, 688999, 14389, 692347, 86753, 231901, 36793, 702439, 5501, 235273, 6803, 2617, 712603, 11161, 7699, 719419, 30047, 55603, 2221, 56131, 733147, 245533, 2251, 740059, 7727, 39133, 3583, 750487, 2411, 753979, 2837, 11863, 2689, 40237, 95783, 24889, 16111, 97553, 12823, 16333, 5653, 24611, 2459, 7607, 792919, 33113, 19427,

7. Distribution of the primes

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

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)
11010461.0000000.4000001.0000000.0000000.0000000.000000
21007717600.7700000.1700000.7700007.7000004.25000010.000000
31.0005661284380.5660000.1280000.5660007.3506497.5294127.300000
410.0006.5029275.5750.6502000.0927000.65020011.4876337.24218812.728311
5100.00066.8667.34559.5210.6686600.0734500.66866010.2839137.92340910.676413
61.000.000674.87160.122614.7490.6748710.0601220.67487110.0928878.18543210.328271
710.000.0006.777.310507.3316.269.9790.6777310.0507330.67773110.0423788.43835810.199250
8100.000.00067.963.6144.396.61063.567.0040.6796360.0439660.67963610.0281118.66615710.138312
91.000.000.000681.127.50038.808.101642.319.3990.6811270.0388080.68112710.0219438.82682310.104605
1010.000.000.0006.823.211.318347.315.5906.475.895.7280.6823210.0347320.68232110.0175258.94956410.082048


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
388441.0000000.5000000.5000001.6000002.0000001.333333
416155100.9375000.3125000.6250001.8750001.2500002.500000
532287210.8750000.2187500.6562501.8666671.4000002.100000
6645012380.7812500.1875000.5937501.7857141.7142861.809524
71287717600.6015620.1328120.4687501.5400001.4166671.578947
825610528770.4101560.1093750.3007811.3636361.6470591.283333
9512254661880.4960940.1289060.3671882.4190482.3571432.441558
101.0245781304480.5644530.1269530.4375002.2755911.9696972.382979
112.0481.2422281.0140.6064450.1113280.4951172.1487891.7538462.263393
124.0962.5934202.1730.6330570.1025390.5305182.0877621.8421052.142998
138.1925.2907884.5020.6457520.0961910.5495612.0401081.8761902.071790
1416.38410.7411.4709.2710.6555790.0897220.5658572.0304351.8654822.059307
1532.76821.7012.71518.9860.6622620.0828550.5794072.0203891.8469392.047891
1665.53643.6565.03138.6250.6661380.0767670.5893712.0117041.8530392.034394
17131.07287.7989.35678.4420.6698460.0713810.5984652.0111321.8596702.030861
18262.144176.23417.596158.6380.6722790.0671230.6051562.0072671.8807182.022361
19524.288353.14333.267319.8760.6735670.0634520.6101152.0038301.8906002.016390
201.048.576707.89662.757645.1390.6751020.0598500.6152522.0045591.8864642.016841
212.097.1521.417.470118.7321.298.7380.6759020.0566160.6192872.0023701.8919322.013113
224.194.3042.839.076225.7682.613.3080.6768880.0538270.6230612.0029181.9014922.012190
238.388.6085.683.776430.5835.253.1930.6775590.0513290.6262292.0019811.9071922.010170
2416.777.21611.379.150822.83810.556.3120.6782500.0490450.6292052.0020411.9109862.009504
2533.554.43222.777.3381.574.35721.202.9810.6788180.0469190.6318982.0016731.9133262.008559
2667.108.86445.591.3193.020.14042.571.1790.6793640.0450040.6343602.0016091.9183322.007792
27134.217.72891.250.3245.802.08585.448.2390.6798680.0432290.6366392.0014841.9211312.007185
28268.435.456182.621.49111.165.430171.456.0610.6803180.0415940.6387242.0013241.9243822.006549
29536.870.912365.480.72721.517.917343.962.8100.6807610.0400800.6406812.0013021.9271912.006128
301.073.741.824731.398.79141.519.335689.879.4560.6811680.0386680.6425002.0011971.9295242.005680
312.147.483.6481.463.620.91980.213.5031.383.407.4160.6815520.0373520.6441992.0011261.9319552.005289
324.294.967.2962.928.802.944155.152.0862.773.650.8580.6819150.0361240.6457912.0010671.9342392.004942
338.589.934.5925.860.478.477300.427.2025.560.051.2750.6822490.0349740.6472752.0009811.9363402.004596
3417.179.869.18411.726.418.467582.317.28211.144.101.1850.6825670.0338950.6486722.0009321.9382982.004316


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
122110011
242110011
384131021
4165142021
5327163031
664121117041
7128171169071
82562812169577
9512665016924726
101.02413011416956758
112.0482282121691027110
124.0964204041691977207
138.1927887721693787394
1416.3841.4701.4541697187736
1532.7682.7152.6991691.34471.355
1665.5365.0315.0151692.50772.508
17131.0729.3569.3401694.69074.650
18262.14417.59617.5801698.84278.738
19524.28833.26733.25116916.644716.607
201.048.57662.75762.74116931.435731.306
212.097.152118.732118.71616959.398759.318
224.194.304225.768225.752169112.9707112.782
238.388.608430.583430.567169215.2907215.277
2416.777.216822.838822.822169411.2297411.593
2533.554.4321.574.3571.574.341169786.7307787.611
2667.108.8643.020.1403.020.1241691.509.72671.510.398
27134.217.7285.802.0855.802.0691692.900.83372.901.236
28268.435.45611.165.43011.165.4141695.581.87375.583.541
29536.870.91221.517.91721.517.90116910.757.121710.760.780
301.073.741.82441.519.33541.519.31916920.758.985720.760.334
312.147.483.64880.213.50380.213.48716940.107.080740.106.407
324.294.967.296155.152.086155.152.07016977.576.638777.575.432
338.589.934.592300.427.202300.427.186169150.211.7327150.215.454
3417.179.869.184582.317.282582.317.266169291.157.2767291.159.990


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
243110210
384210220
41610362332
532217134755
66438132481488
712860233613191216
825677354120221619
9512188979047485340
101.02444824520211510313298
112.0481.014540473273235285221
124.0962.1731.1501.022598483592500
138.1924.5022.3612.1401.2461.0101.2191.027
1416.3849.2714.8444.4262.5062.1312.5052.129
1532.76818.9869.7879.1985.0984.3895.1034.396
1665.53638.62519.94818.67610.2099.06010.3309.026
17131.07278.44240.29538.14620.78718.34620.87118.438
18262.144158.63881.35877.27941.85437.43941.79837.547
19524.288319.876163.678156.19783.98775.76484.34775.778
201.048.576645.139329.891315.247168.875153.531169.181153.552
212.097.1521.298.738663.599635.138339.782309.689339.810309.457
224.194.3042.613.3081.333.3271.279.980681.063625.240682.606624.399
238.388.6085.253.1932.676.6162.576.5761.366.7191.259.0841.369.0301.258.360
2416.777.21610.556.3125.373.0065.183.3052.740.7932.535.0642.744.0102.536.445
2533.554.43221.202.98110.784.09210.418.8885.496.0735.101.6505.501.1645.104.094
2667.108.86442.571.17921.639.65120.931.52711.020.55410.258.00211.026.14310.266.480
27134.217.72885.448.23943.405.36242.042.87622.087.41020.627.82122.095.01920.637.989
28268.435.456171.456.06187.041.02284.415.03844.258.56341.464.34544.264.47741.468.676
29536.870.912343.962.810174.522.964169.439.84588.680.98783.296.56988.680.70083.304.554
301.073.741.824689.879.456349.854.875340.024.580177.656.503167.290.539177.651.237167.281.177
312.147.483.6481.383.407.416701.217.576682.189.839355.859.938335.857.008355.842.688335.847.782
324.294.967.2962.773.650.8581.405.242.9291.368.407.928712.757.472674.076.166712.747.716674.069.504
338.589.934.5925.560.051.2752.815.709.4022.744.341.8721.427.418.3321.352.566.3251.427.468.6291.352.597.989
3417.179.869.18411.144.101.1855.641.323.2065.502.777.9782.858.446.2502.713.526.5122.858.575.7372.713.552.686


8. Check for existing Integer Sequences by OEIS

Found in Database : 103, 3, 293, 61, 227, 109, 1061, 13, 1433, 101, 599, 19, 2153, 97, 41, 167, 947, 47, 1, 139,
Found in Database : 103, 3, 293, 61, 227, 109, 1061, 13, 1433, 101, 599, 19, 2153, 97, 41, 167, 947, 47, 139, 269, 457, 31, 317, 89, 4421, 571, 1571, 607, 263, 107, 5273, 1847, 709, 5801, 6053, 193,
Found in Database : 3, 13, 19, 31, 41, 47, 61, 79, 89, 97, 101, 103, 107, 109, 139, 149,