Inhaltsverzeichnis

Development of
Algorithmic Constructions

10:19:02
Deutsch
19.Apr 2024

Polynom = x^2+43

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) = 43 = 43
f(1) = 11 = 11
f(2) = 47 = 47
f(3) = 13 = 13
f(4) = 59 = 59
f(5) = 17 = 17
f(6) = 79 = 79
f(7) = 23 = 23
f(8) = 107 = 107
f(9) = 31 = 31
f(10) = 143 = 11*13
f(11) = 41 = 41
f(12) = 187 = 11*17
f(13) = 53 = 53
f(14) = 239 = 239
f(15) = 67 = 67
f(16) = 299 = 13*23
f(17) = 83 = 83
f(18) = 367 = 367
f(19) = 101 = 101
f(20) = 443 = 443
f(21) = 121 = 11*11
f(22) = 527 = 17*31
f(23) = 143 = 11*13
f(24) = 619 = 619
f(25) = 167 = 167
f(26) = 719 = 719
f(27) = 193 = 193
f(28) = 827 = 827
f(29) = 221 = 13*17
f(30) = 943 = 23*41
f(31) = 251 = 251
f(32) = 1067 = 11*97
f(33) = 283 = 283
f(34) = 1199 = 11*109
f(35) = 317 = 317
f(36) = 1339 = 13*103
f(37) = 353 = 353
f(38) = 1487 = 1487
f(39) = 391 = 17*23
f(40) = 1643 = 31*53
f(41) = 431 = 431
f(42) = 1807 = 13*139
f(43) = 473 = 11*43
f(44) = 1979 = 1979
f(45) = 517 = 11*47
f(46) = 2159 = 17*127
f(47) = 563 = 563
f(48) = 2347 = 2347
f(49) = 611 = 13*47
f(50) = 2543 = 2543
f(51) = 661 = 661
f(52) = 2747 = 41*67
f(53) = 713 = 23*31
f(54) = 2959 = 11*269
f(55) = 767 = 13*59
f(56) = 3179 = 11*17*17
f(57) = 823 = 823
f(58) = 3407 = 3407
f(59) = 881 = 881
f(60) = 3643 = 3643
f(61) = 941 = 941
f(62) = 3887 = 13*13*23
f(63) = 1003 = 17*59
f(64) = 4139 = 4139
f(65) = 1067 = 11*97
f(66) = 4399 = 53*83
f(67) = 1133 = 11*103
f(68) = 4667 = 13*359
f(69) = 1201 = 1201
f(70) = 4943 = 4943
f(71) = 1271 = 31*41
f(72) = 5227 = 5227
f(73) = 1343 = 17*79
f(74) = 5519 = 5519
f(75) = 1417 = 13*109
f(76) = 5819 = 11*23*23
f(77) = 1493 = 1493
f(78) = 6127 = 11*557
f(79) = 1571 = 1571
f(80) = 6443 = 17*379
f(81) = 1651 = 13*127
f(82) = 6767 = 67*101
f(83) = 1733 = 1733
f(84) = 7099 = 31*229
f(85) = 1817 = 23*79
f(86) = 7439 = 43*173
f(87) = 1903 = 11*173
f(88) = 7787 = 13*599
f(89) = 1991 = 11*181
f(90) = 8143 = 17*479
f(91) = 2081 = 2081
f(92) = 8507 = 47*181
f(93) = 2173 = 41*53
f(94) = 8879 = 13*683
f(95) = 2267 = 2267
f(96) = 9259 = 47*197
f(97) = 2363 = 17*139
f(98) = 9647 = 11*877
f(99) = 2461 = 23*107
f(100) = 10043 = 11*11*83

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+43

f(0)=43
f(1)=11
f(2)=47
f(3)=13
f(4)=59
f(5)=17
f(6)=79
f(7)=23
f(8)=107
f(9)=31
f(10)=1
f(11)=41
f(12)=1
f(13)=53
f(14)=239
f(15)=67
f(16)=1
f(17)=83
f(18)=367
f(19)=101
f(20)=443
f(21)=1
f(22)=1
f(23)=1
f(24)=619
f(25)=167
f(26)=719
f(27)=193
f(28)=827
f(29)=1
f(30)=1
f(31)=251
f(32)=97
f(33)=283
f(34)=109
f(35)=317
f(36)=103
f(37)=353
f(38)=1487
f(39)=1
f(40)=1
f(41)=431
f(42)=139
f(43)=1
f(44)=1979
f(45)=1
f(46)=127
f(47)=563
f(48)=2347
f(49)=1
f(50)=2543
f(51)=661
f(52)=1
f(53)=1
f(54)=269
f(55)=1
f(56)=1
f(57)=823
f(58)=3407
f(59)=881
f(60)=3643
f(61)=941
f(62)=1
f(63)=1
f(64)=4139
f(65)=1
f(66)=1
f(67)=1
f(68)=359
f(69)=1201
f(70)=4943
f(71)=1
f(72)=5227
f(73)=1
f(74)=5519
f(75)=1
f(76)=1
f(77)=1493
f(78)=557
f(79)=1571
f(80)=379
f(81)=1
f(82)=1
f(83)=1733
f(84)=229
f(85)=1
f(86)=173
f(87)=1
f(88)=599
f(89)=181
f(90)=479
f(91)=2081
f(92)=1
f(93)=1
f(94)=683
f(95)=2267
f(96)=197
f(97)=1
f(98)=877
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+43 could be written as f(y)= y^2+43 with x=y+0

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+0
f'(x)>2x-1 with x > 7

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

43, 11, 47, 13, 59, 17, 79, 23, 107, 31, 1, 41, 1, 53, 239, 67, 1, 83, 367, 101, 443, 1, 1, 1, 619, 167, 719, 193, 827, 1, 1, 251, 97, 283, 109, 317, 103, 353, 1487, 1, 1, 431, 139, 1, 1979, 1, 127, 563, 2347, 1, 2543, 661, 1, 1, 269, 1, 1, 823, 3407, 881, 3643, 941, 1, 1, 4139, 1, 1, 1, 359, 1201, 4943, 1, 5227, 1, 5519, 1, 1, 1493, 557, 1571, 379, 1, 1, 1733, 229, 1, 173, 1, 599, 181, 479, 2081, 1, 1, 683, 2267, 197, 1, 877, 1, 1, 1, 337, 2663, 10859, 2767, 11279, 1, 509, 271, 12143, 281, 307, 3203, 1, 1, 13499, 3433, 13967, 1, 1, 3671, 1, 3793, 907, 3917, 15919, 311, 16427, 1, 16943, 1, 17467, 1, 439, 4567, 18539, 4703, 19087, 1, 1511, 293, 1, 1, 1889, 1, 1, 5413, 1291, 1, 22543, 5711, 1, 1, 1033, 547, 24379, 6173, 1471, 487, 25643, 6491, 1, 6653, 1, 401, 1, 6983, 1229, 7151, 1, 7321, 1, 1, 30319, 1, 31019, 1, 31727, 617, 32443, 1, 1951, 1, 1, 659, 1, 8753, 3217, 8941, 769, 397, 1, 9323, 919, 1, 38459, 883, 3019, 1, 1741, 10111, 40847, 10313, 41659, 809, 1, 10723, 1, 643, 4013, 857, 44987, 11353, 1993, 1, 1, 11783, 3659, 1091, 1, 1, 461, 541, 3863, 1, 1, 12893, 52027, 13121, 4813, 1, 1, 1, 54799, 1, 1, 1, 56687, 1, 977, 1321, 569, 1, 4583, 15017, 2633, 15263, 61547, 15511, 1, 15761, 1, 1, 5869, 16267, 65579, 1, 1549, 1, 1, 17041, 68687, 1, 69739, 1597, 853, 1049, 71867, 787, 1, 18371, 74027, 1, 6829, 18917, 1, 1129, 1459, 19471, 1669, 19751, 1, 1, 1, 1847, 81839, 1873, 2677, 1607, 84143, 1, 3709, 1, 5087, 21767, 613, 22063, 1, 1, 709, 1, 7019, 22963, 92459, 1, 4073, 2143, 94907, 1, 1217, 1423, 97387, 1, 98639, 1, 1, 1, 1, 821, 1, 25771, 1, 1, 105019, 26417, 106319, 1, 1, 1, 108943, 1, 3557, 27733, 111599, 1, 112939, 28403, 4969, 701, 10513, 2237, 967, 29423, 2753, 1, 119759, 30113, 9319, 1, 1, 2801, 1, 2833, 9643, 31517, 1307, 31873, 1, 1, 129643, 1, 1, 1063, 12049, 33317, 133999, 2591, 135467, 2003, 136943, 34421, 138427, 3163, 1, 1, 1373, 35543, 3041, 2113, 1, 1171, 145967, 36683, 1, 1, 797, 1, 150587, 1, 1, 38231, 1, 2971, 5009, 3547, 9227, 3583, 1, 971, 947, 1, 1483, 2389, 163259, 41017, 1153, 1801, 15137, 1, 168143, 1, 5477, 1, 171439, 43067, 173099, 1, 174767, 1, 1, 1, 178127, 1, 179819, 1, 13963, 1, 16657, 46021, 1, 46451, 1, 1, 1, 47317, 1777, 1, 1, 1, 4723, 4421, 195407, 1583, 8573, 1, 198959, 2939, 1949, 50411, 18413, 1, 1429, 1, 1, 51767, 6709, 52223, 16139, 1, 211643, 4831, 1, 1, 1, 4159, 217199, 2371, 1, 55001, 2027, 1, 1, 1301, 1, 56417, 1, 56893, 17579, 1, 2917, 1, 232367, 5303, 1, 5347, 2339, 1913, 14011, 59791, 1, 4637, 1013, 60773, 22189, 1, 22369, 4751, 14591, 2707, 250043, 62761, 1, 1543, 19543, 1, 256079, 5843, 258107, 64781, 20011, 1, 262187, 2861, 1901, 1, 1, 1, 1, 1433, 270443, 1, 1, 5261, 2719, 68917, 1657, 1, 278827, 6361, 21611, 70501, 16651, 1, 285199, 1213, 1, 72103, 26317, 4273, 26513, 73181, 1283, 1, 7219, 3229, 298159, 1, 300347, 1, 3119, 1, 1579, 76463, 2417, 77017, 1399, 77573, 311407, 1, 28513, 78691, 1, 1933, 3833, 79817, 1, 2593, 14029, 1, 6131, 7411, 1, 1, 329519, 6359, 331819, 83243, 334127, 1, 10853, 84401, 1, 4999, 2819, 2087, 5821, 1, 1, 1, 20479, 3797, 1303, 7993, 5981, 1, 6703, 89113, 1, 1, 21179, 6947, 8429, 1, 1, 1, 1, 5419, 28439, 1973, 1, 3011, 374587, 1999, 1, 8597, 379499, 1, 5701, 95801, 3527, 7417, 386927, 1831, 22907, 1, 1, 7561, 1559, 3191, 396943, 99551, 2207, 100183, 1, 1, 404539, 1, 5153, 9281, 31511, 6043, 13297, 1, 414779, 1, 1, 1, 38177, 1987, 1, 1, 425147, 1, 4153, 1601, 9157, 107923, 25471, 9871, 1, 9931, 438287, 109903, 440939, 110567, 34123, 2713, 26251, 1, 40813, 112571, 41057, 1, 19753, 6701, 8623, 114593, 1, 8867, 462443, 1, 465167, 1, 467899, 1, 1, 1, 1, 118691, 476143, 3851, 1, 1, 43789, 120767, 484459, 5281, 487247, 9397, 1, 122861, 1, 1, 1, 1, 21673, 2659, 12227, 7393, 504143, 1, 1, 127103, 46349, 127817, 1, 1627, 39659, 7603, 22541, 129971, 1, 130693, 524219, 1, 1, 1, 530027, 1, 6421, 1, 1907, 134333, 538799, 4357, 2897, 1, 1, 136541, 547643, 1, 550607, 1, 1, 1, 556559, 1, 559547, 1, 11969, 10847, 1, 1, 12097, 2689, 571579, 1, 52237, 144031, 3089, 144791, 580687, 2467, 1, 146317, 1, 147083, 14387, 13441, 2683, 1, 596027, 149393, 13933, 6529, 1787, 1, 3499, 1, 55313, 152501, 1, 1, 1, 154067, 1721, 9109, 6029, 1, 1, 14221, 4513, 14293, 37087, 158017, 1, 1, 27689, 1, 640043, 3413, 58477, 12401, 3457, 162017, 2089, 162823, 1, 1, 3929, 1, 28669, 1, 662639, 1, 1, 3881, 669167, 2503, 672443, 1, 1, 169343, 61729, 170167, 5639, 1693, 1, 13217, 11677, 4211, 3023, 173483, 695599, 1, 698939, 15923, 1, 175991, 705643, 1823, 54539, 1, 1, 10501, 2099, 2161, 1, 180211, 17623, 181061, 1, 181913, 729359, 1, 10937, 16693, 32009, 1, 1, 1, 43711, 2357, 6977, 187067, 1, 8171, 1, 188801, 68813, 189671, 1, 190543, 58763, 2423, 5521, 6203, 770927, 1, 1, 1, 2749, 194933, 3967, 195817, 11717, 15131, 14879, 1, 1, 1, 72337, 199373, 61483, 4261, 1, 201163, 806447, 202061, 62311, 18451, 813647, 1, 35533, 2111, 1, 1, 26597, 1, 1, 207491, 75617, 1, 1, 209317, 2647, 210233, 842767, 211151, 65111, 6841, 3137, 1, 853819, 19447, 65963, 9341, 8527, 215771, 1, 1, 21187, 16741, 79309, 1, 3463, 219503, 1, 1, 1, 4177, 1, 222323, 891179, 20297, 1, 1, 15233, 225161, 39241, 1, 1, 3389, 1, 2131, 83089, 13469, 83437, 1, 921643, 230891, 925487, 2251, 54667, 17909, 933199, 1, 937067, 21341, 1, 2203, 72679, 1, 55807, 1, 952619, 1, 6689, 2887, 87313, 14153, 1, 7793, 968299, 1, 3067, 243553, 976187, 1, 14629, 1, 5099, 246523, 1, 6037, 43133, 1, 4507, 4229,

6. Sequence of the polynom (only primes)

43, 11, 47, 13, 59, 17, 79, 23, 107, 31, 41, 53, 239, 67, 83, 367, 101, 443, 619, 167, 719, 193, 827, 251, 97, 283, 109, 317, 103, 353, 1487, 431, 139, 1979, 127, 563, 2347, 2543, 661, 269, 823, 3407, 881, 3643, 941, 4139, 359, 1201, 4943, 5227, 5519, 1493, 557, 1571, 379, 1733, 229, 173, 599, 181, 479, 2081, 683, 2267, 197, 877, 337, 2663, 10859, 2767, 11279, 509, 271, 12143, 281, 307, 3203, 13499, 3433, 13967, 3671, 3793, 907, 3917, 15919, 311, 16427, 16943, 17467, 439, 4567, 18539, 4703, 19087, 1511, 293, 1889, 5413, 1291, 22543, 5711, 1033, 547, 24379, 6173, 1471, 487, 25643, 6491, 6653, 401, 6983, 1229, 7151, 7321, 30319, 31019, 31727, 617, 32443, 1951, 659, 8753, 3217, 8941, 769, 397, 9323, 919, 38459, 883, 3019, 1741, 10111, 40847, 10313, 41659, 809, 10723, 643, 4013, 857, 44987, 11353, 1993, 11783, 3659, 1091, 461, 541, 3863, 12893, 52027, 13121, 4813, 54799, 56687, 977, 1321, 569, 4583, 15017, 2633, 15263, 61547, 15511, 15761, 5869, 16267, 65579, 1549, 17041, 68687, 69739, 1597, 853, 1049, 71867, 787, 18371, 74027, 6829, 18917, 1129, 1459, 19471, 1669, 19751, 1847, 81839, 1873, 2677, 1607, 84143, 3709, 5087, 21767, 613, 22063, 709, 7019, 22963, 92459, 4073, 2143, 94907, 1217, 1423, 97387, 98639, 821, 25771, 105019, 26417, 106319, 108943, 3557, 27733, 111599, 112939, 28403, 4969, 701, 10513, 2237, 967, 29423, 2753, 119759, 30113, 9319, 2801, 2833, 9643, 31517, 1307, 31873, 129643, 1063, 12049, 33317, 133999, 2591, 135467, 2003, 136943, 34421, 138427, 3163, 1373, 35543, 3041, 2113, 1171, 145967, 36683, 797, 150587, 38231, 2971, 5009, 3547, 9227, 3583, 971, 947, 1483, 2389, 163259, 41017, 1153, 1801, 15137, 168143, 5477, 171439, 43067, 173099, 174767, 178127, 179819, 13963, 16657, 46021, 46451, 47317, 1777, 4723, 4421, 195407, 1583, 8573, 198959, 2939, 1949, 50411, 18413, 1429, 51767, 6709, 52223, 16139, 211643, 4831, 4159, 217199, 2371, 55001, 2027, 1301, 56417, 56893, 17579, 2917, 232367, 5303, 5347, 2339, 1913, 14011, 59791, 4637, 1013, 60773, 22189, 22369, 4751, 14591, 2707, 250043, 62761, 1543, 19543, 256079, 5843, 258107, 64781, 20011, 262187, 2861, 1901, 1433, 270443, 5261, 2719, 68917, 1657, 278827, 6361, 21611, 70501, 16651, 285199, 1213, 72103, 26317, 4273, 26513, 73181, 1283, 7219, 3229, 298159, 300347, 3119, 1579, 76463, 2417, 77017, 1399, 77573, 311407, 28513, 78691, 1933, 3833, 79817, 2593, 14029, 6131, 7411, 329519, 6359, 331819, 83243, 334127, 10853, 84401, 4999, 2819, 2087, 5821, 20479, 3797, 1303, 7993, 5981, 6703, 89113, 21179, 6947, 8429, 5419, 28439, 1973, 3011, 374587, 1999, 8597, 379499, 5701, 95801, 3527, 7417, 386927, 1831, 22907, 7561, 1559, 3191, 396943, 99551, 2207, 100183, 404539, 5153, 9281, 31511, 6043, 13297, 414779, 38177, 1987, 425147, 4153, 1601, 9157, 107923, 25471, 9871, 9931, 438287, 109903, 440939, 110567, 34123, 2713, 26251, 40813, 112571, 41057, 19753, 6701, 8623, 114593, 8867, 462443, 465167, 467899, 118691, 476143, 3851, 43789, 120767, 484459, 5281, 487247, 9397, 122861, 21673, 2659, 12227, 7393, 504143, 127103, 46349, 127817, 1627, 39659, 7603, 22541, 129971, 130693, 524219, 530027, 6421, 1907, 134333, 538799, 4357, 2897, 136541, 547643, 550607, 556559, 559547, 11969, 10847, 12097, 2689, 571579, 52237, 144031, 3089, 144791, 580687, 2467, 146317, 147083, 14387, 13441, 2683, 596027, 149393, 13933, 6529, 1787, 3499, 55313, 152501, 154067, 1721, 9109, 6029, 14221, 4513, 14293, 37087, 158017, 27689, 640043, 3413, 58477, 12401, 3457, 162017, 2089, 162823, 3929, 28669, 662639, 3881, 669167, 2503, 672443, 169343, 61729, 170167, 5639, 1693, 13217, 11677, 4211, 3023, 173483, 695599, 698939, 15923, 175991, 705643, 1823, 54539, 10501, 2099, 2161, 180211, 17623, 181061, 181913, 729359, 10937, 16693, 32009, 43711, 2357, 6977, 187067, 8171, 188801, 68813, 189671, 190543, 58763, 2423, 5521, 6203, 770927, 2749, 194933, 3967, 195817, 11717, 15131, 14879, 72337, 199373, 61483, 4261, 201163, 806447, 202061, 62311, 18451, 813647, 35533, 2111, 26597, 207491, 75617, 209317, 2647, 210233, 842767, 211151, 65111, 6841, 3137, 853819, 19447, 65963, 9341, 8527, 215771, 21187, 16741, 79309, 3463, 219503, 4177, 222323, 891179, 20297, 15233, 225161, 39241, 3389, 2131, 83089, 13469, 83437, 921643, 230891, 925487, 2251, 54667, 17909, 933199, 937067, 21341, 2203, 72679, 55807, 952619, 6689, 2887, 87313, 14153, 7793, 968299, 3067, 243553, 976187, 14629, 5099, 246523, 6037, 43133, 4507, 4229,

7. Distribution of the primes

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

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)
110101001.0000001.0000001.0000000.0000000.0000000.000000
21006649170.6600000.4900000.6600006.6000004.900000inf
31.0006693053640.6690000.3050000.66900010.1363646.22449021.411764
410.0006.7852.1494.6360.6785000.2149000.67850010.1420037.04590212.736263
5100.00068.35316.36551.9880.6835300.1636500.68353010.0741347.61517011.213978
61.000.000685.029132.146552.8830.6850290.1321460.68502910.0219318.07491610.634820
710.000.0006.860.8661.109.8585.751.0080.6860870.1109860.68608710.0154398.39872610.401854
8100.000.00068.691.7339.587.28059.104.4530.6869170.0958730.68691710.0121098.63829410.277233
91.000.000.000687.535.67584.385.872603.149.8030.6875360.0843860.68753610.0090028.80185710.204812
1010.000.000.0006.880.452.826753.727.7846.126.725.0420.6880450.0753730.68804510.0074128.93191910.157883


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
389901.1250001.1250000.0000001.8000001.800000-nan
416141400.8750000.8750000.0000001.5555561.555556-nan
532252410.7812500.7500000.0312501.7857141.714286inf
664464060.7187500.6250000.0937501.8400001.6666676.000000
71288763240.6796880.4921880.1875001.8913041.5750004.000000
8256170108620.6640620.4218750.2421881.9540231.7142862.583333
95123391831560.6621090.3574220.3046881.9941181.6944442.516129
101.0246853113740.6689450.3037110.3652342.0206491.6994542.397436
112.0481.3705608100.6689450.2734380.3955082.0000001.8006432.165775
124.0962.7621.0051.7570.6743160.2453610.4289552.0160581.7946432.169136
138.1925.5511.8133.7380.6776120.2213130.4562992.0097761.8039802.127490
1416.38411.1653.3177.8480.6814580.2024540.4790042.0113491.8295642.099519
1532.76822.3616.06816.2930.6824040.1851810.4972232.0027771.8293642.076070
1665.53644.77811.26533.5130.6832580.1718900.5113682.0025041.8564602.056895
17131.07289.63720.77468.8630.6838760.1584930.5253832.0018091.8441192.054815
18262.144179.49938.795140.7040.6847340.1479910.5367432.0025101.8674792.043245
19524.288359.04773.059285.9880.6848280.1393490.5454792.0002731.8832072.032551
201.048.576718.367137.957580.4100.6850880.1315660.5535222.0007601.8882962.029491
212.097.1521.437.546261.0521.176.4940.6854750.1244790.5609962.0011301.8922712.027005
224.194.3042.876.389495.6392.380.7500.6857850.1181700.5676152.0009021.8986222.023597
238.388.6085.754.926942.5594.812.3670.6860410.1123620.5736792.0007471.9017052.021366
2416.777.21611.514.3631.798.4349.715.9290.6863100.1071950.5791142.0007841.9080332.018950
2533.554.43223.037.5693.439.11419.598.4550.6865730.1024940.5840802.0007681.9122832.017147
2667.108.86446.089.7336.587.24139.502.4920.6867910.0981580.5886332.0006331.9153892.015592
27134.217.72892.208.68112.646.87679.561.8050.6870080.0942270.5927822.0006341.9199052.014096
28268.435.456184.465.41624.318.240160.147.1760.6871870.0905930.5965952.0005211.9228652.012865
29536.870.912369.029.47846.821.131322.208.3470.6873710.0872110.6001602.0005351.9253502.011952
301.073.741.824738.253.38390.273.551647.979.8320.6875520.0840740.6034782.0005271.9280512.011059
312.147.483.6481.476.851.099174.301.5031.302.549.5960.6877120.0811650.6065472.0004661.9308152.010170
324.294.967.2962.954.362.680336.935.8242.617.426.8560.6878660.0784490.6094172.0004471.9330632.009464
338.589.934.5925.910.000.560652.037.0435.257.963.5170.6880150.0759070.6121082.0004321.9351972.008829
3417.179.869.18411.822.370.1611.263.187.42410.559.182.7370.6881520.0735270.6146252.0004011.9372942.008227
3534.359.738.36823.649.266.6902.449.577.62521.199.689.0650.6882840.0712920.6169922.0003831.9392042.007702
3668.719.476.73647.307.097.5064.754.612.46542.552.485.0410.6884090.0691890.6192202.0003621.9409932.007222


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
123120201
245230311
389361413
41614592525
5322481631038
664401327516613
7128631944923922
8256108377116391439
95121835912424662469
101.0243111022094111539116
112.0485601853757120673210
124.0961.005335670123372133377
138.1921.8136221.191228663241681
1416.3843.3171.1192.1984281.2114351.243
1532.7686.0682.0134.0558022.2347832.249
1665.53611.2653.7387.5271.4464.1511.4804.188
17131.07220.7746.97713.7972.6597.7062.6977.712
18262.14438.79512.97125.8245.02614.3574.93914.473
19524.28873.05924.46148.5989.40627.1839.37827.092
201.048.576137.95746.10791.85017.74951.06417.82951.315
212.097.152261.05287.162173.89033.51096.99433.54097.008
224.194.304495.639165.167330.47263.248184.48663.465184.440
238.388.608942.559314.427628.132120.245350.556120.914350.844
2416.777.2161.798.434600.1321.198.302229.178669.630230.113669.513
2533.554.4323.439.1141.148.0542.291.060438.7661.280.093439.4041.280.851
2667.108.8646.587.2412.196.6564.390.585840.7112.453.876840.1242.452.530
27134.217.72812.646.8764.216.0028.430.8741.612.5904.711.8481.612.1404.710.298
28268.435.45624.318.2408.108.44316.209.7973.098.2269.060.5593.099.2949.060.161
29536.870.91246.821.13115.610.28531.210.8465.962.78717.449.4155.961.37317.447.556
301.073.741.82490.273.55130.096.19860.177.35311.490.66433.651.39411.482.56033.648.933
312.147.483.648174.301.50358.109.826116.191.67722.169.56964.987.58322.158.16264.986.189
324.294.967.296336.935.824112.315.943224.619.88142.820.820125.645.01842.813.985125.656.001
338.589.934.592652.037.043217.340.905434.696.13882.827.076243.190.35682.812.868243.206.743
3417.179.869.1841.263.187.424421.054.766842.132.658160.374.294471.228.034160.355.433471.229.663
3534.359.738.3682.449.577.625816.515.9121.633.061.713310.858.685913.956.488310.832.648913.929.804
3668.719.476.7364.754.612.4651.584.857.2163.169.755.249603.112.4871.774.216.703603.069.3991.774.213.876


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
5321101000
6646511122
71282413113597
825662332916131815
9512156847237404633
101.024374200174999410576
112.048810432378192214220184
124.0961.757923834447424472414
138.1923.7381.9561.782969897979893
1416.3847.8484.0983.7502.0131.9062.0021.927
1532.76816.2938.4537.8404.1353.9434.2273.988
1665.53633.51317.29916.2148.5958.0578.6898.172
17131.07268.86335.48933.37417.56216.70317.78416.814
18262.144140.70472.31768.38735.83334.38436.16734.320
19524.288285.988146.620139.36872.61770.06073.30370.008
201.048.576580.410296.747283.663147.642142.473148.201142.094
212.097.1521.176.494599.934576.560298.880288.584299.954289.076
224.194.3042.380.7501.213.2891.167.461605.096584.962605.835584.857
238.388.6084.812.3672.450.0522.362.3151.222.5901.184.2071.223.1241.182.446
2416.777.2169.715.9294.941.3264.774.6032.467.1592.391.1112.466.2862.391.373
2533.554.43219.598.4559.959.1569.639.2994.971.5594.828.1574.971.4574.827.282
2667.108.86439.502.49220.059.72319.442.76910.012.2619.737.95410.012.7049.739.573
27134.217.72879.561.80540.372.03339.189.77220.149.59619.623.76920.156.72219.631.718
28268.435.456160.147.17681.202.38578.944.79140.535.22339.530.54340.539.00139.542.409
29536.870.912322.208.347163.290.289158.918.05881.500.72579.597.42681.508.39579.601.801
301.073.741.824647.979.832328.179.887319.799.945163.827.071160.154.716163.834.631160.163.414
312.147.483.6481.302.549.596659.342.512643.207.084329.162.974322.106.726329.164.481322.115.415
324.294.967.2962.617.426.8561.324.250.4291.293.176.427661.130.455647.560.518661.171.587647.564.296
338.589.934.5925.257.963.5172.658.960.0812.599.003.4361.327.613.8811.301.334.7641.327.632.3441.301.382.528
3417.179.869.18410.559.182.7375.337.514.8085.221.667.9292.665.145.4032.614.422.4712.665.176.7922.614.438.071
3534.359.738.36821.199.689.06510.712.005.17710.487.683.8885.348.983.5915.250.843.4895.349.066.1665.250.795.819
3668.719.476.73642.552.485.04121.493.469.00221.059.016.03910.733.134.16210.543.083.35110.733.287.80010.542.979.728


8. Check for existing Integer Sequences by OEIS

Found in Database : 43, 11, 47, 13, 59, 17, 79, 23, 107, 31, 1, 41, 1, 53, 239, 67, 1, 83, 367, 101,
Found in Database : 43, 11, 47, 13, 59, 17, 79, 23, 107, 31, 41, 53, 239, 67, 83, 367, 101, 443, 619, 167, 719, 193, 827, 251, 97, 283, 109, 317, 103, 353, 1487,
Found in Database : 11, 13, 17, 23, 31, 41, 43, 47, 53, 59, 67, 79, 83, 97, 101, 103, 107, 109, 127, 139,