Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:07:40
Deutsch
19.Apr 2024

Polynom = x^2-100x-37

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) = 37 = 37
f(1) = 17 = 17
f(2) = 233 = 233
f(3) = 41 = 41
f(4) = 421 = 421
f(5) = 1 = 1
f(6) = 601 = 601
f(7) = 43 = 43
f(8) = 773 = 773
f(9) = 107 = 107
f(10) = 937 = 937
f(11) = 127 = 127
f(12) = 1093 = 1093
f(13) = 73 = 73
f(14) = 1241 = 17*73
f(15) = 41 = 41
f(16) = 1381 = 1381
f(17) = 181 = 181
f(18) = 1513 = 17*89
f(19) = 197 = 197
f(20) = 1637 = 1637
f(21) = 53 = 53
f(22) = 1753 = 1753
f(23) = 113 = 113
f(24) = 1861 = 1861
f(25) = 239 = 239
f(26) = 1961 = 37*53
f(27) = 251 = 251
f(28) = 2053 = 2053
f(29) = 131 = 131
f(30) = 2137 = 2137
f(31) = 17 = 17
f(32) = 2213 = 2213
f(33) = 281 = 281
f(34) = 2281 = 2281
f(35) = 289 = 17*17
f(36) = 2341 = 2341
f(37) = 37 = 37
f(38) = 2393 = 2393
f(39) = 151 = 151
f(40) = 2437 = 2437
f(41) = 307 = 307
f(42) = 2473 = 2473
f(43) = 311 = 311
f(44) = 2501 = 41*61
f(45) = 157 = 157
f(46) = 2521 = 2521
f(47) = 79 = 79
f(48) = 2533 = 17*149
f(49) = 317 = 317
f(50) = 2537 = 43*59
f(51) = 317 = 317
f(52) = 2533 = 17*149
f(53) = 79 = 79
f(54) = 2521 = 2521
f(55) = 157 = 157
f(56) = 2501 = 41*61
f(57) = 311 = 311
f(58) = 2473 = 2473
f(59) = 307 = 307
f(60) = 2437 = 2437
f(61) = 151 = 151
f(62) = 2393 = 2393
f(63) = 37 = 37
f(64) = 2341 = 2341
f(65) = 289 = 17*17
f(66) = 2281 = 2281
f(67) = 281 = 281
f(68) = 2213 = 2213
f(69) = 17 = 17
f(70) = 2137 = 2137
f(71) = 131 = 131
f(72) = 2053 = 2053
f(73) = 251 = 251
f(74) = 1961 = 37*53
f(75) = 239 = 239
f(76) = 1861 = 1861
f(77) = 113 = 113
f(78) = 1753 = 1753
f(79) = 53 = 53
f(80) = 1637 = 1637
f(81) = 197 = 197
f(82) = 1513 = 17*89
f(83) = 181 = 181
f(84) = 1381 = 1381
f(85) = 41 = 41
f(86) = 1241 = 17*73
f(87) = 73 = 73
f(88) = 1093 = 1093
f(89) = 127 = 127
f(90) = 937 = 937
f(91) = 107 = 107
f(92) = 773 = 773
f(93) = 43 = 43
f(94) = 601 = 601
f(95) = 1 = 1
f(96) = 421 = 421
f(97) = 41 = 41
f(98) = 233 = 233
f(99) = 17 = 17
f(100) = 37 = 37

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-100x-37

f(0)=37
f(1)=17
f(2)=233
f(3)=41
f(4)=421
f(5)=1
f(6)=601
f(7)=43
f(8)=773
f(9)=107
f(10)=937
f(11)=127
f(12)=1093
f(13)=73
f(14)=1
f(15)=1
f(16)=1381
f(17)=181
f(18)=89
f(19)=197
f(20)=1637
f(21)=53
f(22)=1753
f(23)=113
f(24)=1861
f(25)=239
f(26)=1
f(27)=251
f(28)=2053
f(29)=131
f(30)=2137
f(31)=1
f(32)=2213
f(33)=281
f(34)=2281
f(35)=1
f(36)=2341
f(37)=1
f(38)=2393
f(39)=151
f(40)=2437
f(41)=307
f(42)=2473
f(43)=311
f(44)=61
f(45)=157
f(46)=2521
f(47)=79
f(48)=149
f(49)=317
f(50)=59
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=1
f(90)=1
f(91)=1
f(92)=1
f(93)=1
f(94)=1
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-100x-37 could be written as f(y)= y^2-2537 with x=y+50

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-50
f'(x)>2x-101 with x > 50

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

37, 17, 233, 41, 421, 1, 601, 43, 773, 107, 937, 127, 1093, 73, 1, 1, 1381, 181, 89, 197, 1637, 53, 1753, 113, 1861, 239, 1, 251, 2053, 131, 2137, 1, 2213, 281, 2281, 1, 2341, 1, 2393, 151, 2437, 307, 2473, 311, 61, 157, 2521, 79, 149, 317, 59, 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, 167, 1, 379, 1, 599, 1, 827, 1, 1063, 1, 1307, 179, 1559, 211, 1, 1, 2087, 139, 1, 313, 2647, 349, 2939, 193, 1, 1, 3547, 463, 3863, 503, 1, 1, 4519, 293, 1, 1, 1, 673, 5563, 359, 5927, 191, 6299, 811, 6679, 859, 1, 227, 439, 479, 7867, 1009, 487, 1061, 8699, 557, 9127, 1, 1, 1223, 10007, 1279, 10459, 1, 1, 1, 1, 1453, 11863, 1, 12347, 787, 347, 409, 13339, 1699, 1, 1, 271, 457, 14887, 947, 907, 1, 15959, 2029, 971, 1049, 1, 1, 17627, 2239, 18199, 2311, 1, 1, 1, 1229, 19963, 1, 1, 2609, 21179, 1, 21799, 691, 547, 2843, 23063, 1, 1, 751, 24359, 1543, 1, 3169, 1511, 3253, 643, 1669, 1, 1, 27739, 3511, 28439, 1, 29147, 461, 29863, 1889, 419, 1, 31319, 1, 32059, 2027, 619, 1, 33563, 4243, 34327, 4339, 35099, 1109, 35879, 2267, 991, 1, 37463, 4733, 2251, 2417, 39079, 617, 2347, 5039, 1, 1, 467, 1, 42407, 2677, 1, 1, 44119, 5569, 44987, 1, 45863, 1447, 46747, 1, 47639, 6011, 48539, 1531, 1, 3119, 50363, 6353, 51287, 6469, 661, 1, 1, 1, 887, 6823, 1, 1, 1, 883, 56999, 3593, 1567, 7309, 58967, 7433, 983, 3779, 1487, 1, 61979, 1, 863, 1, 1489, 2017, 65063, 4099, 66107, 8329, 1, 8461, 68219, 4297, 1, 1091, 4139, 8863, 1931, 8999, 1, 571, 1, 4637, 74747, 9413, 709, 1, 1, 1, 1, 2459, 79259, 587, 80407, 1, 81563, 1, 82727, 1, 1583, 1, 1, 10709, 1, 1, 1, 1, 88667, 11159, 1, 11311, 91099, 1433, 5431, 1, 93563, 1, 839, 1, 96059, 6043, 1, 3061, 1, 1, 2699, 739, 2467, 3181, 1151, 1, 1, 13049, 1439, 1, 106363, 6689, 107687, 1693, 2659, 13711, 110359, 13879, 6571, 1, 113063, 7109, 1, 14389, 2693, 14561, 3167, 1, 853, 3727, 119963, 15083, 121367, 15259, 2081, 1, 124199, 1, 125627, 929, 2083, 15973, 1201, 1, 129959, 1021, 1163, 16519, 132887, 16703, 134363, 2111, 1, 8537, 137339, 1, 8167, 17449, 1, 8819, 141863, 4457, 143387, 1, 1, 18211, 877, 1, 1663, 1, 149563, 18793, 1913, 1117, 4127, 1, 154279, 2423, 1973, 19583, 2971, 1, 2179, 1249, 3919, 10093, 9547, 20389, 163927, 20593, 9739, 10399, 1, 1, 1289, 21211, 4159, 21419, 1, 5407, 1, 1, 1, 1297, 177239, 1, 178939, 1, 180647, 1, 4241, 1, 184087, 1, 185819, 2917, 187559, 11777, 189307, 23773, 11239, 23993, 1277, 12107, 11447, 1, 196379, 24659, 3739, 1, 1, 6277, 201767, 1, 203579, 25561, 205399, 1, 207227, 13009, 209063, 1, 210907, 26479, 1409, 26711, 1367, 1, 5851, 1, 218363, 1, 3733, 1, 1, 1, 1427, 1, 13291, 1, 1193, 28603, 3767, 7211, 231719, 14543, 1, 1, 235607, 29573, 237563, 1, 239527, 1879, 1, 1783, 243479, 30559, 5987, 3851, 247463, 1, 2803, 1, 1303, 1, 4783, 15907, 15031, 8017, 1423, 32323, 15271, 32579, 1123, 8209, 6133, 16547, 265787, 33353, 267863, 33613, 269947, 16937, 272039, 1, 274139, 1, 276247, 2039, 278363, 1, 280487, 17597, 1, 35461, 284759, 35729, 2539, 1, 289063, 9067, 1, 1, 293399, 1, 17387, 1, 4079, 18679, 3797, 37633, 302167, 1, 5743, 1, 3881, 1, 308827, 1, 1579, 39023, 313307, 1, 315559, 19793, 3571, 39869, 1, 40153, 1, 20219, 324647, 10181, 326939, 41011, 1, 41299, 331547, 1, 1, 20939, 1481, 42169, 1, 42461, 340859, 21377, 1, 5381, 5857, 1, 3079, 1, 2351, 1373, 2777, 1301, 2383, 44533, 1997, 1, 8369, 22567, 5939, 1, 364699, 1, 367127, 1, 21739, 11587, 7019, 23327, 22027, 1, 1, 47269, 379387, 23789, 5231, 1, 1951, 1, 386839, 1, 2801, 1, 391847, 1, 394363, 2909, 396887, 1, 3049, 1, 401959, 12601, 404507, 50723, 1, 51043, 11071, 12841, 24247, 1, 414779, 52009, 24551, 1, 10243, 1, 422567, 1, 2203, 1, 1, 53639, 430427, 3373, 8171, 1597, 10627, 54629, 1, 1, 2309, 27647, 443687, 13907, 446363, 1, 1657, 56299, 3557, 14159, 3469, 1, 26891, 1549, 5167, 57653, 27211, 1, 465319, 1823, 468059, 58679, 10949, 59023, 12799, 1, 1993, 1, 6563, 3533, 481879, 1, 2297, 1787, 487463, 15277, 490267, 1499, 1, 1, 495899, 15541, 1, 31259, 501563, 62873, 29671, 1, 6421, 31793, 1, 7993, 9679, 64303, 3089, 64663, 518747, 1, 1, 32693, 8599, 1777, 527447, 3889, 2113, 1, 13007, 1, 536219, 67211, 539159, 67579, 8887, 16987, 545063, 34159, 2293, 1, 1, 69061, 32587, 1, 556967, 4363, 32939, 70183, 562967, 1907, 565979, 8867, 568999, 1, 572027, 71693, 575063, 72073, 1, 2131, 1, 1, 1, 1, 587287, 1, 590363, 1, 593447, 1, 13873, 74761, 2389, 75149, 1, 1, 1, 9491, 608987, 1, 36007, 1871, 615259, 1, 618407, 38749, 1, 77893, 624727, 1, 2143, 39343, 1, 1, 634267, 1, 637463, 1, 640667, 20071, 643879, 40343, 647099, 1, 650327, 1, 653563, 40949, 1733, 1, 1, 1, 663319, 1933, 1, 1, 669863, 41969, 1, 84349, 12763, 84761, 1, 1, 683047, 21397, 686363, 5059, 3853, 1, 693019, 1, 696359, 43627, 18911, 1, 9631, 88093, 706427, 44257, 709799, 11117, 1, 1, 1, 89783, 5669, 2819, 2503, 45317, 726779, 2221, 730199, 1, 8243, 45959, 1, 23087, 3877, 92779, 20107, 5483, 9461, 1, 2399, 2767, 1, 94513, 1, 94949, 1, 1, 764839, 1, 768347, 96263, 771863, 96703, 2683, 12143, 3343, 1, 46027, 1, 1867, 98473, 4091, 49459, 5323, 24841, 796699, 1, 1, 1, 803867, 1, 807463, 1, 811067, 1, 5861, 102061, 1, 51257, 20047, 1, 1, 103423, 1, 1, 1, 6521, 49207, 1, 840187, 105253, 49639, 1, 1, 53087, 851239, 1, 2749, 107099, 6761, 107563, 1, 1, 866087, 3191, 869819, 108961, 1, 1, 1, 54949, 2833, 3449, 884827, 1, 15061, 1, 20753, 1, 896167, 1,

6. Sequence of the polynom (only primes)

37, 17, 233, 41, 421, 601, 43, 773, 107, 937, 127, 1093, 73, 1381, 181, 89, 197, 1637, 53, 1753, 113, 1861, 239, 251, 2053, 131, 2137, 2213, 281, 2281, 2341, 2393, 151, 2437, 307, 2473, 311, 61, 157, 2521, 79, 149, 317, 59, 167, 379, 599, 827, 1063, 1307, 179, 1559, 211, 2087, 139, 313, 2647, 349, 2939, 193, 3547, 463, 3863, 503, 4519, 293, 673, 5563, 359, 5927, 191, 6299, 811, 6679, 859, 227, 439, 479, 7867, 1009, 487, 1061, 8699, 557, 9127, 1223, 10007, 1279, 10459, 1453, 11863, 12347, 787, 347, 409, 13339, 1699, 271, 457, 14887, 947, 907, 15959, 2029, 971, 1049, 17627, 2239, 18199, 2311, 1229, 19963, 2609, 21179, 21799, 691, 547, 2843, 23063, 751, 24359, 1543, 3169, 1511, 3253, 643, 1669, 27739, 3511, 28439, 29147, 461, 29863, 1889, 419, 31319, 32059, 2027, 619, 33563, 4243, 34327, 4339, 35099, 1109, 35879, 2267, 991, 37463, 4733, 2251, 2417, 39079, 617, 2347, 5039, 467, 42407, 2677, 44119, 5569, 44987, 45863, 1447, 46747, 47639, 6011, 48539, 1531, 3119, 50363, 6353, 51287, 6469, 661, 887, 6823, 883, 56999, 3593, 1567, 7309, 58967, 7433, 983, 3779, 1487, 61979, 863, 1489, 2017, 65063, 4099, 66107, 8329, 8461, 68219, 4297, 1091, 4139, 8863, 1931, 8999, 571, 4637, 74747, 9413, 709, 2459, 79259, 587, 80407, 81563, 82727, 1583, 10709, 88667, 11159, 11311, 91099, 1433, 5431, 93563, 839, 96059, 6043, 3061, 2699, 739, 2467, 3181, 1151, 13049, 1439, 106363, 6689, 107687, 1693, 2659, 13711, 110359, 13879, 6571, 113063, 7109, 14389, 2693, 14561, 3167, 853, 3727, 119963, 15083, 121367, 15259, 2081, 124199, 125627, 929, 2083, 15973, 1201, 129959, 1021, 1163, 16519, 132887, 16703, 134363, 2111, 8537, 137339, 8167, 17449, 8819, 141863, 4457, 143387, 18211, 877, 1663, 149563, 18793, 1913, 1117, 4127, 154279, 2423, 1973, 19583, 2971, 2179, 1249, 3919, 10093, 9547, 20389, 163927, 20593, 9739, 10399, 1289, 21211, 4159, 21419, 5407, 1297, 177239, 178939, 180647, 4241, 184087, 185819, 2917, 187559, 11777, 189307, 23773, 11239, 23993, 1277, 12107, 11447, 196379, 24659, 3739, 6277, 201767, 203579, 25561, 205399, 207227, 13009, 209063, 210907, 26479, 1409, 26711, 1367, 5851, 218363, 3733, 1427, 13291, 1193, 28603, 3767, 7211, 231719, 14543, 235607, 29573, 237563, 239527, 1879, 1783, 243479, 30559, 5987, 3851, 247463, 2803, 1303, 4783, 15907, 15031, 8017, 1423, 32323, 15271, 32579, 1123, 8209, 6133, 16547, 265787, 33353, 267863, 33613, 269947, 16937, 272039, 274139, 276247, 2039, 278363, 280487, 17597, 35461, 284759, 35729, 2539, 289063, 9067, 293399, 17387, 4079, 18679, 3797, 37633, 302167, 5743, 3881, 308827, 1579, 39023, 313307, 315559, 19793, 3571, 39869, 40153, 20219, 324647, 10181, 326939, 41011, 41299, 331547, 20939, 1481, 42169, 42461, 340859, 21377, 5381, 5857, 3079, 2351, 1373, 2777, 1301, 2383, 44533, 1997, 8369, 22567, 5939, 364699, 367127, 21739, 11587, 7019, 23327, 22027, 47269, 379387, 23789, 5231, 1951, 386839, 2801, 391847, 394363, 2909, 396887, 3049, 401959, 12601, 404507, 50723, 51043, 11071, 12841, 24247, 414779, 52009, 24551, 10243, 422567, 2203, 53639, 430427, 3373, 8171, 1597, 10627, 54629, 2309, 27647, 443687, 13907, 446363, 1657, 56299, 3557, 14159, 3469, 26891, 1549, 5167, 57653, 27211, 465319, 1823, 468059, 58679, 10949, 59023, 12799, 1993, 6563, 3533, 481879, 2297, 1787, 487463, 15277, 490267, 1499, 495899, 15541, 31259, 501563, 62873, 29671, 6421, 31793, 7993, 9679, 64303, 3089, 64663, 518747, 32693, 8599, 1777, 527447, 3889, 2113, 13007, 536219, 67211, 539159, 67579, 8887, 16987, 545063, 34159, 2293, 69061, 32587, 556967, 4363, 32939, 70183, 562967, 1907, 565979, 8867, 568999, 572027, 71693, 575063, 72073, 2131, 587287, 590363, 593447, 13873, 74761, 2389, 75149, 9491, 608987, 36007, 1871, 615259, 618407, 38749, 77893, 624727, 2143, 39343, 634267, 637463, 640667, 20071, 643879, 40343, 647099, 650327, 653563, 40949, 1733, 663319, 1933, 669863, 41969, 84349, 12763, 84761, 683047, 21397, 686363, 5059, 3853, 693019, 696359, 43627, 18911, 9631, 88093, 706427, 44257, 709799, 11117, 89783, 5669, 2819, 2503, 45317, 726779, 2221, 730199, 8243, 45959, 23087, 3877, 92779, 20107, 5483, 9461, 2399, 2767, 94513, 94949, 764839, 768347, 96263, 771863, 96703, 2683, 12143, 3343, 46027, 1867, 98473, 4091, 49459, 5323, 24841, 796699, 803867, 807463, 811067, 5861, 102061, 51257, 20047, 103423, 6521, 49207, 840187, 105253, 49639, 53087, 851239, 2749, 107099, 6761, 107563, 866087, 3191, 869819, 108961, 54949, 2833, 3449, 884827, 15061, 20753, 896167,

7. Distribution of the primes

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

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)
11010641.0000000.6000001.0000000.0000000.0000000.000000
21004220220.4200000.2000000.4200004.2000003.3333335.500000
31.0006542154390.6540000.2150000.65400015.57142810.75000019.954546
410.0006.9451.5915.3540.6945000.1591000.69450010.6192677.40000012.195900
5100.00069.96512.55257.4130.6996500.1255200.69965010.0741547.88937810.723385
61.000.000699.930102.189597.7410.6999300.1021890.69993010.0040028.14125310.411248
710.000.0006.988.149864.8296.123.3200.6988150.0864830.6988159.9840698.46303510.244102
8100.000.00069.805.1587.493.48862.311.6700.6980520.0749350.6980529.9890788.66470510.176126
91.000.000.000697.396.56866.123.347631.273.2210.6973970.0661230.6973979.9906168.82410810.130898
1010.000.000.0006.969.030.347591.781.5556.377.248.7920.6969030.0591780.6969039.9929238.94966110.102201


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
388531.0000000.6250000.3750001.6000001.6666671.500000
41614860.8750000.5000000.3750001.7500001.6000002.000000
5322814140.8750000.4375000.4375002.0000001.7500002.333333
6644220220.6562500.3125000.3437501.5000001.4285711.571429
71285430240.4218750.2343750.1875001.2857141.5000001.090909
825614365780.5585940.2539060.3046882.6481482.1666673.250000
95123191201990.6230470.2343750.3886722.2307691.8461542.551282
101.0246752204550.6591800.2148440.4443362.1159881.8333332.286432
112.0481.3944099850.6806640.1997070.4809572.0651851.8590912.164835
124.0962.8107472.0630.6860350.1823730.5036622.0157821.8264062.094416
138.1925.6771.3374.3400.6929930.1632080.5297852.0202851.7898262.103732
1416.38411.4212.4518.9700.6970830.1495970.5474852.0118021.8332092.066820
1532.76822.8964.56318.3330.6987300.1392520.5594792.0047281.8616892.043813
1665.53645.8628.57037.2920.6997990.1307680.5690312.0030571.8781502.034146
17131.07291.70816.00175.7070.6996770.1220780.5775991.9996511.8670952.030114
18262.144183.53729.982153.5550.7001380.1143720.5857662.0013191.8737582.028280
19524.288367.06256.545310.5170.7001150.1078510.5922641.9999351.8859652.022187
201.048.576733.904106.827627.0770.6999050.1018780.5980271.9994011.8892392.019461
212.097.1521.467.071202.4481.264.6230.6995540.0965350.6030191.9989961.8951012.016695
224.194.3042.932.749384.7192.548.0300.6992220.0917240.6074981.9990501.9003352.014853
238.388.6085.862.900733.9295.128.9710.6989120.0874910.6114211.9991141.9077012.012916
2416.777.21611.721.6621.401.90510.319.7570.6986650.0835600.6151051.9992941.9101372.012052
2533.554.43223.435.5942.682.98020.752.6140.6984350.0799590.6184761.9993411.9138102.010960
2667.108.86446.854.0355.146.74841.707.2870.6981800.0766930.6214871.9992681.9182952.009737
27134.217.72893.677.4219.890.61183.786.8100.6979510.0736910.6242601.9993461.9217212.008925
28268.435.456187.297.61419.031.354168.266.2600.6977380.0708970.6268411.9993891.9241842.008267
29536.870.912374.490.23336.670.298337.819.9350.6975420.0683040.6292391.9994391.9268362.007651
301.073.741.824748.804.17870.743.768678.060.4100.6973780.0658850.6314931.9995291.9291852.007165
312.147.483.6481.497.256.621136.678.6801.360.577.9410.6972140.0636460.6335681.9995301.9320242.006573
324.294.967.2962.993.891.130264.360.8532.729.530.2770.6970700.0615510.6355181.9995851.9341782.006155
338.589.934.5925.986.603.650511.879.8385.474.723.8120.6969320.0595910.6373421.9996061.9362922.005738
3417.179.869.18411.970.973.497992.196.80410.978.776.6930.6968020.0577530.6390491.9996271.9383392.005357


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
122111010
243211020
385322030
4168623050
532141045090
6642015590110
712830191195115
82566536299201125
951212050709481152
101.0242208513599411106
112.048409150259919811191
124.096747270477937011357
138.1921.337466871966111656
1416.3842.4518361.61591.208111.223
1532.7684.5631.5283.03592.289112.254
1665.5368.5702.8815.68994.266114.284
17131.07216.0015.37510.62697.968118.013
18262.14429.98210.04119.941915.0091114.953
19524.28856.54518.88737.658928.2701128.255
201.048.576106.82735.65471.173953.3421153.465
212.097.152202.44867.318135.1309101.07811101.350
224.194.304384.719128.147256.5729192.26511192.434
238.388.608733.929244.629489.3009367.01711366.892
2416.777.2161.401.905467.048934.8579700.81911701.066
2533.554.4322.682.980894.1591.788.82191.341.305111.341.655
2667.108.8645.146.7481.715.0573.431.69192.573.001112.573.727
27134.217.7289.890.6113.295.5046.595.10794.945.321114.945.270
28268.435.45619.031.3546.344.23012.687.12499.514.632119.516.702
29536.870.91236.670.29812.224.66824.445.630918.332.6101118.337.668
301.073.741.82470.743.76823.583.00947.160.759935.371.5601135.372.188
312.147.483.648136.678.68045.562.20591.116.475968.336.8801168.341.780
324.294.967.296264.360.85388.119.355176.241.4989132.179.71611132.181.117
338.589.934.592511.879.838170.625.234341.254.6049255.940.54311255.939.275
3417.179.869.184992.196.804330.729.387661.467.4179496.096.25911496.100.525


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
242022000
383122100
4166333201
532144105432
664227156664
7128249157674
825678413717241819
95121991079246534555
101.02445524620999123107126
112.048985524461221257226281
124.0962.0631.090973483543475562
138.1924.3402.2642.0761.0251.1131.0071.195
1416.3848.9704.6684.3022.1032.3862.0952.386
1532.76818.3339.4768.8574.3314.8364.3134.853
1665.53637.29219.23418.0588.8709.7628.8509.810
17131.07275.70738.83736.87018.07819.95917.88719.783
18262.144153.55578.77174.78436.74740.11636.74539.947
19524.288310.517159.223151.29474.59980.79374.57780.548
201.048.576627.077321.037306.040151.064162.604150.858162.551
212.097.1521.264.623646.468618.155304.986327.423304.726327.488
224.194.3042.548.0301.301.7741.246.256616.100657.945615.699658.286
238.388.6085.128.9712.617.1582.511.8131.241.5871.322.1501.241.6961.323.538
2416.777.21610.319.7575.261.1695.058.5882.502.2452.655.1132.502.7202.659.679
2533.554.43220.752.61410.568.15510.184.4595.040.1835.334.2905.041.1265.337.015
2667.108.86441.707.28721.222.12920.485.15810.145.45210.704.19910.146.62210.711.014
27134.217.72883.786.81042.606.25141.180.55920.407.78821.480.22820.408.71821.490.076
28268.435.456168.266.26085.501.89682.764.36441.031.19843.096.81341.032.29343.105.956
29536.870.912337.819.935171.547.343166.272.59282.476.28686.442.45282.453.38586.447.812
301.073.741.824678.060.410344.106.917333.953.493165.685.285173.338.248165.681.849173.355.028
312.147.483.6481.360.577.941690.063.960670.513.981332.760.521347.520.295332.751.931347.545.194
324.294.967.2962.729.530.2771.383.632.6151.345.897.662668.150.724696.604.676668.116.170696.658.707
338.589.934.5925.474.723.8122.773.804.8932.700.918.9191.341.173.5921.396.198.0341.341.129.4421.396.222.744
3417.179.869.18410.978.776.6935.559.907.7355.418.868.9582.691.466.2242.797.947.5112.691.417.7012.797.945.257


8. Check for existing Integer Sequences by OEIS

Found in Database : 37, 17, 233, 41, 421, 1, 601, 43, 773, 107, 937, 127, 1093, 73, 1, 1, 1381, 181, 89, 197,
Found in Database : 37, 17, 233, 41, 421, 601, 43, 773, 107, 937, 127, 1093, 73, 1381, 181, 89, 197, 1637, 53, 1753, 113, 1861, 239, 251, 2053, 131, 2137, 2213, 281, 2281, 2341, 2393, 151,
Found in Database : 17, 37, 41, 43, 53, 59, 61, 73, 79, 89, 107, 113, 127, 131, 139, 149,