Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:10:54
Deutsch
20.Apr 2024

Polynom = x^2-63x-31

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) = 31 = 31
f(1) = 93 = 3*31
f(2) = 153 = 3*3*17
f(3) = 211 = 211
f(4) = 267 = 3*89
f(5) = 321 = 3*107
f(6) = 373 = 373
f(7) = 423 = 3*3*47
f(8) = 471 = 3*157
f(9) = 517 = 11*47
f(10) = 561 = 3*11*17
f(11) = 603 = 3*3*67
f(12) = 643 = 643
f(13) = 681 = 3*227
f(14) = 717 = 3*239
f(15) = 751 = 751
f(16) = 783 = 3*3*3*29
f(17) = 813 = 3*271
f(18) = 841 = 29*29
f(19) = 867 = 3*17*17
f(20) = 891 = 3*3*3*3*11
f(21) = 913 = 11*83
f(22) = 933 = 3*311
f(23) = 951 = 3*317
f(24) = 967 = 967
f(25) = 981 = 3*3*109
f(26) = 993 = 3*331
f(27) = 1003 = 17*59
f(28) = 1011 = 3*337
f(29) = 1017 = 3*3*113
f(30) = 1021 = 1021
f(31) = 1023 = 3*11*31
f(32) = 1023 = 3*11*31
f(33) = 1021 = 1021
f(34) = 1017 = 3*3*113
f(35) = 1011 = 3*337
f(36) = 1003 = 17*59
f(37) = 993 = 3*331
f(38) = 981 = 3*3*109
f(39) = 967 = 967
f(40) = 951 = 3*317
f(41) = 933 = 3*311
f(42) = 913 = 11*83
f(43) = 891 = 3*3*3*3*11
f(44) = 867 = 3*17*17
f(45) = 841 = 29*29
f(46) = 813 = 3*271
f(47) = 783 = 3*3*3*29
f(48) = 751 = 751
f(49) = 717 = 3*239
f(50) = 681 = 3*227
f(51) = 643 = 643
f(52) = 603 = 3*3*67
f(53) = 561 = 3*11*17
f(54) = 517 = 11*47
f(55) = 471 = 3*157
f(56) = 423 = 3*3*47
f(57) = 373 = 373
f(58) = 321 = 3*107
f(59) = 267 = 3*89
f(60) = 211 = 211
f(61) = 153 = 3*3*17
f(62) = 93 = 3*31
f(63) = 31 = 31
f(64) = 33 = 3*11
f(65) = 99 = 3*3*11
f(66) = 167 = 167
f(67) = 237 = 3*79
f(68) = 309 = 3*103
f(69) = 383 = 383
f(70) = 459 = 3*3*3*17
f(71) = 537 = 3*179
f(72) = 617 = 617
f(73) = 699 = 3*233
f(74) = 783 = 3*3*3*29
f(75) = 869 = 11*79
f(76) = 957 = 3*11*29
f(77) = 1047 = 3*349
f(78) = 1139 = 17*67
f(79) = 1233 = 3*3*137
f(80) = 1329 = 3*443
f(81) = 1427 = 1427
f(82) = 1527 = 3*509
f(83) = 1629 = 3*3*181
f(84) = 1733 = 1733
f(85) = 1839 = 3*613
f(86) = 1947 = 3*11*59
f(87) = 2057 = 11*11*17
f(88) = 2169 = 3*3*241
f(89) = 2283 = 3*761
f(90) = 2399 = 2399
f(91) = 2517 = 3*839
f(92) = 2637 = 3*3*293
f(93) = 2759 = 31*89
f(94) = 2883 = 3*31*31
f(95) = 3009 = 3*17*59
f(96) = 3137 = 3137
f(97) = 3267 = 3*3*3*11*11
f(98) = 3399 = 3*11*103
f(99) = 3533 = 3533
f(100) = 3669 = 3*1223

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-63x-31

f(0)=31
f(1)=3
f(2)=17
f(3)=211
f(4)=89
f(5)=107
f(6)=373
f(7)=47
f(8)=157
f(9)=11
f(10)=1
f(11)=67
f(12)=643
f(13)=227
f(14)=239
f(15)=751
f(16)=29
f(17)=271
f(18)=1
f(19)=1
f(20)=1
f(21)=83
f(22)=311
f(23)=317
f(24)=967
f(25)=109
f(26)=331
f(27)=59
f(28)=337
f(29)=113
f(30)=1021
f(31)=1
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)=1
f(64)=1
f(65)=1
f(66)=167
f(67)=79
f(68)=103
f(69)=383
f(70)=1
f(71)=179
f(72)=617
f(73)=233
f(74)=1
f(75)=1
f(76)=1
f(77)=349
f(78)=1
f(79)=137
f(80)=443
f(81)=1427
f(82)=509
f(83)=181
f(84)=1733
f(85)=613
f(86)=1
f(87)=1
f(88)=241
f(89)=761
f(90)=2399
f(91)=839
f(92)=293
f(93)=1
f(94)=1
f(95)=1
f(96)=3137
f(97)=1
f(98)=1
f(99)=3533

b) Substitution of the polynom
The polynom f(x)=x^2-63x-31 could be written as f(y)= y^2-1023.25 with x=y+31.5

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.5
f'(x)>2x-64 with x > 32

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

31, 3, 17, 211, 89, 107, 373, 47, 157, 11, 1, 67, 643, 227, 239, 751, 29, 271, 1, 1, 1, 83, 311, 317, 967, 109, 331, 59, 337, 113, 1021, 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, 79, 103, 383, 1, 179, 617, 233, 1, 1, 1, 349, 1, 137, 443, 1427, 509, 181, 1733, 613, 1, 1, 241, 761, 2399, 839, 293, 1, 1, 1, 3137, 1, 1, 3533, 1223, 1, 3947, 1, 1, 151, 503, 1559, 439, 1, 571, 5297, 1, 1873, 5783, 661, 2039, 6287, 2153, 1, 619, 1, 2389, 7349, 1, 1, 7907, 2699, 307, 499, 263, 269, 313, 1031, 1, 9689, 3299, 1123, 607, 3511, 3583, 997, 1, 3803, 11633, 1, 1, 1, 1, 4261, 277, 491, 409, 1249, 1, 1, 467, 4909, 4993, 15233, 1721, 1, 16007, 1, 1, 1, 5689, 5779, 17609, 1987, 6053, 1, 367, 2111, 1753, 593, 6619, 20147, 757, 6911, 1237, 7109, 1, 21929, 7411, 683, 1, 1, 7823, 1399, 1, 2713, 853, 8353, 8461, 547, 1, 1, 26699, 9011, 3041, 1, 9349, 9463, 487, 359, 577, 2707, 1, 1129, 30839, 10399, 1, 541, 1, 10883, 1, 1, 1, 1, 11503, 401, 35267, 1, 12011, 461, 12269, 4133, 37589, 1151, 1163, 2281, 1451, 1, 39983, 13463, 1511, 463, 13873, 14011, 1, 433, 1, 1, 1, 4951, 44987, 15139, 1, 1493, 1, 1429, 4327, 1, 5387, 1, 1, 977, 1, 1879, 1, 51647, 1579, 1, 1, 1049, 17989, 54437, 6101, 18461, 673, 1, 1, 5209, 1, 19423, 58757, 1, 19913, 1, 653, 6803, 3631, 20743, 1901, 5749, 787, 21419, 1, 1, 2437, 1, 22279, 22453, 67883, 691, 2089, 69467, 23333, 1, 71069, 23869, 24049, 72689, 1, 24593, 1, 2269, 1, 75983, 823, 829, 983, 2897, 26261, 79349, 1567, 1, 7369, 27211, 1, 82787, 1, 27983, 84533, 1669, 1, 86297, 2633, 1, 88079, 1, 29759, 1, 30161, 1, 1951, 1061, 659, 773, 1, 1019, 1, 32003, 1193, 97259, 1, 32839, 99149, 11087, 1, 9187, 1, 1, 102983, 34543, 34759, 1, 11731, 2083, 1201, 3259, 1093, 108869, 1259, 1, 3823, 1, 1, 719, 37853, 4231, 1, 1, 1, 116969, 769, 1, 119039, 1, 13381, 2053, 40609, 1, 1, 1, 41549, 1871, 42023, 14087, 2161, 1, 42979, 1, 1, 1, 131837, 44189, 4937, 134033, 1, 2657, 136247, 1, 1481, 12589, 4219, 1, 140729, 47161, 2789, 947, 15973, 1, 145283, 1, 1483, 13417, 2909, 49711, 149909, 5581, 1741, 152249, 1759, 1, 1, 1, 4733, 877, 1, 52859, 3391, 1, 1, 1, 1, 54469, 14929, 1667, 937, 166667, 55829, 18701, 9949, 1, 56929, 171617, 2129, 1, 1439, 2011, 1, 6091, 883, 59443, 1, 1, 60293, 1, 1, 1, 2333, 61723, 62011, 6029, 1, 1, 189509, 3733, 1, 17467, 5849, 64633, 1787, 7247, 65519, 4201, 3889, 1, 1, 1, 1, 18439, 22637, 68213, 1, 68819, 23041, 208283, 1, 70039, 1, 2141, 6451, 12577, 2309, 1, 1297, 1229, 72823, 219407, 8161, 4339, 1, 6763, 2767, 225077, 1277, 2609, 2213, 1, 4507, 230819, 77261, 2351, 21247, 78229, 78553, 2851, 1553, 1187, 239567, 1, 1, 242519, 1, 1, 7919, 1, 82493, 248477, 1, 9277, 251483, 84163, 84499, 1361, 1, 1, 1, 1091, 28843, 260609, 87211, 87553, 15511, 1, 8053, 1, 89273, 29873, 269897, 90313, 5333, 273029, 10151, 1, 1, 1, 1, 1, 1, 5519, 1, 31511, 94889, 1, 95603, 1103, 1, 1, 97039, 6217, 32587, 98123, 1, 98849, 33071, 298733, 5879, 1, 27457, 1, 101411, 305339, 102149, 3797, 1, 3331, 3343, 1, 3163, 1, 2791, 105503, 1217, 1, 3677, 1, 322169, 35923, 1303, 29599, 9901, 2143, 329027, 110059, 1, 1, 1373, 111599, 335957, 1, 1, 30859, 113539, 1931, 7297, 38237, 1, 11177, 1, 1, 350033, 1, 1, 1, 1, 118661, 357179, 7027, 39953, 360779, 120661, 121063, 1, 1231, 122273, 21649, 123083, 13721, 1, 124303, 1, 375359, 41843, 1, 2027, 126761, 42391, 12347, 4129, 128413, 13327, 1, 1, 1, 11863, 3967, 393989, 131749, 132169, 1279, 14779, 1, 401567, 2857, 1663, 1, 12323, 135979, 409217, 2683, 1, 413069, 2341, 46183, 1423, 1, 12713, 1, 1, 1, 1, 1, 1, 428657, 1, 1, 25447, 1, 1, 2069, 1, 16267, 440537, 147289, 1, 1, 1, 149069, 1, 13633, 1, 452579, 1823, 1, 2551, 1, 153113, 460697, 1, 1, 1, 155383, 1, 468887, 17417, 157211, 473009, 158129, 1, 477149, 1, 14543, 481307, 53633, 161363, 1, 162293, 1, 489677, 9629, 1, 1, 5003, 165569, 498119, 1, 55661, 1, 1, 5807, 1, 1, 15439, 46447, 2549, 6343, 30307, 172219, 1, 519539, 1, 174143, 523877, 15919, 1, 11239, 1, 3767, 532607, 59341, 1, 536999, 1, 3529, 1, 16451, 6257, 6133, 1, 182933, 550283, 1, 1, 554747, 2347, 16901, 50839, 62303, 187409, 1, 11083, 62971, 7193, 1, 1747, 1, 5801, 17449, 33961, 1, 1, 581909, 194479, 194989, 586499, 1, 196523, 1, 17959, 1, 595733, 2237, 1, 1, 1, 11833, 605039, 1, 6143, 5039, 203761, 3049, 614417, 68443, 12109, 6011, 1831, 69143, 623867, 1723, 19001, 5563, 1, 210599, 21841, 211661, 1, 638177, 1, 1, 58453, 1, 215399, 20897, 6983, 72337, 4157, 1, 218629, 38677, 73237, 20023, 60217, 1, 73961, 667283, 1, 2693, 39541, 1, 225161, 14407, 1, 1, 682079, 1, 1, 6421, 1, 230123, 4583, 2927, 77263, 63367, 1, 1, 2243, 78193, 2833, 707099, 236261, 78941, 712157, 13997, 21683, 65203, 26627, 240209, 10781, 241343, 26879, 4019, 1, 1, 25261, 7417, 22303, 737717, 2393, 82351, 1, 248203, 248779, 6863, 83311, 8081, 1, 1, 1789, 44617, 1, 253993, 2081, 28351, 255743, 768983, 2357, 1, 1, 258673, 2423, 26881, 86813, 9001, 784859, 1, 5153, 1, 1, 1, 795533, 88591, 266369, 800897, 15739, 89387, 1, 8689, 1, 1, 1, 1, 10343, 16057, 1, 3413, 274783, 275389, 827987, 1, 1, 4457, 9601, 1979, 838949, 1, 1, 844457, 94033, 282713, 49999, 1, 8623, 855527, 1, 286411, 861089, 1, 1, 1, 289511, 32237, 1, 26489, 2729, 877883, 1, 1, 883517, 10177, 1, 30661, 297019, 27059, 81349, 5861, 5077, 3251, 300809, 1, 906233, 1, 1, 911957, 1, 27751, 13697, 1, 1, 29789, 6563, 3001, 1, 1, 311033, 1,

6. Sequence of the polynom (only primes)

31, 3, 17, 211, 89, 107, 373, 47, 157, 11, 67, 643, 227, 239, 751, 29, 271, 83, 311, 317, 967, 109, 331, 59, 337, 113, 1021, 167, 79, 103, 383, 179, 617, 233, 349, 137, 443, 1427, 509, 181, 1733, 613, 241, 761, 2399, 839, 293, 3137, 3533, 1223, 3947, 151, 503, 1559, 439, 571, 5297, 1873, 5783, 661, 2039, 6287, 2153, 619, 2389, 7349, 7907, 2699, 307, 499, 263, 269, 313, 1031, 9689, 3299, 1123, 607, 3511, 3583, 997, 3803, 11633, 4261, 277, 491, 409, 1249, 467, 4909, 4993, 15233, 1721, 16007, 5689, 5779, 17609, 1987, 6053, 367, 2111, 1753, 593, 6619, 20147, 757, 6911, 1237, 7109, 21929, 7411, 683, 7823, 1399, 2713, 853, 8353, 8461, 547, 26699, 9011, 3041, 9349, 9463, 487, 359, 577, 2707, 1129, 30839, 10399, 541, 10883, 11503, 401, 35267, 12011, 461, 12269, 4133, 37589, 1151, 1163, 2281, 1451, 39983, 13463, 1511, 463, 13873, 14011, 433, 4951, 44987, 15139, 1493, 1429, 4327, 5387, 977, 1879, 51647, 1579, 1049, 17989, 54437, 6101, 18461, 673, 5209, 19423, 58757, 19913, 653, 6803, 3631, 20743, 1901, 5749, 787, 21419, 2437, 22279, 22453, 67883, 691, 2089, 69467, 23333, 71069, 23869, 24049, 72689, 24593, 2269, 75983, 823, 829, 983, 2897, 26261, 79349, 1567, 7369, 27211, 82787, 27983, 84533, 1669, 86297, 2633, 88079, 29759, 30161, 1951, 1061, 659, 773, 1019, 32003, 1193, 97259, 32839, 99149, 11087, 9187, 102983, 34543, 34759, 11731, 2083, 1201, 3259, 1093, 108869, 1259, 3823, 719, 37853, 4231, 116969, 769, 119039, 13381, 2053, 40609, 41549, 1871, 42023, 14087, 2161, 42979, 131837, 44189, 4937, 134033, 2657, 136247, 1481, 12589, 4219, 140729, 47161, 2789, 947, 15973, 145283, 1483, 13417, 2909, 49711, 149909, 5581, 1741, 152249, 1759, 4733, 877, 52859, 3391, 54469, 14929, 1667, 937, 166667, 55829, 18701, 9949, 56929, 171617, 2129, 1439, 2011, 6091, 883, 59443, 60293, 2333, 61723, 62011, 6029, 189509, 3733, 17467, 5849, 64633, 1787, 7247, 65519, 4201, 3889, 18439, 22637, 68213, 68819, 23041, 208283, 70039, 2141, 6451, 12577, 2309, 1297, 1229, 72823, 219407, 8161, 4339, 6763, 2767, 225077, 1277, 2609, 2213, 4507, 230819, 77261, 2351, 21247, 78229, 78553, 2851, 1553, 1187, 239567, 242519, 7919, 82493, 248477, 9277, 251483, 84163, 84499, 1361, 1091, 28843, 260609, 87211, 87553, 15511, 8053, 89273, 29873, 269897, 90313, 5333, 273029, 10151, 5519, 31511, 94889, 95603, 1103, 97039, 6217, 32587, 98123, 98849, 33071, 298733, 5879, 27457, 101411, 305339, 102149, 3797, 3331, 3343, 3163, 2791, 105503, 1217, 3677, 322169, 35923, 1303, 29599, 9901, 2143, 329027, 110059, 1373, 111599, 335957, 30859, 113539, 1931, 7297, 38237, 11177, 350033, 118661, 357179, 7027, 39953, 360779, 120661, 121063, 1231, 122273, 21649, 123083, 13721, 124303, 375359, 41843, 2027, 126761, 42391, 12347, 4129, 128413, 13327, 11863, 3967, 393989, 131749, 132169, 1279, 14779, 401567, 2857, 1663, 12323, 135979, 409217, 2683, 413069, 2341, 46183, 1423, 12713, 428657, 25447, 2069, 16267, 440537, 147289, 149069, 13633, 452579, 1823, 2551, 153113, 460697, 155383, 468887, 17417, 157211, 473009, 158129, 477149, 14543, 481307, 53633, 161363, 162293, 489677, 9629, 5003, 165569, 498119, 55661, 5807, 15439, 46447, 2549, 6343, 30307, 172219, 519539, 174143, 523877, 15919, 11239, 3767, 532607, 59341, 536999, 3529, 16451, 6257, 6133, 182933, 550283, 554747, 2347, 16901, 50839, 62303, 187409, 11083, 62971, 7193, 1747, 5801, 17449, 33961, 581909, 194479, 194989, 586499, 196523, 17959, 595733, 2237, 11833, 605039, 6143, 5039, 203761, 3049, 614417, 68443, 12109, 6011, 1831, 69143, 623867, 1723, 19001, 5563, 210599, 21841, 211661, 638177, 58453, 215399, 20897, 6983, 72337, 4157, 218629, 38677, 73237, 20023, 60217, 73961, 667283, 2693, 39541, 225161, 14407, 682079, 6421, 230123, 4583, 2927, 77263, 63367, 2243, 78193, 2833, 707099, 236261, 78941, 712157, 13997, 21683, 65203, 26627, 240209, 10781, 241343, 26879, 4019, 25261, 7417, 22303, 737717, 2393, 82351, 248203, 248779, 6863, 83311, 8081, 1789, 44617, 253993, 2081, 28351, 255743, 768983, 2357, 258673, 2423, 26881, 86813, 9001, 784859, 5153, 795533, 88591, 266369, 800897, 15739, 89387, 8689, 10343, 16057, 3413, 274783, 275389, 827987, 4457, 9601, 1979, 838949, 844457, 94033, 282713, 49999, 8623, 855527, 286411, 861089, 289511, 32237, 26489, 2729, 877883, 883517, 10177, 30661, 297019, 27059, 81349, 5861, 5077, 3251, 300809, 906233, 911957, 27751, 13697, 29789, 6563, 3001, 311033,

7. Distribution of the primes

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

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)
1109360.9000000.3000000.6000000.0000000.0000000.000000
21004515300.4500000.1500000.3000005.0000005.0000005.000000
31.0006431285150.6430000.1280000.51500014.2888898.53333417.166666
410.0006.8558526.0030.6855000.0852000.60030010.6609646.65625011.656311
5100.00069.2416.63962.6020.6924100.0663900.62602010.1008027.79225310.428452
61.000.000692.93954.691638.2480.6929390.0546910.63824810.0076408.23783710.195330
710.000.0006.928.252462.5236.465.7290.6928250.0462520.6465739.9983588.45702210.130434
8100.000.00069.265.7784.012.16865.253.6100.6926580.0401220.6525369.9975838.67452610.092228
91.000.000.000692.621.72635.422.045657.199.6810.6926220.0354220.6572009.9994798.82865410.071469
1010.000.000.0006.926.065.870316.971.6476.609.094.2230.6926070.0316970.6609099.9997828.94842910.056448


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)
123121.5000000.5000001.0000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666672.0000001.500000
389361.1250000.3750000.7500001.8000001.5000002.000000
41614590.8750000.3125000.5625001.5555561.6666671.500000
532257180.7812500.2187500.5625001.7857141.4000002.000000
664257180.3906250.1093750.2812501.0000001.0000001.000000
71286321420.4921880.1640620.3281252.5200003.0000002.333333
8256148341140.5781250.1328120.4453122.3492061.6190482.714286
9512321662550.6269530.1289060.4980472.1689191.9411762.236842
101.0246591305290.6435550.1269530.5166022.0529591.9696972.074510
112.0481.3692101.1590.6684570.1025390.5659182.0773901.6153852.190926
124.0962.7833872.3960.6794430.0944820.5849612.0328711.8428572.067299
138.1925.5987144.8840.6833500.0871580.5961912.0114981.8449612.038397
1416.38411.2731.3159.9580.6880490.0802610.6077882.0137551.8417372.038903
1532.76822.5962.42120.1750.6895750.0738830.6156922.0044351.8410652.026009
1665.53645.2764.53740.7390.6908570.0692290.6216282.0037171.8740192.019281
17131.07290.7488.44582.3030.6923520.0644300.6279222.0043291.8613622.020251
18262.144181.62515.932165.6930.6928440.0607760.6320692.0014211.8865602.013207
19524.288363.27730.082333.1950.6928960.0573770.6355192.0001491.8881502.010918
201.048.576726.56357.146669.4170.6929040.0544990.6384062.0000251.8996742.009085
212.097.1521.453.231108.3971.344.8340.6929550.0516880.6412672.0001441.8968432.008963
224.194.3042.905.960205.8512.700.1090.6928350.0490790.6437561.9996551.8990472.007764
238.388.6085.811.896392.4835.419.4130.6928320.0467880.6460441.9999921.9066362.007109
2416.777.21611.622.548750.40310.872.1450.6927580.0447280.6480301.9997861.9119382.006148
2533.554.43223.243.4021.436.86921.806.5330.6927070.0428220.6498851.9998541.9147962.005725
2667.108.86446.484.7442.756.46743.728.2770.6926770.0410750.6516021.9999111.9183842.005283
27134.217.72892.966.4875.295.07887.671.4090.6926540.0394510.6532031.9999361.9209662.004913
28268.435.456185.928.27610.191.283175.736.9930.6926370.0379650.6546711.9999491.9246712.004496
29536.870.912371.854.61419.638.499352.216.1150.6926330.0365800.6560541.9999901.9269902.004223
301.073.741.824743.697.93837.895.576705.802.3620.6926230.0352930.6573301.9999691.9296572.003890
312.147.483.6481.487.378.44673.212.2181.414.166.2280.6926150.0340920.6585221.9999771.9319462.003629
324.294.967.2962.974.737.112141.599.4242.833.137.6880.6926100.0329690.6596411.9999871.9340962.003398
338.589.934.5925.949.448.294274.180.4695.675.267.8250.6926070.0319190.6606881.9999911.9363112.003174
3417.179.869.18411.898.850.358531.428.95211.367.421.4060.6926040.0309330.6616711.9999921.9382452.002975


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
121100001
242200101
383300111
4165500212
5327700223
6647700223
7128217143558
82563472789611
95126675915161718
101.024130712330353530
112.048210720349535949
124.0963877379919410696
138.1927147706170174188182
1416.3841.31571.307316340322337
1532.7682.42172.413609614593605
1665.5364.53774.5291.1311.1221.1341.150
17131.0728.44578.4372.0502.1112.1372.147
18262.14415.932715.9243.9533.9793.9974.003
19524.28830.082730.0747.5207.4867.5857.491
201.048.57657.146757.13814.29214.22414.37114.259
212.097.152108.3977108.38927.18926.97227.11927.117
224.194.304205.8517205.84351.65451.38251.56451.251
238.388.608392.4837392.47598.20597.94398.36297.973
2416.777.216750.4037750.395187.657187.304187.957187.485
2533.554.4321.436.86971.436.861359.048359.265359.740358.816
2667.108.8642.756.46772.756.459688.973688.819689.472689.203
27134.217.7285.295.07875.295.0701.323.6031.324.8421.323.6831.322.950
28268.435.45610.191.283710.191.2752.547.5762.548.0782.548.0032.547.626
29536.870.91219.638.499719.638.4914.906.1584.909.8354.911.3014.911.205
301.073.741.82437.895.576737.895.5689.471.5379.473.4729.475.7479.474.820
312.147.483.64873.212.218773.212.21018.301.50618.300.60418.305.70018.304.408
324.294.967.296141.599.4247141.599.41635.396.69635.400.50235.403.23535.398.991
338.589.934.592274.180.4697274.180.46168.541.89068.546.16068.552.53268.539.887
3417.179.869.184531.428.9527531.428.944132.853.094132.858.088132.864.842132.852.928


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
122011100
243022100
386142211
4169262412
532186114734
664186114734
71284217249131010
8256114605324342729
951225514111359657259
101.024529281247137128130134
112.0481.159609549281280305293
124.0962.3961.2671.128591608604593
138.1924.8842.5552.3281.2231.2121.2251.224
1416.3849.9585.1624.7952.4502.5342.5222.452
1532.76820.17510.4239.7514.9875.0705.0975.021
1665.53640.73921.10719.63110.08610.32010.19510.138
17131.07282.30342.68239.62020.55720.69120.54620.509
18262.144165.69385.61880.07441.32041.61641.55641.201
19524.288333.195171.880161.31483.26183.22483.60883.102
201.048.576669.417344.462324.954167.428167.340167.827166.822
212.097.1521.344.834690.824654.009336.561336.065336.323335.885
224.194.3042.700.1091.384.2811.315.827674.034676.369675.158674.548
238.388.6085.419.4132.776.8392.642.5731.353.2631.356.9151.354.6141.354.621
2416.777.21610.872.1455.565.1455.306.9992.717.4822.719.5632.717.8302.717.270
2533.554.43221.806.53311.146.96710.659.5655.449.5795.454.0745.452.3545.450.526
2667.108.86443.728.27722.333.39421.394.88210.929.85010.934.25710.931.67410.932.496
27134.217.72887.671.40944.736.66142.934.74721.916.77621.919.85621.917.72721.917.050
28268.435.456175.736.99389.602.84286.134.15043.930.83843.938.89943.931.69243.935.564
29536.870.912352.216.115179.438.876172.777.23888.051.16988.051.04088.056.98088.056.926
301.073.741.824705.802.362359.312.170346.490.191176.447.522176.448.130176.446.686176.460.024
312.147.483.6481.414.166.228719.447.138694.719.089353.541.760353.535.106353.546.903353.542.459
324.294.967.2962.833.137.6881.440.423.0761.392.714.611708.279.964708.270.888708.287.204708.299.632
338.589.934.5925.675.267.8252.883.725.3062.791.542.5181.418.825.5671.418.810.0391.418.803.7991.418.828.420
3417.179.869.18411.367.421.4065.772.823.4215.594.597.9842.841.851.5682.841.834.2442.841.833.6262.841.901.968


8. Check for existing Integer Sequences by OEIS

Found in Database : 31, 3, 17, 211, 89, 107, 373, 47, 157, 11, 1, 67, 643, 227, 239, 751, 29, 271, 1, 1,
Found in Database : 31, 3, 17, 211, 89, 107, 373, 47, 157, 11, 67, 643, 227, 239, 751, 29, 271, 83, 311, 317, 967, 109, 331, 59, 337, 113, 1021,
Found in Database : 3, 11, 17, 29, 31, 47, 59, 67, 79, 83, 89, 103, 107, 109, 113, 137,