Inhaltsverzeichnis

Development of
Algorithmic Constructions

22:22:42
Deutsch
18.Apr 2024

Polynom = x^2+32x-127

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) = 127 = 127
f(1) = 47 = 47
f(2) = 59 = 59
f(3) = 11 = 11
f(4) = 17 = 17
f(5) = 29 = 29
f(6) = 101 = 101
f(7) = 73 = 73
f(8) = 193 = 193
f(9) = 121 = 11*11
f(10) = 293 = 293
f(11) = 173 = 173
f(12) = 401 = 401
f(13) = 229 = 229
f(14) = 517 = 11*47
f(15) = 289 = 17*17
f(16) = 641 = 641
f(17) = 353 = 353
f(18) = 773 = 773
f(19) = 421 = 421
f(20) = 913 = 11*83
f(21) = 493 = 17*29
f(22) = 1061 = 1061
f(23) = 569 = 569
f(24) = 1217 = 1217
f(25) = 649 = 11*59
f(26) = 1381 = 1381
f(27) = 733 = 733
f(28) = 1553 = 1553
f(29) = 821 = 821
f(30) = 1733 = 1733
f(31) = 913 = 11*83
f(32) = 1921 = 17*113
f(33) = 1009 = 1009
f(34) = 2117 = 29*73
f(35) = 1109 = 1109
f(36) = 2321 = 11*211
f(37) = 1213 = 1213
f(38) = 2533 = 17*149
f(39) = 1321 = 1321
f(40) = 2753 = 2753
f(41) = 1433 = 1433
f(42) = 2981 = 11*271
f(43) = 1549 = 1549
f(44) = 3217 = 3217
f(45) = 1669 = 1669
f(46) = 3461 = 3461
f(47) = 1793 = 11*163
f(48) = 3713 = 47*79
f(49) = 1921 = 17*113
f(50) = 3973 = 29*137
f(51) = 2053 = 2053
f(52) = 4241 = 4241
f(53) = 2189 = 11*199
f(54) = 4517 = 4517
f(55) = 2329 = 17*137
f(56) = 4801 = 4801
f(57) = 2473 = 2473
f(58) = 5093 = 11*463
f(59) = 2621 = 2621
f(60) = 5393 = 5393
f(61) = 2773 = 47*59
f(62) = 5701 = 5701
f(63) = 2929 = 29*101
f(64) = 6017 = 11*547
f(65) = 3089 = 3089
f(66) = 6341 = 17*373
f(67) = 3253 = 3253
f(68) = 6673 = 6673
f(69) = 3421 = 11*311
f(70) = 7013 = 7013
f(71) = 3593 = 3593
f(72) = 7361 = 17*433
f(73) = 3769 = 3769
f(74) = 7717 = 7717
f(75) = 3949 = 11*359
f(76) = 8081 = 8081
f(77) = 4133 = 4133
f(78) = 8453 = 79*107
f(79) = 4321 = 29*149
f(80) = 8833 = 11*11*73
f(81) = 4513 = 4513
f(82) = 9221 = 9221
f(83) = 4709 = 17*277
f(84) = 9617 = 59*163
f(85) = 4909 = 4909
f(86) = 10021 = 11*911
f(87) = 5113 = 5113
f(88) = 10433 = 10433
f(89) = 5321 = 17*313
f(90) = 10853 = 10853
f(91) = 5533 = 11*503
f(92) = 11281 = 29*389
f(93) = 5749 = 5749
f(94) = 11717 = 11717
f(95) = 5969 = 47*127
f(96) = 12161 = 12161
f(97) = 6193 = 11*563
f(98) = 12613 = 12613
f(99) = 6421 = 6421
f(100) = 13073 = 17*769

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+32x-127

f(0)=127
f(1)=47
f(2)=59
f(3)=11
f(4)=17
f(5)=29
f(6)=101
f(7)=73
f(8)=193
f(9)=1
f(10)=293
f(11)=173
f(12)=401
f(13)=229
f(14)=1
f(15)=1
f(16)=641
f(17)=353
f(18)=773
f(19)=421
f(20)=83
f(21)=1
f(22)=1061
f(23)=569
f(24)=1217
f(25)=1
f(26)=1381
f(27)=733
f(28)=1553
f(29)=821
f(30)=1733
f(31)=1
f(32)=113
f(33)=1009
f(34)=1
f(35)=1109
f(36)=211
f(37)=1213
f(38)=149
f(39)=1321
f(40)=2753
f(41)=1433
f(42)=271
f(43)=1549
f(44)=3217
f(45)=1669
f(46)=3461
f(47)=163
f(48)=79
f(49)=1
f(50)=137
f(51)=2053
f(52)=4241
f(53)=199
f(54)=4517
f(55)=1
f(56)=4801
f(57)=2473
f(58)=463
f(59)=2621
f(60)=5393
f(61)=1
f(62)=5701
f(63)=1
f(64)=547
f(65)=3089
f(66)=373
f(67)=3253
f(68)=6673
f(69)=311
f(70)=7013
f(71)=3593
f(72)=433
f(73)=3769
f(74)=7717
f(75)=359
f(76)=8081
f(77)=4133
f(78)=107
f(79)=1
f(80)=1
f(81)=4513
f(82)=9221
f(83)=277
f(84)=1
f(85)=4909
f(86)=911
f(87)=5113
f(88)=10433
f(89)=313
f(90)=10853
f(91)=503
f(92)=389
f(93)=5749
f(94)=11717
f(95)=1
f(96)=12161
f(97)=563
f(98)=12613
f(99)=6421

b) Substitution of the polynom
The polynom f(x)=x^2+32x-127 could be written as f(y)= y^2-383 with x=y-16

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+16
f'(x)>2x+31

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

127, 47, 59, 11, 17, 29, 101, 73, 193, 1, 293, 173, 401, 229, 1, 1, 641, 353, 773, 421, 83, 1, 1061, 569, 1217, 1, 1381, 733, 1553, 821, 1733, 1, 113, 1009, 1, 1109, 211, 1213, 149, 1321, 2753, 1433, 271, 1549, 3217, 1669, 3461, 163, 79, 1, 137, 2053, 4241, 199, 4517, 1, 4801, 2473, 463, 2621, 5393, 1, 5701, 1, 547, 3089, 373, 3253, 6673, 311, 7013, 3593, 433, 3769, 7717, 359, 8081, 4133, 107, 1, 1, 4513, 9221, 277, 1, 4909, 911, 5113, 10433, 313, 10853, 503, 389, 5749, 11717, 1, 12161, 563, 12613, 6421, 769, 6653, 1231, 1, 131, 7129, 853, 1, 1, 7621, 15493, 7873, 16001, 739, 1, 8389, 17041, 509, 17573, 811, 307, 317, 18661, 557, 1747, 9749, 151, 1, 20353, 10321, 1, 10613, 21521, 10909, 1301, 1019, 22721, 397, 23333, 11821, 1409, 1103, 523, 1, 167, 1, 2351, 13093, 26513, 13421, 937, 809, 2531, 1, 28517, 1, 29201, 1, 179, 15121, 30593, 15473, 1, 1439, 1, 16189, 1129, 16553, 1, 16921, 34213, 17293, 34961, 17669, 191, 18049, 1, 18433, 37253, 1, 521, 19213, 38821, 19609, 1, 1, 487, 1, 41233, 443, 3823, 1249, 1, 21649, 43717, 761, 4051, 1, 45413, 22921, 46273, 1, 1, 23789, 48017, 24229, 619, 2243, 1, 25121, 1, 239, 4691, 26029, 52517, 26489, 53441, 26953, 4943, 1613, 55313, 27893, 1, 2579, 1973, 1697, 797, 29333, 1, 2711, 60133, 30313, 61121, 30809, 5647, 1, 1, 1097, 1087, 32321, 5923, 32833, 1, 33349, 67217, 3079, 68261, 1, 69313, 743, 70373, 1, 1, 1, 571, 36529, 6691, 283, 661, 2213, 75793, 647, 6991, 38729, 78017, 1, 2729, 3623, 80273, 1, 4789, 40993, 82561, 3779, 83717, 1, 4993, 1, 7823, 43321, 1051, 43913, 3049, 947, 8147, 1, 90821, 2689, 92033, 4211, 93253, 46933, 883, 2797, 95717, 1, 2063, 827, 98213, 677, 9043, 50053, 100741, 1, 1, 51329, 9391, 51973, 104593, 1, 6229, 1, 107201, 1, 108517, 691, 109841, 5023, 1039, 55921, 1907, 3329, 941, 57269, 1, 347, 1597, 3449, 10723, 1, 2539, 60013, 120721, 5519, 122117, 61409, 829, 1, 7349, 5711, 4357, 63533, 127781, 1367, 1, 64969, 1, 367, 132113, 1, 12143, 67153, 1627, 2341, 1, 1, 2339, 1, 139493, 70121, 1, 379, 142501, 863, 1823, 1, 1, 383, 147073, 2549, 1, 1, 1, 1, 151717, 76249, 153281, 1, 9109, 1319, 1, 1, 5449, 7219, 159617, 80209, 161221, 81013, 1, 4813, 3499, 82633, 166081, 83449, 1, 4957, 169361, 85093, 5897, 1, 172673, 86753, 1, 87589, 176017, 8039, 10453, 89273, 179393, 90121, 1, 3137, 10753, 1, 184517, 1571, 16931, 93553, 187973, 94421, 189713, 8663, 191461, 5657, 4111, 907, 194981, 1, 1303, 5813, 198533, 99713, 18211, 100609, 1, 1223, 203921, 2179, 1, 1, 1, 104233, 209381, 1, 211217, 1453, 1, 106993, 214913, 9811, 1, 1, 218641, 109789, 20047, 110729, 7669, 6569, 1063, 112621, 20563, 1, 1, 6737, 230017, 10499, 1693, 1153, 1, 4049, 235813, 1, 3257, 1511, 1, 120349, 1, 121333, 1459, 122321, 14449, 1, 22511, 124309, 1, 1, 251621, 11483, 253633, 127321, 255653, 7549, 1543, 1069, 259717, 130369, 261761, 1, 1, 132421, 265873, 1181, 267941, 134489, 24547, 1, 2543, 136573, 1, 12511, 276293, 1373, 1399, 139729, 1, 12799, 1579, 141853, 1, 1091, 26083, 1, 3659, 145069, 291217, 8597, 1, 5077, 295553, 1787, 1721, 1, 2803, 2551, 1, 151609, 1867, 13883, 306533, 1, 1, 154933, 1663, 5381, 1, 2153, 315461, 158293, 1699, 159421, 319973, 160553, 4079, 14699, 324517, 162829, 1, 163973, 1723, 1, 1171, 166273, 333701, 167429, 2777, 1, 338341, 169753, 3373, 170921, 31183, 172093, 11909, 1, 347717, 15859, 20593, 175633, 7499, 1, 354833, 16183, 21013, 179209, 1327, 6221, 32911, 1, 364433, 182821, 366853, 2521, 1, 1, 1, 186469, 1277, 1, 2749, 11113, 379073, 1, 381541, 1, 384017, 192629, 386501, 193873, 35363, 195121, 23029, 1, 1, 1847, 1, 3371, 23473, 200153, 5501, 18311, 404113, 202693, 406661, 203969, 409217, 1, 1, 12149, 3163, 207821, 1307, 2647, 1, 12377, 2833, 1667, 38611, 1, 427333, 2003, 429953, 19603, 1889, 7481, 25601, 1, 437861, 19963, 1, 1, 1, 3767, 40531, 223589, 1, 224929, 451201, 1, 41263, 1, 1, 13469, 459301, 20939, 6329, 1, 464741, 13709, 467473, 1, 470213, 235793, 1, 1, 1, 1601, 478481, 239933, 28309, 241321, 1, 242713, 486821, 244109, 1, 2029, 492421, 246913, 17077, 1, 498053, 1, 500881, 251149, 503717, 1, 46051, 253993, 509413, 1567, 2237, 1, 46831, 1493, 518017, 1451, 11083, 23743, 523793, 262621, 1, 1, 31153, 1, 1, 1, 1933, 9257, 2879, 5743, 5059, 271393, 1483, 1, 49747, 274349, 550181, 2441, 553153, 1, 1, 278813, 2897, 4751, 1831, 1, 3467, 3881, 568133, 1, 1, 286333, 574181, 287849, 1523, 289369, 1, 1, 3863, 1531, 1, 26723, 34673, 6287, 592517, 1, 1, 27143, 1, 1, 1, 301673, 1, 17837, 8329, 304789, 13003, 3691, 55843, 1, 6113, 309493, 620561, 28279, 623717, 10781, 2971, 314233, 7591, 28711, 1, 2423, 636421, 2141, 58147, 320609, 37813, 322213, 22277, 4099, 59023, 1, 11059, 1, 655717, 29879, 658961, 19429, 2089, 331921, 14159, 30323, 668741, 19717, 23173, 336829, 5581, 338473, 678593, 340121, 9341, 341773, 1, 7307, 1, 345089, 691841, 1, 2221, 348421, 2417, 350093, 4057, 1, 4733, 1, 4243, 3319, 1, 356821, 1, 21089, 2311, 12421, 65647, 361909, 1, 1, 9227, 33211, 6481, 367033, 735781, 1, 739217, 33679, 25609, 7919, 43889, 1879, 1, 6367, 1, 3527, 44501, 1, 1, 2999, 763493, 382621, 16319, 1, 1, 386129, 774017, 22817, 777541, 35423, 9887, 1, 2017, 1, 1, 394969, 4423, 13681, 4597, 2909, 72623, 400321, 3803, 2663, 2789, 1, 4523, 405709, 813221, 6907, 48049, 1, 6263, 14177, 824081, 412949, 1, 414769, 831361, 416593, 835013, 1, 76243, 420253, 842341, 422089, 29173, 2267, 849701, 9059, 1, 427621, 1, 39043, 6571, 431329, 3121, 4289, 4643, 5507, 871973, 1, 30197, 438793, 4703, 440669, 883217, 2293, 886981, 3673, 3727, 1949, 1, 1, 6029, 1, 8431, 452009, 8017, 453913, 1, 26813, 4783, 9739, 917381, 459649, 1, 461569, 15679, 5867, 928913, 1, 54869, 467353, 3919, 4153, 20011, 42839, 1, 473173, 948293, 1, 1, 477073, 32969, 479029, 960017, 480989, 87631, 28409, 967873, 8219, 2707, 44263, 9661, 1, 979717, 490849, 1, 4073, 34057, 2963, 991633, 496813, 90511, 6833, 1, 500809, 1003621, 2383, 1, 504821, 59509, 17477, 1, 1, 1019717, 2953, 12959, 1, 1, 46811,

6. Sequence of the polynom (only primes)

127, 47, 59, 11, 17, 29, 101, 73, 193, 293, 173, 401, 229, 641, 353, 773, 421, 83, 1061, 569, 1217, 1381, 733, 1553, 821, 1733, 113, 1009, 1109, 211, 1213, 149, 1321, 2753, 1433, 271, 1549, 3217, 1669, 3461, 163, 79, 137, 2053, 4241, 199, 4517, 4801, 2473, 463, 2621, 5393, 5701, 547, 3089, 373, 3253, 6673, 311, 7013, 3593, 433, 3769, 7717, 359, 8081, 4133, 107, 4513, 9221, 277, 4909, 911, 5113, 10433, 313, 10853, 503, 389, 5749, 11717, 12161, 563, 12613, 6421, 769, 6653, 1231, 131, 7129, 853, 7621, 15493, 7873, 16001, 739, 8389, 17041, 509, 17573, 811, 307, 317, 18661, 557, 1747, 9749, 151, 20353, 10321, 10613, 21521, 10909, 1301, 1019, 22721, 397, 23333, 11821, 1409, 1103, 523, 167, 2351, 13093, 26513, 13421, 937, 809, 2531, 28517, 29201, 179, 15121, 30593, 15473, 1439, 16189, 1129, 16553, 16921, 34213, 17293, 34961, 17669, 191, 18049, 18433, 37253, 521, 19213, 38821, 19609, 487, 41233, 443, 3823, 1249, 21649, 43717, 761, 4051, 45413, 22921, 46273, 23789, 48017, 24229, 619, 2243, 25121, 239, 4691, 26029, 52517, 26489, 53441, 26953, 4943, 1613, 55313, 27893, 2579, 1973, 1697, 797, 29333, 2711, 60133, 30313, 61121, 30809, 5647, 1097, 1087, 32321, 5923, 32833, 33349, 67217, 3079, 68261, 69313, 743, 70373, 571, 36529, 6691, 283, 661, 2213, 75793, 647, 6991, 38729, 78017, 2729, 3623, 80273, 4789, 40993, 82561, 3779, 83717, 4993, 7823, 43321, 1051, 43913, 3049, 947, 8147, 90821, 2689, 92033, 4211, 93253, 46933, 883, 2797, 95717, 2063, 827, 98213, 677, 9043, 50053, 100741, 51329, 9391, 51973, 104593, 6229, 107201, 108517, 691, 109841, 5023, 1039, 55921, 1907, 3329, 941, 57269, 347, 1597, 3449, 10723, 2539, 60013, 120721, 5519, 122117, 61409, 829, 7349, 5711, 4357, 63533, 127781, 1367, 64969, 367, 132113, 12143, 67153, 1627, 2341, 2339, 139493, 70121, 379, 142501, 863, 1823, 383, 147073, 2549, 151717, 76249, 153281, 9109, 1319, 5449, 7219, 159617, 80209, 161221, 81013, 4813, 3499, 82633, 166081, 83449, 4957, 169361, 85093, 5897, 172673, 86753, 87589, 176017, 8039, 10453, 89273, 179393, 90121, 3137, 10753, 184517, 1571, 16931, 93553, 187973, 94421, 189713, 8663, 191461, 5657, 4111, 907, 194981, 1303, 5813, 198533, 99713, 18211, 100609, 1223, 203921, 2179, 104233, 209381, 211217, 1453, 106993, 214913, 9811, 218641, 109789, 20047, 110729, 7669, 6569, 1063, 112621, 20563, 6737, 230017, 10499, 1693, 1153, 4049, 235813, 3257, 1511, 120349, 121333, 1459, 122321, 14449, 22511, 124309, 251621, 11483, 253633, 127321, 255653, 7549, 1543, 1069, 259717, 130369, 261761, 132421, 265873, 1181, 267941, 134489, 24547, 2543, 136573, 12511, 276293, 1373, 1399, 139729, 12799, 1579, 141853, 1091, 26083, 3659, 145069, 291217, 8597, 5077, 295553, 1787, 1721, 2803, 2551, 151609, 1867, 13883, 306533, 154933, 1663, 5381, 2153, 315461, 158293, 1699, 159421, 319973, 160553, 4079, 14699, 324517, 162829, 163973, 1723, 1171, 166273, 333701, 167429, 2777, 338341, 169753, 3373, 170921, 31183, 172093, 11909, 347717, 15859, 20593, 175633, 7499, 354833, 16183, 21013, 179209, 1327, 6221, 32911, 364433, 182821, 366853, 2521, 186469, 1277, 2749, 11113, 379073, 381541, 384017, 192629, 386501, 193873, 35363, 195121, 23029, 1847, 3371, 23473, 200153, 5501, 18311, 404113, 202693, 406661, 203969, 409217, 12149, 3163, 207821, 1307, 2647, 12377, 2833, 1667, 38611, 427333, 2003, 429953, 19603, 1889, 7481, 25601, 437861, 19963, 3767, 40531, 223589, 224929, 451201, 41263, 13469, 459301, 20939, 6329, 464741, 13709, 467473, 470213, 235793, 1601, 478481, 239933, 28309, 241321, 242713, 486821, 244109, 2029, 492421, 246913, 17077, 498053, 500881, 251149, 503717, 46051, 253993, 509413, 1567, 2237, 46831, 1493, 518017, 1451, 11083, 23743, 523793, 262621, 31153, 1933, 9257, 2879, 5743, 5059, 271393, 1483, 49747, 274349, 550181, 2441, 553153, 278813, 2897, 4751, 1831, 3467, 3881, 568133, 286333, 574181, 287849, 1523, 289369, 3863, 1531, 26723, 34673, 6287, 592517, 27143, 301673, 17837, 8329, 304789, 13003, 3691, 55843, 6113, 309493, 620561, 28279, 623717, 10781, 2971, 314233, 7591, 28711, 2423, 636421, 2141, 58147, 320609, 37813, 322213, 22277, 4099, 59023, 11059, 655717, 29879, 658961, 19429, 2089, 331921, 14159, 30323, 668741, 19717, 23173, 336829, 5581, 338473, 678593, 340121, 9341, 341773, 7307, 345089, 691841, 2221, 348421, 2417, 350093, 4057, 4733, 4243, 3319, 356821, 21089, 2311, 12421, 65647, 361909, 9227, 33211, 6481, 367033, 735781, 739217, 33679, 25609, 7919, 43889, 1879, 6367, 3527, 44501, 2999, 763493, 382621, 16319, 386129, 774017, 22817, 777541, 35423, 9887, 2017, 394969, 4423, 13681, 4597, 2909, 72623, 400321, 3803, 2663, 2789, 4523, 405709, 813221, 6907, 48049, 6263, 14177, 824081, 412949, 414769, 831361, 416593, 835013, 76243, 420253, 842341, 422089, 29173, 2267, 849701, 9059, 427621, 39043, 6571, 431329, 3121, 4289, 4643, 5507, 871973, 30197, 438793, 4703, 440669, 883217, 2293, 886981, 3673, 3727, 1949, 6029, 8431, 452009, 8017, 453913, 26813, 4783, 9739, 917381, 459649, 461569, 15679, 5867, 928913, 54869, 467353, 3919, 4153, 20011, 42839, 473173, 948293, 477073, 32969, 479029, 960017, 480989, 87631, 28409, 967873, 8219, 2707, 44263, 9661, 979717, 490849, 4073, 34057, 2963, 991633, 496813, 90511, 6833, 500809, 1003621, 2383, 504821, 59509, 17477, 1019717, 2953, 12959, 46811,

7. Distribution of the primes

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

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.0000000.0000000.0000000.0000000.000000
21008463210.8400000.6300000.2100008.4000006.300000inf
31.0007663883780.7660000.3880000.3780009.1190476.15873018.000000
410.0007.4352.8274.6080.7435000.2827000.4608009.7062667.28608212.190476
5100.00073.35421.68351.6710.7335400.2168300.5167109.8660397.66996811.213325
61.000.000726.678176.498550.1800.7266780.1764980.5501809.9064548.13992510.647752
710.000.0007.217.5621.491.6745.725.8880.7217560.1491670.5725899.9322708.45150710.407299
8100.000.00071.793.13012.909.53058.883.6000.7179310.1290950.5888369.9470058.65439110.283750
91.000.000.000715.005.975113.781.837601.224.1380.7150060.1137820.6012249.9592538.81378710.210383
1010.000.000.0007.126.971.4781.017.343.6546.109.627.8240.7126970.1017340.6109639.9677108.94117810.161981


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
532272520.8437500.7812500.0625001.9285711.785714inf
6645343100.8281250.6718750.1562501.9629631.7200005.000000
712810575300.8203120.5859380.2343751.9811321.7441863.000000
8256200133670.7812500.5195310.2617191.9047621.7733332.233333
95123932291640.7675780.4472660.3203121.9650001.7218042.447761
101.0247823943880.7636720.3847660.3789061.9898221.7205242.365854
112.0481.5567328240.7597660.3574220.4023441.9897701.8578682.123711
124.0963.0791.3051.7740.7517090.3186040.4331051.9787921.7827872.152913
138.1926.0902.3703.7200.7434080.2893070.4541021.9779151.8160922.096956
1416.38412.1304.3267.8040.7403560.2640380.4763181.9917901.8253162.097849
1532.76824.1288.02216.1060.7363280.2448120.4915161.9891181.8543692.063813
1665.53648.17014.76833.4020.7350160.2253420.5096741.9964361.8409372.073885
17131.07295.97227.71068.2620.7322080.2114110.5207981.9923601.8763542.043650
18262.144191.38451.915139.4690.7300720.1980400.5320321.9941651.8735112.043143
19524.288381.80997.702284.1070.7282430.1863520.5418911.9949891.8819612.037062
201.048.576761.898184.477577.4210.7266030.1759310.5506721.9954951.8881602.032407
212.097.1521.520.342349.8211.170.5210.7249560.1668080.5581481.9954671.8962852.027153
224.194.3043.034.563664.2942.370.2690.7234960.1583800.5651161.9959741.8989542.024969
238.388.6086.057.4421.266.0684.791.3740.7221030.1509270.5711761.9961501.9058852.021447
2416.777.21612.091.6642.417.9789.673.6860.7207190.1441230.5765971.9961671.9098332.018980
2533.554.43224.145.9964.626.57119.519.4250.7196070.1378830.5817241.9969131.9134052.017786
2667.108.86448.218.8318.868.87039.349.9610.7185170.1321560.5863601.9969701.9169422.015939
27134.217.72896.302.73217.034.71679.268.0160.7175110.1269190.5905931.9972021.9207312.014437
28268.435.456192.355.87432.765.362159.590.5120.7165810.1220600.5945211.9974081.9234462.013303
29536.870.912384.249.55263.110.879321.138.6730.7157210.1175530.5981671.9975971.9261462.012267
301.073.741.824767.648.731121.727.998645.920.7330.7149290.1133680.6015611.9977871.9287962.011345
312.147.483.6481.533.690.018235.112.8861.298.577.1320.7141800.1094830.6046971.9979061.9314612.010428
324.294.967.2963.064.389.642454.621.7522.609.767.8900.7134840.1058500.6076341.9980501.9336322.009713
338.589.934.5926.123.183.659880.050.0565.243.133.6030.7128320.1024510.6103811.9981741.9357852.009042
3417.179.869.18412.235.885.3161.705.375.87310.530.509.4430.7122220.0992660.6129561.9982881.9378172.008438
3534.359.738.36824.452.137.5783.307.872.45521.144.265.1230.7116510.0962720.6153791.9983951.9396742.007905
3668.719.476.73648.867.181.2066.422.090.68442.445.090.5220.7111110.0934540.6176571.9984831.9414572.007404


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
123120102
245141202
389363222
416144105252
5322571892122
664431726182212
7128753540322392
82561336370642652
951222911311611821072
101.02439420319119521952
112.04873236137136823602
124.0961.30565664965526462
138.1922.3701.1881.1821.19121.1752
1416.3844.3262.1602.1662.14822.1742
1532.7688.0224.0363.9863.98724.0312
1665.53614.7687.3967.3727.33927.4252
17131.07227.71013.84613.86413.824213.8822
18262.14451.91526.06825.84725.957225.9542
19524.28897.70248.95748.74548.888248.8102
201.048.576184.47792.40092.07792.295292.1782
212.097.152349.821175.609174.212174.9262174.8912
224.194.304664.294333.433330.861331.9672332.3232
238.388.6081.266.068635.805630.263632.5672633.4972
2416.777.2162.417.9781.213.3171.204.6611.208.51321.209.4612
2533.554.4324.626.5712.321.6362.304.9352.312.59522.313.9722
2667.108.8648.868.8704.450.0654.418.8054.434.38924.434.4772
27134.217.72817.034.7168.546.7828.487.9348.514.91328.519.7992
28268.435.45632.765.36216.436.26516.329.09716.380.140216.385.2182
29536.870.91263.110.87931.654.21331.456.66631.553.206231.557.6692
301.073.741.824121.727.99861.046.65060.681.34860.862.550260.865.4442
312.147.483.648235.112.886117.896.514117.216.372117.558.1942117.554.6882
324.294.967.296454.621.752227.949.430226.672.322227.305.2762227.316.4722
338.589.934.592880.050.056441.214.780438.835.276440.019.7782440.030.2742
3417.179.869.1841.705.375.873854.912.144850.463.729852.675.1172852.700.7522
3534.359.738.3683.307.872.4551.658.100.9751.649.771.4801.653.937.25121.653.935.2002
3668.719.476.7366.422.090.6843.218.871.3453.203.219.3393.211.011.89123.211.078.7892


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
5322021100
66410642413
71283017135988
825667323514211319
9512164838131483847
101.0243881991897911588106
112.048824404420168234179243
124.0961.774887887381503383507
138.1923.7201.8291.8918041.0428161.058
1416.3847.8043.9293.8751.7452.1601.7422.157
1532.76816.1068.0638.0433.6584.3903.6564.402
1665.53633.40216.70816.6947.6289.0967.7318.947
17131.07268.26234.14234.12015.87218.32815.92018.142
18262.144139.46969.87469.59532.55537.17132.68637.057
19524.288284.107142.010142.09766.84475.22466.87575.164
201.048.576577.421288.502288.919136.605152.089136.442152.285
212.097.1521.170.521584.712585.809278.588307.249277.369307.315
224.194.3042.370.2691.184.7771.185.492566.062619.682564.953619.572
238.388.6084.791.3742.394.3732.397.0011.146.5501.249.8301.145.5611.249.433
2416.777.2169.673.6864.834.3564.839.3302.319.8282.518.0922.318.6182.517.148
2533.554.43219.519.4259.755.0469.764.3794.694.4245.067.2654.690.5345.067.202
2667.108.86439.349.96119.665.61019.684.3519.480.22310.195.8029.477.04410.196.892
27134.217.72879.268.01639.622.69639.645.32019.135.17020.502.50019.130.42720.499.919
28268.435.456159.590.51279.770.45279.820.06038.591.65641.208.56538.588.50741.201.784
29536.870.912321.138.673160.527.881160.610.79277.775.62982.798.90977.766.21082.797.925
301.073.741.824645.920.733322.880.440323.040.293156.649.907166.304.285156.666.825166.299.716
312.147.483.6481.298.577.132649.137.659649.439.473315.360.534333.933.535315.376.987333.906.076
324.294.967.2962.609.767.8901.304.604.9371.305.162.953634.567.290670.332.672634.566.933670.300.995
338.589.934.5925.243.133.6032.621.023.2322.622.110.3711.276.286.4851.345.290.3731.276.309.8171.345.246.928
3417.179.869.18410.530.509.4435.264.276.6595.266.232.7842.565.976.7522.699.324.2822.566.006.3122.699.202.097
3534.359.738.36821.144.265.12310.570.314.23410.573.950.8895.157.107.5285.415.128.4505.157.072.7485.414.956.397
3668.719.476.73642.445.090.52221.219.070.84221.226.019.68010.361.506.64510.861.070.02510.361.535.83210.860.978.020


8. Check for existing Integer Sequences by OEIS

Found in Database : 127, 47, 59, 11, 17, 29, 101, 73, 193, 1, 293, 173, 401, 229, 1, 1, 641, 353, 773, 421,
Found in Database : 127, 47, 59, 11, 17, 29, 101, 73, 193, 293, 173, 401, 229, 641, 353, 773, 421, 83, 1061, 569, 1217, 1381, 733, 1553, 821, 1733, 113, 1009, 1109, 211, 1213, 149, 1321,
Found in Database : 11, 17, 29, 47, 59, 73, 79, 83, 101, 107, 113, 127, 131, 137, 149,