Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:51:13
Deutsch
19.Apr 2024

Polynom = x^2-62x+83

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) = 83 = 83
f(1) = 11 = 11
f(2) = 37 = 37
f(3) = 47 = 47
f(4) = 149 = 149
f(5) = 101 = 101
f(6) = 253 = 11*23
f(7) = 151 = 151
f(8) = 349 = 349
f(9) = 197 = 197
f(10) = 437 = 19*23
f(11) = 239 = 239
f(12) = 517 = 11*47
f(13) = 277 = 277
f(14) = 589 = 19*31
f(15) = 311 = 311
f(16) = 653 = 653
f(17) = 341 = 11*31
f(18) = 709 = 709
f(19) = 367 = 367
f(20) = 757 = 757
f(21) = 389 = 389
f(22) = 797 = 797
f(23) = 407 = 11*37
f(24) = 829 = 829
f(25) = 421 = 421
f(26) = 853 = 853
f(27) = 431 = 431
f(28) = 869 = 11*79
f(29) = 437 = 19*23
f(30) = 877 = 877
f(31) = 439 = 439
f(32) = 877 = 877
f(33) = 437 = 19*23
f(34) = 869 = 11*79
f(35) = 431 = 431
f(36) = 853 = 853
f(37) = 421 = 421
f(38) = 829 = 829
f(39) = 407 = 11*37
f(40) = 797 = 797
f(41) = 389 = 389
f(42) = 757 = 757
f(43) = 367 = 367
f(44) = 709 = 709
f(45) = 341 = 11*31
f(46) = 653 = 653
f(47) = 311 = 311
f(48) = 589 = 19*31
f(49) = 277 = 277
f(50) = 517 = 11*47
f(51) = 239 = 239
f(52) = 437 = 19*23
f(53) = 197 = 197
f(54) = 349 = 349
f(55) = 151 = 151
f(56) = 253 = 11*23
f(57) = 101 = 101
f(58) = 149 = 149
f(59) = 47 = 47
f(60) = 37 = 37
f(61) = 11 = 11
f(62) = 83 = 83
f(63) = 73 = 73
f(64) = 211 = 211
f(65) = 139 = 139
f(66) = 347 = 347
f(67) = 209 = 11*19
f(68) = 491 = 491
f(69) = 283 = 283
f(70) = 643 = 643
f(71) = 361 = 19*19
f(72) = 803 = 11*73
f(73) = 443 = 443
f(74) = 971 = 971
f(75) = 529 = 23*23
f(76) = 1147 = 31*37
f(77) = 619 = 619
f(78) = 1331 = 11*11*11
f(79) = 713 = 23*31
f(80) = 1523 = 1523
f(81) = 811 = 811
f(82) = 1723 = 1723
f(83) = 913 = 11*83
f(84) = 1931 = 1931
f(85) = 1019 = 1019
f(86) = 2147 = 19*113
f(87) = 1129 = 1129
f(88) = 2371 = 2371
f(89) = 1243 = 11*113
f(90) = 2603 = 19*137
f(91) = 1361 = 1361
f(92) = 2843 = 2843
f(93) = 1483 = 1483
f(94) = 3091 = 11*281
f(95) = 1609 = 1609
f(96) = 3347 = 3347
f(97) = 1739 = 37*47
f(98) = 3611 = 23*157
f(99) = 1873 = 1873
f(100) = 3883 = 11*353

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-62x+83

f(0)=83
f(1)=11
f(2)=37
f(3)=47
f(4)=149
f(5)=101
f(6)=23
f(7)=151
f(8)=349
f(9)=197
f(10)=19
f(11)=239
f(12)=1
f(13)=277
f(14)=31
f(15)=311
f(16)=653
f(17)=1
f(18)=709
f(19)=367
f(20)=757
f(21)=389
f(22)=797
f(23)=1
f(24)=829
f(25)=421
f(26)=853
f(27)=431
f(28)=79
f(29)=1
f(30)=877
f(31)=439
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1
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)=73
f(64)=211
f(65)=139
f(66)=347
f(67)=1
f(68)=491
f(69)=283
f(70)=643
f(71)=1
f(72)=1
f(73)=443
f(74)=971
f(75)=1
f(76)=1
f(77)=619
f(78)=1
f(79)=1
f(80)=1523
f(81)=811
f(82)=1723
f(83)=1
f(84)=1931
f(85)=1019
f(86)=113
f(87)=1129
f(88)=2371
f(89)=1
f(90)=137
f(91)=1361
f(92)=2843
f(93)=1483
f(94)=281
f(95)=1609
f(96)=3347
f(97)=1
f(98)=157
f(99)=1873

b) Substitution of the polynom
The polynom f(x)=x^2-62x+83 could be written as f(y)= y^2-878 with x=y+31

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-31
f'(x)>2x-63 with x > 30

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

83, 11, 37, 47, 149, 101, 23, 151, 349, 197, 19, 239, 1, 277, 31, 311, 653, 1, 709, 367, 757, 389, 797, 1, 829, 421, 853, 431, 79, 1, 877, 439, 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, 73, 211, 139, 347, 1, 491, 283, 643, 1, 1, 443, 971, 1, 1, 619, 1, 1, 1523, 811, 1723, 1, 1931, 1019, 113, 1129, 2371, 1, 137, 1361, 2843, 1483, 281, 1609, 3347, 1, 157, 1873, 353, 2011, 181, 2153, 4451, 1, 1, 1, 5051, 1, 173, 251, 5683, 1, 6011, 3089, 577, 3259, 6691, 3433, 7043, 1, 673, 3793, 409, 1, 8147, 379, 449, 4363, 8923, 4561, 9323, 433, 263, 4969, 1, 5179, 1, 5393, 11003, 1, 11443, 307, 1, 1, 12347, 331, 557, 593, 359, 6761, 13763, 1, 14251, 659, 14747, 7499, 1, 7753, 1433, 8011, 857, 8273, 16811, 8539, 1, 383, 17891, 293, 18443, 1, 613, 9643, 19571, 9929, 20147, 929, 20731, 10513, 21323, 569, 1993, 11113, 22531, 601, 1, 317, 2161, 12043, 1061, 1, 1, 1153, 1117, 13009, 26347, 13339, 27011, 1, 1, 14011, 1, 463, 1, 14699, 1, 1, 823, 1, 2833, 15761, 31883, 701, 32611, 1499, 33347, 733, 467, 907, 34843, 1601, 35603, 947, 983, 18379, 1, 1, 457, 19163, 38723, 631, 3593, 19963, 1301, 20369, 1789, 1889, 1, 21193, 1861, 21611, 2297, 2003, 44491, 607, 1, 487, 4201, 1, 1, 23761, 47963, 24203, 4441, 1, 49747, 1321, 50651, 1, 51563, 1, 1693, 1151, 53411, 1, 54347, 27409, 55291, 27883, 5113, 1, 57203, 28843, 58171, 1, 1, 29819, 1, 30313, 3217, 2801, 1, 1, 63131, 677, 2789, 2939, 65171, 32843, 1, 1, 6113, 1093, 1453, 1811, 2237, 34939, 1, 1867, 71483, 36011, 1, 3323, 73651, 1613, 74747, 37649, 751, 1, 76963, 1, 691, 39323, 1, 1, 80347, 40459, 4289, 1109, 683, 41611, 1, 42193, 2741, 3889, 1, 1399, 3797, 43963, 88523, 4051, 1, 2377, 90931, 1237, 8377, 2441, 93371, 46993, 94603, 1013, 8713, 1, 1229, 48859, 98347, 1, 99611, 50123, 1277, 2207, 1, 4673, 103451, 1, 1, 1, 1, 53353, 1063, 54011, 1, 54673, 1, 55339, 111347, 56009, 112691, 5153, 114043, 3019, 3119, 58043, 5077, 1, 118147, 59419, 5197, 1279, 10993, 60811, 122323, 1, 123731, 62219, 1, 62929, 2693, 2053, 6737, 5851, 129443, 1759, 1, 65809, 132347, 1, 133811, 67273, 135283, 2957, 12433, 1, 138251, 69499, 139747, 70249, 12841, 1, 1, 71761, 919, 1, 1049, 883, 147347, 2389, 148891, 6803, 1, 75611, 152003, 967, 1, 1, 3301, 77969, 1, 997, 1, 79561, 1, 80363, 161531, 1, 163147, 1123, 164771, 82793, 166403, 1, 168043, 3671, 169691, 85259, 1, 1, 5581, 86923, 1, 1, 16033, 1, 1, 89449, 1039, 8209, 1, 91153, 1213, 911, 1, 8443, 1031, 93739, 1, 2557, 1571, 95483, 1, 1, 193603, 2069, 17761, 98129, 197147, 1193, 1, 1, 200723, 100811, 1, 2749, 204331, 1, 977, 103529, 207971, 1, 19073, 105361, 211643, 4621, 213491, 107209, 19577, 108139, 2617, 109073, 219083, 1, 2797, 1, 1, 1, 1, 10259, 1, 1, 1, 114761, 1, 3733, 232411, 116689, 1, 117659, 21481, 118633, 1, 119611, 240203, 1, 242171, 121579, 244147, 6451, 246131, 1, 1, 124561, 250123, 1, 22921, 5503, 254147, 127579, 2267, 5591, 23473, 1, 13697, 130633, 8461, 11969, 13913, 132689, 266411, 133723, 1, 12251, 270563, 1, 272651, 136849, 24977, 3727, 12037, 1, 3361, 7369, 1, 141073, 283211, 7481, 1, 1, 287491, 1, 289643, 145361, 9413, 13313, 4027, 4759, 6301, 1, 1, 149713, 15817, 1, 302723, 2081, 1459, 6653, 307147, 1951, 309371, 1283, 311603, 156361, 1999, 157483, 8543, 14419, 318347, 159739, 320611, 8467, 1, 162011, 325163, 1, 1, 164299, 1, 165449, 14437, 166603, 334363, 1, 336683, 1, 7213, 4597, 341347, 15569, 18089, 172433, 346043, 1249, 1667, 3719, 350771, 175979, 353147, 7703, 32321, 1, 1, 1, 360323, 16433, 11701, 1, 365147, 1, 2683, 16763, 370003, 9769, 372443, 2251, 1, 1, 377347, 2593, 379811, 190523, 1511, 1697, 10399, 193003, 1, 17659, 1, 1427, 392251, 1303, 1, 1, 397283, 1973, 4817, 6469, 1, 201809, 1, 1, 8669, 204361, 37273, 8941, 412571, 10891, 415147, 1, 417731, 11027, 420323, 210811, 422923, 1753, 2351, 1, 428147, 214729, 39161, 5839, 1, 217361, 3137, 1, 2099, 220009, 1, 1, 23369, 1, 19421, 224011, 449363, 225353, 1801, 1, 1, 228049, 9733, 229403, 3803, 230761, 4583, 1, 465611, 233489, 42577, 1, 471091, 10271, 6491, 21601, 476603, 10391, 479371, 240379, 1, 1, 2029, 3331, 15733, 244561, 2347, 245963, 1, 247369, 26113, 248779, 45361, 3167, 501803, 251611, 1, 23003, 507491, 3221, 22189, 3083, 1, 1, 1, 13619, 1487, 1, 47441, 1, 1, 1, 17021, 264553, 1, 8581, 3533, 7229, 1, 1, 539347, 2393, 2269, 11821, 28697, 24851, 1871, 274843, 29009, 2017, 50377, 1, 1, 7549, 560123, 280811, 51193, 282313, 566131, 1, 1, 25939, 24877, 1, 575203, 288361, 1, 1, 4243, 1, 584347, 1, 53401, 1, 15959, 296011, 1, 1997, 4931, 299099, 1699, 300649, 31729, 1, 4013, 1, 32057, 3023, 1, 1, 16631, 1783, 7829, 1, 1823, 1, 624803, 10103, 7949, 314779, 1, 16651, 634331, 317963, 7681, 1, 1, 321163, 27997, 322769, 647147, 1, 28277, 325993, 2129, 1663, 1, 329233, 2383, 330859, 34913, 332489, 60601, 7109, 35257, 10831, 1, 1, 21821, 339049, 679747, 14813, 14533, 31123, 686363, 14957, 1, 345673, 1, 1, 9539, 1, 1949, 18457, 63913, 352361, 706403, 354043, 19183, 1, 713147, 3163, 716531, 1, 1, 32801, 23333, 2309, 1, 1, 66377, 365929, 38609, 1, 19919, 369361, 1, 371083, 743891, 372809, 15901, 1, 5039, 2707, 754283, 378011, 757763, 1, 761251, 8117, 4871, 1, 1, 1, 771763, 10453, 5659, 1, 1, 390289, 25237, 392059, 2777, 35803, 789443, 395611, 41737, 1, 796571, 3299, 1831, 10837, 803731, 402763, 3191, 2953, 810923, 1, 814531, 408169, 74377, 1, 821771, 5641, 825403, 1979, 2027, 8839, 26861, 21961, 836347, 1, 1, 18301, 1, 422761, 1, 18461, 851051, 1, 854747, 428299, 78041, 1, 45377, 2861, 1, 39443, 1, 435739, 8647, 1, 877091, 39953, 6337, 441361, 38461, 443243, 80761, 1, 1, 447019, 28901, 23627, 1, 450811, 11437, 23827, 907331, 1, 911147, 456529, 914971, 1, 1, 41851, 922643, 4091, 4703, 20183, 1, 466139, 49169, 1,

6. Sequence of the polynom (only primes)

83, 11, 37, 47, 149, 101, 23, 151, 349, 197, 19, 239, 277, 31, 311, 653, 709, 367, 757, 389, 797, 829, 421, 853, 431, 79, 877, 439, 73, 211, 139, 347, 491, 283, 643, 443, 971, 619, 1523, 811, 1723, 1931, 1019, 113, 1129, 2371, 137, 1361, 2843, 1483, 281, 1609, 3347, 157, 1873, 353, 2011, 181, 2153, 4451, 5051, 173, 251, 5683, 6011, 3089, 577, 3259, 6691, 3433, 7043, 673, 3793, 409, 8147, 379, 449, 4363, 8923, 4561, 9323, 433, 263, 4969, 5179, 5393, 11003, 11443, 307, 12347, 331, 557, 593, 359, 6761, 13763, 14251, 659, 14747, 7499, 7753, 1433, 8011, 857, 8273, 16811, 8539, 383, 17891, 293, 18443, 613, 9643, 19571, 9929, 20147, 929, 20731, 10513, 21323, 569, 1993, 11113, 22531, 601, 317, 2161, 12043, 1061, 1153, 1117, 13009, 26347, 13339, 27011, 14011, 463, 14699, 823, 2833, 15761, 31883, 701, 32611, 1499, 33347, 733, 467, 907, 34843, 1601, 35603, 947, 983, 18379, 457, 19163, 38723, 631, 3593, 19963, 1301, 20369, 1789, 1889, 21193, 1861, 21611, 2297, 2003, 44491, 607, 487, 4201, 23761, 47963, 24203, 4441, 49747, 1321, 50651, 51563, 1693, 1151, 53411, 54347, 27409, 55291, 27883, 5113, 57203, 28843, 58171, 29819, 30313, 3217, 2801, 63131, 677, 2789, 2939, 65171, 32843, 6113, 1093, 1453, 1811, 2237, 34939, 1867, 71483, 36011, 3323, 73651, 1613, 74747, 37649, 751, 76963, 691, 39323, 80347, 40459, 4289, 1109, 683, 41611, 42193, 2741, 3889, 1399, 3797, 43963, 88523, 4051, 2377, 90931, 1237, 8377, 2441, 93371, 46993, 94603, 1013, 8713, 1229, 48859, 98347, 99611, 50123, 1277, 2207, 4673, 103451, 53353, 1063, 54011, 54673, 55339, 111347, 56009, 112691, 5153, 114043, 3019, 3119, 58043, 5077, 118147, 59419, 5197, 1279, 10993, 60811, 122323, 123731, 62219, 62929, 2693, 2053, 6737, 5851, 129443, 1759, 65809, 132347, 133811, 67273, 135283, 2957, 12433, 138251, 69499, 139747, 70249, 12841, 71761, 919, 1049, 883, 147347, 2389, 148891, 6803, 75611, 152003, 967, 3301, 77969, 997, 79561, 80363, 161531, 163147, 1123, 164771, 82793, 166403, 168043, 3671, 169691, 85259, 5581, 86923, 16033, 89449, 1039, 8209, 91153, 1213, 911, 8443, 1031, 93739, 2557, 1571, 95483, 193603, 2069, 17761, 98129, 197147, 1193, 200723, 100811, 2749, 204331, 977, 103529, 207971, 19073, 105361, 211643, 4621, 213491, 107209, 19577, 108139, 2617, 109073, 219083, 2797, 10259, 114761, 3733, 232411, 116689, 117659, 21481, 118633, 119611, 240203, 242171, 121579, 244147, 6451, 246131, 124561, 250123, 22921, 5503, 254147, 127579, 2267, 5591, 23473, 13697, 130633, 8461, 11969, 13913, 132689, 266411, 133723, 12251, 270563, 272651, 136849, 24977, 3727, 12037, 3361, 7369, 141073, 283211, 7481, 287491, 289643, 145361, 9413, 13313, 4027, 4759, 6301, 149713, 15817, 302723, 2081, 1459, 6653, 307147, 1951, 309371, 1283, 311603, 156361, 1999, 157483, 8543, 14419, 318347, 159739, 320611, 8467, 162011, 325163, 164299, 165449, 14437, 166603, 334363, 336683, 7213, 4597, 341347, 15569, 18089, 172433, 346043, 1249, 1667, 3719, 350771, 175979, 353147, 7703, 32321, 360323, 16433, 11701, 365147, 2683, 16763, 370003, 9769, 372443, 2251, 377347, 2593, 379811, 190523, 1511, 1697, 10399, 193003, 17659, 1427, 392251, 1303, 397283, 1973, 4817, 6469, 201809, 8669, 204361, 37273, 8941, 412571, 10891, 415147, 417731, 11027, 420323, 210811, 422923, 1753, 2351, 428147, 214729, 39161, 5839, 217361, 3137, 2099, 220009, 23369, 19421, 224011, 449363, 225353, 1801, 228049, 9733, 229403, 3803, 230761, 4583, 465611, 233489, 42577, 471091, 10271, 6491, 21601, 476603, 10391, 479371, 240379, 2029, 3331, 15733, 244561, 2347, 245963, 247369, 26113, 248779, 45361, 3167, 501803, 251611, 23003, 507491, 3221, 22189, 3083, 13619, 1487, 47441, 17021, 264553, 8581, 3533, 7229, 539347, 2393, 2269, 11821, 28697, 24851, 1871, 274843, 29009, 2017, 50377, 7549, 560123, 280811, 51193, 282313, 566131, 25939, 24877, 575203, 288361, 4243, 584347, 53401, 15959, 296011, 1997, 4931, 299099, 1699, 300649, 31729, 4013, 32057, 3023, 16631, 1783, 7829, 1823, 624803, 10103, 7949, 314779, 16651, 634331, 317963, 7681, 321163, 27997, 322769, 647147, 28277, 325993, 2129, 1663, 329233, 2383, 330859, 34913, 332489, 60601, 7109, 35257, 10831, 21821, 339049, 679747, 14813, 14533, 31123, 686363, 14957, 345673, 9539, 1949, 18457, 63913, 352361, 706403, 354043, 19183, 713147, 3163, 716531, 32801, 23333, 2309, 66377, 365929, 38609, 19919, 369361, 371083, 743891, 372809, 15901, 5039, 2707, 754283, 378011, 757763, 761251, 8117, 4871, 771763, 10453, 5659, 390289, 25237, 392059, 2777, 35803, 789443, 395611, 41737, 796571, 3299, 1831, 10837, 803731, 402763, 3191, 2953, 810923, 814531, 408169, 74377, 821771, 5641, 825403, 1979, 2027, 8839, 26861, 21961, 836347, 18301, 422761, 18461, 851051, 854747, 428299, 78041, 45377, 2861, 39443, 435739, 8647, 877091, 39953, 6337, 441361, 38461, 443243, 80761, 447019, 28901, 23627, 450811, 11437, 23827, 907331, 911147, 456529, 914971, 41851, 922643, 4091, 4703, 20183, 466139, 49169,

7. Distribution of the primes

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

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)
11010911.0000000.9000001.000000
2100514650.5100000.4600000.5100005.1000005.1111115.000000
31.0007123793330.7120000.3790000.71200013.9607848.23913066.599998
410.0007.3282.6614.6670.7328000.2661000.73280010.2921357.02110814.015015
5100.00072.72420.66652.0580.7272400.2066600.7272409.9241277.76625311.154489
61.000.000721.828168.038553.7900.7218280.1680380.7218289.9255828.13113310.637942
710.000.0007.176.7401.416.9245.759.8160.7176740.1416920.7176749.9424518.43216410.400723
8100.000.00071.441.63912.265.66559.175.9740.7144160.1226570.7144169.9546098.65654410.273935
91.000.000.000711.894.230108.127.172603.767.0580.7118940.1081270.7118949.9646968.81543410.202908
1010.000.000.0007.099.087.275966.664.7766.132.422.4990.7099090.0966660.7099099.9721108.94007310.156935


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.000000
245501.2500001.2500000.0000001.6666671.666667-nan
389811.1250001.0000000.1250001.8000001.600000inf
416151320.9375000.8125000.1250001.6666671.6250002.000000
532272430.8437500.7500000.0937501.8000001.8461541.500000
664282530.4375000.3906250.0468751.0370371.0416671.000000
71287059110.5468750.4609380.0859382.5000002.3600003.666667
8256168115530.6562500.4492190.2070312.4000001.9491534.818182
95123522161360.6875000.4218750.2656252.0952381.8782612.566038
101.0247313883430.7138670.3789060.3349612.0767051.7962962.522059
112.0481.4786867920.7216800.3349610.3867192.0218881.7680412.309038
124.0962.9991.2091.7900.7321780.2951660.4370122.0290931.7623912.260101
138.1926.0032.2473.7560.7327880.2742920.4584962.0016671.8585612.098324
1416.38411.9814.1347.8470.7312620.2523190.4789431.9958351.8397862.089191
1532.76823.9527.59316.3590.7309570.2317200.4992371.9991651.8367202.084746
1665.53647.71314.15833.5550.7280430.2160340.5120091.9920261.8646122.051164
17131.07295.18326.40868.7750.7261890.2014770.5247121.9949071.8652352.049620
18262.144190.09049.298140.7920.7251360.1880570.5370791.9971001.8667832.047139
19524.288379.20792.857286.3500.7232800.1771110.5461691.9948811.8835862.033851
201.048.576756.765175.614581.1510.7217070.1674790.5542291.9956511.8912312.029513
212.097.1521.510.592332.7211.177.8710.7203060.1586540.5616531.9961181.8946152.026790
224.194.3043.016.006631.6232.384.3830.7190720.1505910.5684811.9965721.8983562.024316
238.388.6086.022.9031.203.0574.819.8460.7179860.1434160.5745701.9969801.9047072.021423
2416.777.21612.026.8872.297.2039.729.6840.7168580.1369240.5799341.9968591.9094722.018671
2533.554.43224.019.2734.395.32319.623.9500.7158300.1309910.5848391.9971311.9133372.016916
2667.108.86447.978.8088.427.16039.551.6480.7149400.1255740.5893651.9975131.9173022.015478
27134.217.72895.842.28916.184.77879.657.5110.7140810.1205860.5934951.9975961.9205502.014013
28268.435.456191.464.56131.134.861160.329.7000.7132610.1159860.5972751.9977041.9237122.012738
29536.870.912382.530.74559.976.294322.554.4510.7125190.1117150.6008051.9979191.9263392.011820
301.073.741.824764.317.075115.678.862648.638.2130.7118260.1077340.6040911.9980541.9287432.010942
312.147.483.6481.527.259.922223.402.4361.303.857.4860.7111860.1040300.6071561.9982021.9312292.010146
324.294.967.2963.051.948.512431.972.6262.619.975.8860.7105870.1005760.6100111.9983161.9336082.009403
338.589.934.5926.099.081.306836.213.6655.262.867.6410.7100270.0973480.6126781.9984221.9358022.008746
3417.179.869.18412.189.157.9401.620.400.50410.568.757.4360.7095020.0943200.6151831.9985241.9377832.008175


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
123120210
245140221
388350242
41613490274
53224121202157
66425131203157
7128593029829157
825611558572271157
951221610611046148157
101.02438819519390276157
112.048686335351153511157
124.0961.209593616301886157
138.1922.2471.1271.1205741.651157
1416.3844.1342.0582.0761.0393.073157
1532.7687.5933.8513.7421.9175.654157
1665.53614.1587.1616.9973.62510.511157
17131.07226.40813.28313.1256.73019.656157
18262.14449.29824.80624.49212.43636.840157
19524.28892.85746.69646.16123.52769.308157
201.048.576175.61488.06787.54744.498131.094157
212.097.152332.721166.852165.86984.258248.441157
224.194.304631.623316.819314.804160.171471.430157
238.388.6081.203.057603.489599.568304.843898.192157
2416.777.2162.297.2031.152.3221.144.881581.4791.715.702157
2533.554.4324.395.3232.205.0782.190.2451.111.0323.284.269157
2667.108.8648.427.1604.228.0574.199.1032.129.4906.297.648157
27134.217.72816.184.7788.118.3268.066.4524.086.72612.098.030157
28268.435.45631.134.86115.617.31015.517.5517.860.14323.274.696157
29536.870.91259.976.29430.081.11029.895.18415.135.18544.841.087157
301.073.741.824115.678.86258.013.45957.665.40329.179.96486.498.876157
312.147.483.648223.402.436112.025.749111.376.68756.332.165167.070.249157
324.294.967.296431.972.626216.596.285215.376.341108.887.437323.085.167157
338.589.934.592836.213.665419.237.784416.975.881210.728.250625.485.393157
3417.179.869.1841.620.400.504812.295.482808.105.022408.227.5161.212.172.966157


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
381010001
4162110002
5323210003
6643210003
712811656203
82565327262410910
9512136736350253823
101.024343176167117719560
112.048792398394262159209162
124.0961.790905885554351481404
138.1923.7561.8641.8921.113760993890
1416.3847.8473.8913.9562.2761.6672.0551.849
1532.76816.3598.0798.2804.6933.5134.2383.915
1665.53633.55516.66016.8959.5027.3158.6938.045
17131.07268.77534.41334.36219.17315.29617.71016.596
18262.144140.79270.32970.46338.83431.62736.08534.246
19524.288286.350143.054143.29678.46265.08173.05369.754
201.048.576581.151290.337290.814158.560132.882148.186141.523
212.097.1521.177.871588.482589.389319.823271.122299.578287.348
224.194.3042.384.3831.191.8541.192.529644.764551.729605.777582.113
238.388.6084.819.8462.409.4872.410.3591.298.0871.120.8041.223.0311.177.924
2416.777.2169.729.6844.864.4404.865.2442.610.4662.272.0542.466.0882.381.076
2533.554.43219.623.9509.813.4379.810.5135.246.4354.603.1024.969.1254.805.288
2667.108.86439.551.64819.775.33519.776.31310.539.2669.309.71610.007.4609.695.206
27134.217.72879.657.51139.824.40039.833.11121.161.34318.809.52820.145.12919.541.511
28268.435.456160.329.70080.157.88880.171.81242.485.37537.965.91740.518.55839.359.850
29536.870.912322.554.451161.263.479161.290.97285.272.29476.570.09581.464.08379.247.979
301.073.741.824648.638.213324.283.795324.354.418171.085.466154.337.616163.756.077159.459.054
312.147.483.6481.303.857.486651.881.401651.976.085343.192.815310.899.708329.041.033320.723.930
324.294.967.2962.619.975.8861.309.916.8121.310.059.074688.293.094625.951.393660.906.457644.824.942
338.589.934.5925.262.867.6412.631.252.9292.631.614.7121.380.177.6781.259.647.2281.327.089.3931.295.953.342
3417.179.869.18410.568.757.4365.284.054.2435.284.703.1932.767.091.6942.533.802.8262.664.137.7222.603.725.194


8. Check for existing Integer Sequences by OEIS

Found in Database : 83, 11, 37, 47, 149, 101, 23, 151, 349, 197, 19, 239, 1, 277, 31, 311, 653, 1, 709, 367,
Found in Database : 83, 11, 37, 47, 149, 101, 23, 151, 349, 197, 19, 239, 277, 31, 311, 653, 709, 367, 757, 389, 797, 829, 421, 853, 431, 79, 877, 439,
Found in Database : 11, 19, 23, 31, 37, 47, 73, 79, 83, 101, 113, 137, 139, 149,