Inhaltsverzeichnis

Development of
Algorithmic Constructions

00:29:08
Deutsch
20.Apr 2024

Polynom = x^2-230x-3

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) = 3 = 3
f(1) = 29 = 29
f(2) = 459 = 3*3*3*17
f(3) = 171 = 3*3*19
f(4) = 907 = 907
f(5) = 141 = 3*47
f(6) = 1347 = 3*449
f(7) = 391 = 17*23
f(8) = 1779 = 3*593
f(9) = 249 = 3*83
f(10) = 2203 = 2203
f(11) = 603 = 3*3*67
f(12) = 2619 = 3*3*3*97
f(13) = 353 = 353
f(14) = 3027 = 3*1009
f(15) = 807 = 3*269
f(16) = 3427 = 23*149
f(17) = 453 = 3*151
f(18) = 3819 = 3*19*67
f(19) = 1003 = 17*59
f(20) = 4203 = 3*3*467
f(21) = 549 = 3*3*61
f(22) = 4579 = 19*241
f(23) = 1191 = 3*397
f(24) = 4947 = 3*17*97
f(25) = 641 = 641
f(26) = 5307 = 3*29*61
f(27) = 1371 = 3*457
f(28) = 5659 = 5659
f(29) = 729 = 3*3*3*3*3*3
f(30) = 6003 = 3*3*23*29
f(31) = 1543 = 1543
f(32) = 6339 = 3*2113
f(33) = 813 = 3*271
f(34) = 6667 = 59*113
f(35) = 1707 = 3*569
f(36) = 6987 = 3*17*137
f(37) = 893 = 19*47
f(38) = 7299 = 3*3*811
f(39) = 1863 = 3*3*3*3*23
f(40) = 7603 = 7603
f(41) = 969 = 3*17*19
f(42) = 7899 = 3*2633
f(43) = 2011 = 2011
f(44) = 8187 = 3*2729
f(45) = 1041 = 3*347
f(46) = 8467 = 8467
f(47) = 2151 = 3*3*239
f(48) = 8739 = 3*3*971
f(49) = 1109 = 1109
f(50) = 9003 = 3*3001
f(51) = 2283 = 3*761
f(52) = 9259 = 47*197
f(53) = 1173 = 3*17*23
f(54) = 9507 = 3*3169
f(55) = 2407 = 29*83
f(56) = 9747 = 3*3*3*19*19
f(57) = 1233 = 3*3*137
f(58) = 9979 = 17*587
f(59) = 2523 = 3*29*29
f(60) = 10203 = 3*19*179
f(61) = 1289 = 1289
f(62) = 10419 = 3*23*151
f(63) = 2631 = 3*877
f(64) = 10627 = 10627
f(65) = 1341 = 3*3*149
f(66) = 10827 = 3*3*3*401
f(67) = 2731 = 2731
f(68) = 11019 = 3*3673
f(69) = 1389 = 3*463
f(70) = 11203 = 17*659
f(71) = 2823 = 3*941
f(72) = 11379 = 3*3793
f(73) = 1433 = 1433
f(74) = 11547 = 3*3*1283
f(75) = 2907 = 3*3*17*19
f(76) = 11707 = 23*509
f(77) = 1473 = 3*491
f(78) = 11859 = 3*59*67
f(79) = 2983 = 19*157
f(80) = 12003 = 3*4001
f(81) = 1509 = 3*503
f(82) = 12139 = 61*199
f(83) = 3051 = 3*3*3*113
f(84) = 12267 = 3*3*29*47
f(85) = 1541 = 23*67
f(86) = 12387 = 3*4129
f(87) = 3111 = 3*17*61
f(88) = 12499 = 29*431
f(89) = 1569 = 3*523
f(90) = 12603 = 3*4201
f(91) = 3163 = 3163
f(92) = 12699 = 3*3*17*83
f(93) = 1593 = 3*3*3*59
f(94) = 12787 = 19*673
f(95) = 3207 = 3*1069
f(96) = 12867 = 3*4289
f(97) = 1613 = 1613
f(98) = 12939 = 3*19*227
f(99) = 3243 = 3*23*47
f(100) = 13003 = 13003

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-230x-3

f(0)=3
f(1)=29
f(2)=17
f(3)=19
f(4)=907
f(5)=47
f(6)=449
f(7)=23
f(8)=593
f(9)=83
f(10)=2203
f(11)=67
f(12)=97
f(13)=353
f(14)=1009
f(15)=269
f(16)=149
f(17)=151
f(18)=1
f(19)=59
f(20)=467
f(21)=61
f(22)=241
f(23)=397
f(24)=1
f(25)=641
f(26)=1
f(27)=457
f(28)=5659
f(29)=1
f(30)=1
f(31)=1543
f(32)=2113
f(33)=271
f(34)=113
f(35)=569
f(36)=137
f(37)=1
f(38)=811
f(39)=1
f(40)=7603
f(41)=1
f(42)=2633
f(43)=2011
f(44)=2729
f(45)=347
f(46)=8467
f(47)=239
f(48)=971
f(49)=1109
f(50)=3001
f(51)=761
f(52)=197
f(53)=1
f(54)=3169
f(55)=1
f(56)=1
f(57)=1
f(58)=587
f(59)=1
f(60)=179
f(61)=1289
f(62)=1
f(63)=877
f(64)=10627
f(65)=1
f(66)=401
f(67)=2731
f(68)=3673
f(69)=463
f(70)=659
f(71)=941
f(72)=3793
f(73)=1433
f(74)=1283
f(75)=1
f(76)=509
f(77)=491
f(78)=1
f(79)=157
f(80)=4001
f(81)=503
f(82)=199
f(83)=1
f(84)=1
f(85)=1
f(86)=4129
f(87)=1
f(88)=431
f(89)=523
f(90)=4201
f(91)=3163
f(92)=1
f(93)=1
f(94)=673
f(95)=1069
f(96)=4289
f(97)=1613
f(98)=227
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-230x-3 could be written as f(y)= y^2-13228 with x=y+115

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-115
f'(x)>2x-231 with x > 115

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

3, 29, 17, 19, 907, 47, 449, 23, 593, 83, 2203, 67, 97, 353, 1009, 269, 149, 151, 1, 59, 467, 61, 241, 397, 1, 641, 1, 457, 5659, 1, 1, 1543, 2113, 271, 113, 569, 137, 1, 811, 1, 7603, 1, 2633, 2011, 2729, 347, 8467, 239, 971, 1109, 3001, 761, 197, 1, 3169, 1, 1, 1, 587, 1, 179, 1289, 1, 877, 10627, 1, 401, 2731, 3673, 463, 659, 941, 3793, 1433, 1283, 1, 509, 491, 1, 157, 4001, 503, 199, 1, 1, 1, 4129, 1, 431, 523, 4201, 3163, 1, 1, 673, 1069, 4289, 1613, 227, 1, 13003, 181, 1451, 3271, 257, 547, 13147, 1097, 191, 1, 163, 367, 13219, 1, 4409, 3307, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 461, 1, 311, 293, 1, 1, 1901, 1, 1, 331, 967, 263, 3413, 1, 1, 1049, 1487, 1, 1, 439, 1847, 727, 677, 1, 6653, 1, 1, 1877, 1, 337, 1, 1, 997, 1, 3191, 823, 10181, 1, 1, 2777, 1, 1, 709, 1031, 4231, 1627, 4447, 1, 13997, 1, 1, 1, 1, 653, 1, 1, 1, 2131, 1933, 1, 787, 769, 6271, 4793, 383, 829, 20261, 1, 2333, 2671, 7247, 1, 1, 953, 1, 1, 1, 1, 1, 2099, 8527, 1, 1, 1, 937, 1, 3109, 1, 1, 1217, 1559, 2503, 10151, 1, 1, 881, 32141, 1, 647, 1, 11287, 1429, 739, 977, 1319, 4507, 1, 3079, 37397, 1, 751, 9689, 4357, 1, 599, 1, 13687, 1, 13999, 3539, 1867, 1, 4877, 11093, 14951, 1889, 45821, 1, 821, 1, 5309, 1, 1, 2053, 1, 12569, 16927, 2137, 51797, 1453, 5869, 1, 619, 1, 3229, 2309, 643, 743, 2111, 1, 58061, 1, 857, 7459, 20071, 1, 1039, 859, 2311, 15737, 1, 1, 64613, 5431, 21911, 8287, 1, 1873, 701, 2857, 1213, 601, 23431, 2953, 71453, 1, 8069, 9151, 1447, 6199, 773, 1, 25391, 1129, 8597, 1, 1, 6599, 1, 1, 1, 6803, 991, 1151, 9277, 1237, 1, 3557, 3739, 7219, 1, 10987, 1093, 2477, 1, 3769, 30367, 22937, 1621, 3877, 93701, 2621, 1, 11959, 1, 1, 1601, 1, 32999, 24917, 11149, 1, 101693, 1, 34351, 12967, 34807, 1, 2251, 1, 11909, 1, 36191, 1, 6469, 1, 1, 14011, 1, 1051, 114221, 4789, 2029, 1, 1697, 4909, 1, 3313, 1, 15091, 40487, 1, 1, 5153, 1, 1, 4663, 1759, 1, 1, 42967, 853, 1499, 1, 131933, 1, 4943, 1459, 2647, 5657, 136541, 11443, 1, 17359, 1, 1, 141221, 1, 47599, 35897, 1, 1, 2393, 1, 863, 1091, 49727, 1, 150797, 6317, 1, 1321, 17117, 1, 155693, 13043, 1, 1163, 52999, 1, 1, 2243, 1061, 1, 2377, 6869, 165701, 13879, 55799, 21031, 6263, 4721, 170813, 1, 1, 1, 2003, 7297, 1, 1, 1, 1, 1, 15031, 181253, 7589, 61007, 1999, 20533, 2579, 186581, 919, 62791, 1, 63391, 15923, 1, 1, 1, 48677, 1, 1, 197453, 1, 66431, 1, 22349, 1871, 11941, 1, 2969, 51449, 1, 1, 1, 5821, 1231, 26431, 1, 1, 11279, 8969, 1, 54293, 2693, 1, 1, 1, 73999, 1, 4391, 18743, 1, 1, 1, 3011, 76607, 1, 7993, 1021, 1, 29347, 1, 6577, 5059, 9949, 1, 3541, 80599, 1, 1553, 2267, 1, 30859, 4349, 20743, 10867, 10457, 4421, 1, 28229, 1181, 256133, 1, 1, 1409, 86767, 1, 1, 3659, 29389, 1, 1, 1, 268733, 22483, 1, 1789, 10111, 1, 1, 1, 92431, 69593, 93151, 11689, 281621, 7853, 1, 1, 95327, 1, 1, 1, 1, 72869, 1, 4079, 17341, 24659, 1, 1, 4337, 25031, 301493, 1, 33749, 1, 101999, 1, 18133, 1, 103511, 38959, 34757, 1, 4703, 13177, 1, 1, 1747, 1, 322013, 1, 36037, 1, 108887, 1607, 1, 13757, 5813, 1, 1, 4651, 1, 1, 112807, 42451, 2417, 28499, 3037, 4783, 12799, 86693, 6823, 14549, 350381, 1, 5113, 1, 1361, 9901, 357653, 1, 4139, 1531, 120847, 1, 364997, 3391, 40829, 2711, 123311, 30931, 372413, 15569, 7351, 1, 2207, 1753, 1, 1381, 6709, 1, 128311, 32183, 5783, 5399, 2549, 3373, 5689, 1, 395093, 1, 1597, 1, 1, 1, 402797, 1, 1, 5351, 1, 17053, 17851, 1, 5101, 1, 138599, 34759, 1, 17489, 140351, 4591, 1, 5903, 1, 1, 4931, 53791, 7573, 36083, 1, 2017, 1, 109589, 1511, 1, 442397, 36979, 148367, 55807, 49757, 4159, 450533, 1, 6569, 113657, 1567, 1, 5527, 12781, 1, 57859, 9103, 38803, 467021, 1, 1, 117797, 1, 1, 7793, 1, 8389, 1, 9431, 1, 25463, 1, 1, 7177, 163151, 1, 492293, 41143, 165047, 62071, 55333, 13873, 500861, 20929, 167911, 1, 3593, 21169, 17569, 1, 1, 64231, 5923, 43063, 22531, 1, 1, 130649, 58229, 1, 526997, 1, 10391, 1, 9349, 44531, 1723, 1, 1, 135077, 3061, 22637, 544781, 45523, 1, 68659, 20399, 1, 1, 1, 185599, 4813, 1, 1, 1, 1, 20959, 3733, 1, 1, 9377, 1, 2861, 3067, 64237, 1, 1, 48563, 194767, 1, 8513, 2887, 31079, 2741, 65957, 148793, 1, 1, 12763, 50119, 1, 75571, 67349, 1, 1, 25453, 204151, 153509, 12071, 25717, 4153, 1, 69109, 3389, 208391, 2749, 628373, 26249, 210527, 2683, 1, 8839, 7687, 1, 213751, 1, 214831, 2341, 647741, 1, 1, 1, 218087, 27329, 34607, 1, 1, 4871, 1, 18493, 1, 1, 13151, 168089, 1, 1, 677333, 6287, 75629, 1, 1, 57139, 687341, 1, 1, 1, 1, 3221, 24049, 1, 233599, 87811, 234727, 1, 707573, 9851, 1, 178169, 1, 29837, 717797, 3527, 12653, 3929, 26839, 20177, 42829, 1, 4133, 183317, 1, 30697, 1, 1, 27479, 92959, 1, 1, 44053, 31277, 250799, 9923, 1787, 1, 7829, 1, 11057, 1, 255487, 64019,

6. Sequence of the polynom (only primes)

3, 29, 17, 19, 907, 47, 449, 23, 593, 83, 2203, 67, 97, 353, 1009, 269, 149, 151, 59, 467, 61, 241, 397, 641, 457, 5659, 1543, 2113, 271, 113, 569, 137, 811, 7603, 2633, 2011, 2729, 347, 8467, 239, 971, 1109, 3001, 761, 197, 3169, 587, 179, 1289, 877, 10627, 401, 2731, 3673, 463, 659, 941, 3793, 1433, 1283, 509, 491, 157, 4001, 503, 199, 4129, 431, 523, 4201, 3163, 673, 1069, 4289, 1613, 227, 13003, 181, 1451, 3271, 257, 547, 13147, 1097, 191, 163, 367, 13219, 4409, 3307, 461, 311, 293, 1901, 331, 967, 263, 3413, 1049, 1487, 439, 1847, 727, 677, 6653, 1877, 337, 997, 3191, 823, 10181, 2777, 709, 1031, 4231, 1627, 4447, 13997, 653, 2131, 1933, 787, 769, 6271, 4793, 383, 829, 20261, 2333, 2671, 7247, 953, 2099, 8527, 937, 3109, 1217, 1559, 2503, 10151, 881, 32141, 647, 11287, 1429, 739, 977, 1319, 4507, 3079, 37397, 751, 9689, 4357, 599, 13687, 13999, 3539, 1867, 4877, 11093, 14951, 1889, 45821, 821, 5309, 2053, 12569, 16927, 2137, 51797, 1453, 5869, 619, 3229, 2309, 643, 743, 2111, 58061, 857, 7459, 20071, 1039, 859, 2311, 15737, 64613, 5431, 21911, 8287, 1873, 701, 2857, 1213, 601, 23431, 2953, 71453, 8069, 9151, 1447, 6199, 773, 25391, 1129, 8597, 6599, 6803, 991, 1151, 9277, 1237, 3557, 3739, 7219, 10987, 1093, 2477, 3769, 30367, 22937, 1621, 3877, 93701, 2621, 11959, 1601, 32999, 24917, 11149, 101693, 34351, 12967, 34807, 2251, 11909, 36191, 6469, 14011, 1051, 114221, 4789, 2029, 1697, 4909, 3313, 15091, 40487, 5153, 4663, 1759, 42967, 853, 1499, 131933, 4943, 1459, 2647, 5657, 136541, 11443, 17359, 141221, 47599, 35897, 2393, 863, 1091, 49727, 150797, 6317, 1321, 17117, 155693, 13043, 1163, 52999, 2243, 1061, 2377, 6869, 165701, 13879, 55799, 21031, 6263, 4721, 170813, 2003, 7297, 15031, 181253, 7589, 61007, 1999, 20533, 2579, 186581, 919, 62791, 63391, 15923, 48677, 197453, 66431, 22349, 1871, 11941, 2969, 51449, 5821, 1231, 26431, 11279, 8969, 54293, 2693, 73999, 4391, 18743, 3011, 76607, 7993, 1021, 29347, 6577, 5059, 9949, 3541, 80599, 1553, 2267, 30859, 4349, 20743, 10867, 10457, 4421, 28229, 1181, 256133, 1409, 86767, 3659, 29389, 268733, 22483, 1789, 10111, 92431, 69593, 93151, 11689, 281621, 7853, 95327, 72869, 4079, 17341, 24659, 4337, 25031, 301493, 33749, 101999, 18133, 103511, 38959, 34757, 4703, 13177, 1747, 322013, 36037, 108887, 1607, 13757, 5813, 4651, 112807, 42451, 2417, 28499, 3037, 4783, 12799, 86693, 6823, 14549, 350381, 5113, 1361, 9901, 357653, 4139, 1531, 120847, 364997, 3391, 40829, 2711, 123311, 30931, 372413, 15569, 7351, 2207, 1753, 1381, 6709, 128311, 32183, 5783, 5399, 2549, 3373, 5689, 395093, 1597, 402797, 5351, 17053, 17851, 5101, 138599, 34759, 17489, 140351, 4591, 5903, 4931, 53791, 7573, 36083, 2017, 109589, 1511, 442397, 36979, 148367, 55807, 49757, 4159, 450533, 6569, 113657, 1567, 5527, 12781, 57859, 9103, 38803, 467021, 117797, 7793, 8389, 9431, 25463, 7177, 163151, 492293, 41143, 165047, 62071, 55333, 13873, 500861, 20929, 167911, 3593, 21169, 17569, 64231, 5923, 43063, 22531, 130649, 58229, 526997, 10391, 9349, 44531, 1723, 135077, 3061, 22637, 544781, 45523, 68659, 20399, 185599, 4813, 20959, 3733, 9377, 2861, 3067, 64237, 48563, 194767, 8513, 2887, 31079, 2741, 65957, 148793, 12763, 50119, 75571, 67349, 25453, 204151, 153509, 12071, 25717, 4153, 69109, 3389, 208391, 2749, 628373, 26249, 210527, 2683, 8839, 7687, 213751, 214831, 2341, 647741, 218087, 27329, 34607, 4871, 18493, 13151, 168089, 677333, 6287, 75629, 57139, 687341, 3221, 24049, 233599, 87811, 234727, 707573, 9851, 178169, 29837, 717797, 3527, 12653, 3929, 26839, 20177, 42829, 4133, 183317, 30697, 27479, 92959, 44053, 31277, 250799, 9923, 1787, 7829, 11057, 255487, 64019,

7. Distribution of the primes

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

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.4000000.7000000.0000000.0000000.000000
21007619570.7600000.1900000.5700006.9090914.7500008.142858
31.0005431304130.5430000.1300000.4130007.1447376.8421057.245614
410.0006.3331.0095.3240.6333000.1009000.53240011.6629847.76153912.891041
5100.00065.8717.64258.2290.6587100.0764200.58229010.4012327.57383510.937078
61.000.000666.32562.111604.2140.6663250.0621110.60421410.1156048.12758410.376513
710.000.0006.704.083522.4676.181.6160.6704080.0522470.61816210.0612818.41182710.230839
8100.000.00067.328.1474.507.07762.821.0700.6732810.0450710.62821110.0428568.62653010.162564
91.000.000.000675.458.72639.630.775635.827.9510.6754590.0396310.63582810.0323398.79301110.121253
1010.000.000.0006.772.178.194353.763.6956.418.414.4990.6772180.0353760.64184110.0260438.92648910.094578


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
245321.2500000.7500000.5000001.6666671.5000002.000000
389361.1250000.3750000.7500001.8000001.0000003.000000
416175121.0625000.3125000.7500001.8888891.6666672.000000
532288200.8750000.2500000.6250001.6470591.6000001.666667
6645114370.7968750.2187500.5781251.8214291.7500001.850000
71288623630.6718750.1796880.4921881.6862751.6428571.702703
82569528670.3710940.1093750.2617191.1046511.2173911.063492
9512245671780.4785160.1308590.3476562.5789472.3928572.656716
101.0245541334210.5410160.1298830.4111332.2612251.9850752.365169
112.0481.2032549490.5874020.1240230.4633792.1714801.9097742.254157
124.0962.5234652.0580.6159670.1135250.5024412.0972571.8307092.168598
138.1925.1768444.3320.6318360.1030270.5288092.0515261.8150542.104956
1416.38410.5461.5558.9910.6436770.0949100.5487672.0374811.8424172.075485
1532.76821.3292.84018.4890.6509090.0866700.5642402.0224731.8263672.056390
1665.53643.0495.21737.8320.6568760.0796050.5772712.0183321.8369722.046190
17131.07286.3849.79376.5910.6590580.0747150.5843432.0066441.8771322.024503
18262.144173.64718.352155.2950.6624110.0700070.5924032.0101751.8739922.027588
19524.288348.44634.438314.0080.6646080.0656850.5989232.0066341.8765262.022010
201.048.576698.67764.882633.7950.6663100.0618760.6044342.0051231.8840232.018404
212.097.1521.400.732122.9331.277.7990.6679210.0586190.6093022.0048351.8947172.016108
224.194.3042.806.674233.4282.573.2460.6691630.0556540.6135102.0037201.8988232.013811
238.388.6085.621.894443.7035.178.1910.6701820.0528940.6172882.0030451.9008132.012319
2416.777.21611.260.201845.71710.414.4840.6711600.0504090.6207522.0029191.9060432.011220
2533.554.43222.550.5951.617.10820.933.4870.6720600.0481940.6238672.0026811.9121152.010036
2667.108.86445.152.3293.099.00642.053.3230.6728220.0461790.6266432.0022681.9163882.008902
27134.217.72890.405.9125.944.37484.461.5380.6735770.0442890.6292872.0022431.9181552.008439
28268.435.456180.997.84711.424.570169.573.2770.6742690.0425600.6317102.0020581.9219132.007698
29536.870.912362.340.56021.992.620340.347.9400.6749120.0409640.6339472.0019051.9250282.007085
301.073.741.824725.331.98842.395.685682.936.3030.6755180.0394840.6360342.0017961.9277232.006583
312.147.483.6481.451.873.90781.841.0641.370.032.8430.6760810.0381100.6379712.0016681.9304102.006092
324.294.967.2962.906.043.258158.176.9772.747.866.2810.6766160.0368280.6397872.0015811.9327342.005694
338.589.934.5925.816.363.298306.048.9215.510.314.3770.6771140.0356290.6414852.0014721.9348512.005306
3417.179.869.18411.640.787.135592.815.47611.047.971.6590.6775830.0345060.6430772.0013861.9369962.004962


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
122010110
243110210
383110210
4165221310
5328432411
66414853821
71282315741432
825628161151463
95126729371221259
101.024133458720296717
112.04825473180374314331
124.096465136328607926858
138.192844242601106129495114
1416.3841.5554421.112195227917216
1532.7682.8408032.0363704191.666385
1665.5365.2171.4563.7606487383.112719
17131.0729.7932.6767.1161.2411.3475.8751.330
18262.14418.3524.89013.4612.3292.45911.1322.432
19524.28834.4389.07425.3634.4064.58520.9574.490
201.048.57664.88217.01247.8698.2848.55539.5858.458
212.097.152122.93332.14990.78315.57116.09575.21216.055
224.194.304233.42861.070172.35729.58330.708142.77430.363
238.388.608443.703115.763327.93956.31157.939271.62857.825
2416.777.216845.717219.923625.793107.437109.950518.356109.974
2533.554.4321.617.108420.2861.196.821205.599210.434991.222209.853
2667.108.8643.099.006803.8902.295.115393.336401.9591.901.779401.932
27134.217.7285.944.3741.539.5344.404.839753.637769.8553.651.202769.680
28268.435.45611.424.5702.955.7168.468.8531.447.7981.477.6227.021.0551.478.095
29536.870.91221.992.6205.682.44816.310.1712.786.2332.841.61113.523.9382.840.838
301.073.741.82442.395.68510.940.16431.455.5205.369.7965.471.07626.085.7245.469.089
312.147.483.64881.841.06421.092.81960.748.24410.361.10310.547.10150.387.14110.545.719
324.294.967.296158.176.97740.723.899117.453.07720.016.80320.364.98897.436.27420.358.912
338.589.934.592306.048.92178.716.384227.332.53638.713.29239.360.927188.619.24439.355.458
3417.179.869.184592.815.476152.332.878440.482.59774.954.53676.173.575365.528.06176.159.304


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
121011000
242111100
386153102
41612485322
5322010108543
664371522161065
71286326372717910
825667274027171013
9512178968246314457
101.0244212182038771113150
112.048949480469187171242349
124.0962.0581.061997401412531714
138.1924.3322.2142.1188608681.1021.502
1416.3848.9914.5684.4231.8081.8232.3013.059
1532.76818.4899.4689.0213.8283.8144.7626.085
1665.53637.83219.28918.5437.9897.9199.69012.234
17131.07276.59138.77737.81416.31116.32819.59924.353
18262.144155.29578.71076.58533.62233.75239.37348.548
19524.288314.008159.005155.00368.67468.97379.49396.868
201.048.576633.795320.980312.815139.978140.151160.453193.213
212.097.1521.277.799646.456631.343284.796284.441323.205385.357
224.194.3042.573.2461.300.4261.272.820576.986576.836651.266768.158
238.388.6085.178.1912.614.6092.563.5821.169.4291.168.4131.309.5121.530.837
2416.777.21610.414.4845.255.5925.158.8922.364.8172.363.8982.633.1723.052.597
2533.554.43220.933.48710.559.97210.373.5154.781.1154.774.9435.288.7446.088.685
2667.108.86442.053.32321.207.38820.845.9359.643.8779.637.00510.618.82812.153.613
27134.217.72884.461.53842.580.42541.881.11319.449.39119.434.78421.317.58824.259.775
28268.435.456169.573.27785.460.86484.112.41339.197.23139.161.36142.775.53248.439.153
29536.870.912340.347.940171.486.225168.861.71578.943.16178.873.91885.816.50396.714.358
301.073.741.824682.936.303343.976.613338.959.690158.898.006158.766.315172.119.682193.152.300
312.147.483.6481.370.032.843689.852.761680.180.082319.669.028319.421.954345.172.778385.769.083
324.294.967.2962.747.866.2811.383.275.1231.364.591.158642.843.019642.360.810692.082.318770.580.134
338.589.934.5925.510.314.3772.773.195.5742.737.118.8031.292.199.5341.291.394.1401.387.388.5001.539.332.203
3417.179.869.18411.047.971.6595.558.916.7355.489.054.9242.596.643.0662.595.216.3412.780.855.5063.075.256.746


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 29, 17, 19, 907, 47, 449, 23, 593, 83, 2203, 67, 97, 353, 1009, 269, 149, 151, 1, 59,
Found in Database : 3, 29, 17, 19, 907, 47, 449, 23, 593, 83, 2203, 67, 97, 353, 1009, 269, 149, 151, 59, 467, 61, 241, 397, 641, 457, 5659, 1543, 2113, 271, 113, 569, 137, 811,
Found in Database : 3, 17, 19, 23, 29, 47, 59, 61, 67, 83, 97, 113, 137, 149,