Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:42:15
Deutsch
20.Apr 2024

Polynom = x^2-37x+3

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) = 3 = 3
f(1) = 33 = 3*11
f(2) = 67 = 67
f(3) = 99 = 3*3*11
f(4) = 129 = 3*43
f(5) = 157 = 157
f(6) = 183 = 3*61
f(7) = 207 = 3*3*23
f(8) = 229 = 229
f(9) = 249 = 3*83
f(10) = 267 = 3*89
f(11) = 283 = 283
f(12) = 297 = 3*3*3*11
f(13) = 309 = 3*103
f(14) = 319 = 11*29
f(15) = 327 = 3*109
f(16) = 333 = 3*3*37
f(17) = 337 = 337
f(18) = 339 = 3*113
f(19) = 339 = 3*113
f(20) = 337 = 337
f(21) = 333 = 3*3*37
f(22) = 327 = 3*109
f(23) = 319 = 11*29
f(24) = 309 = 3*103
f(25) = 297 = 3*3*3*11
f(26) = 283 = 283
f(27) = 267 = 3*89
f(28) = 249 = 3*83
f(29) = 229 = 229
f(30) = 207 = 3*3*23
f(31) = 183 = 3*61
f(32) = 157 = 157
f(33) = 129 = 3*43
f(34) = 99 = 3*3*11
f(35) = 67 = 67
f(36) = 33 = 3*11
f(37) = 3 = 3
f(38) = 41 = 41
f(39) = 81 = 3*3*3*3
f(40) = 123 = 3*41
f(41) = 167 = 167
f(42) = 213 = 3*71
f(43) = 261 = 3*3*29
f(44) = 311 = 311
f(45) = 363 = 3*11*11
f(46) = 417 = 3*139
f(47) = 473 = 11*43
f(48) = 531 = 3*3*59
f(49) = 591 = 3*197
f(50) = 653 = 653
f(51) = 717 = 3*239
f(52) = 783 = 3*3*3*29
f(53) = 851 = 23*37
f(54) = 921 = 3*307
f(55) = 993 = 3*331
f(56) = 1067 = 11*97
f(57) = 1143 = 3*3*127
f(58) = 1221 = 3*11*37
f(59) = 1301 = 1301
f(60) = 1383 = 3*461
f(61) = 1467 = 3*3*163
f(62) = 1553 = 1553
f(63) = 1641 = 3*547
f(64) = 1731 = 3*577
f(65) = 1823 = 1823
f(66) = 1917 = 3*3*3*71
f(67) = 2013 = 3*11*61
f(68) = 2111 = 2111
f(69) = 2211 = 3*11*67
f(70) = 2313 = 3*3*257
f(71) = 2417 = 2417
f(72) = 2523 = 3*29*29
f(73) = 2631 = 3*877
f(74) = 2741 = 2741
f(75) = 2853 = 3*3*317
f(76) = 2967 = 3*23*43
f(77) = 3083 = 3083
f(78) = 3201 = 3*11*97
f(79) = 3321 = 3*3*3*3*41
f(80) = 3443 = 11*313
f(81) = 3567 = 3*29*41
f(82) = 3693 = 3*1231
f(83) = 3821 = 3821
f(84) = 3951 = 3*3*439
f(85) = 4083 = 3*1361
f(86) = 4217 = 4217
f(87) = 4353 = 3*1451
f(88) = 4491 = 3*3*499
f(89) = 4631 = 11*421
f(90) = 4773 = 3*37*43
f(91) = 4917 = 3*11*149
f(92) = 5063 = 61*83
f(93) = 5211 = 3*3*3*193
f(94) = 5361 = 3*1787
f(95) = 5513 = 37*149
f(96) = 5667 = 3*1889
f(97) = 5823 = 3*3*647
f(98) = 5981 = 5981
f(99) = 6141 = 3*23*89
f(100) = 6303 = 3*11*191

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-37x+3

f(0)=3
f(1)=11
f(2)=67
f(3)=1
f(4)=43
f(5)=157
f(6)=61
f(7)=23
f(8)=229
f(9)=83
f(10)=89
f(11)=283
f(12)=1
f(13)=103
f(14)=29
f(15)=109
f(16)=37
f(17)=337
f(18)=113
f(19)=1
f(20)=1
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=41
f(39)=1
f(40)=1
f(41)=167
f(42)=71
f(43)=1
f(44)=311
f(45)=1
f(46)=139
f(47)=1
f(48)=59
f(49)=197
f(50)=653
f(51)=239
f(52)=1
f(53)=1
f(54)=307
f(55)=331
f(56)=97
f(57)=127
f(58)=1
f(59)=1301
f(60)=461
f(61)=163
f(62)=1553
f(63)=547
f(64)=577
f(65)=1823
f(66)=1
f(67)=1
f(68)=2111
f(69)=1
f(70)=257
f(71)=2417
f(72)=1
f(73)=877
f(74)=2741
f(75)=317
f(76)=1
f(77)=3083
f(78)=1
f(79)=1
f(80)=313
f(81)=1
f(82)=1231
f(83)=3821
f(84)=439
f(85)=1361
f(86)=4217
f(87)=1451
f(88)=499
f(89)=421
f(90)=1
f(91)=149
f(92)=1
f(93)=193
f(94)=1787
f(95)=1
f(96)=1889
f(97)=647
f(98)=5981
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-37x+3 could be written as f(y)= y^2-339.25 with x=y+18.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-18.5
f'(x)>2x-38 with x > 18

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

3, 11, 67, 1, 43, 157, 61, 23, 229, 83, 89, 283, 1, 103, 29, 109, 37, 337, 113, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 41, 1, 1, 167, 71, 1, 311, 1, 139, 1, 59, 197, 653, 239, 1, 1, 307, 331, 97, 127, 1, 1301, 461, 163, 1553, 547, 577, 1823, 1, 1, 2111, 1, 257, 2417, 1, 877, 2741, 317, 1, 3083, 1, 1, 313, 1, 1231, 3821, 439, 1361, 4217, 1451, 499, 421, 1, 149, 1, 193, 1787, 1, 1889, 647, 5981, 1, 191, 223, 1, 2267, 6971, 2381, 271, 1, 2557, 2617, 277, 1, 2801, 1, 2927, 997, 1, 3121, 3187, 227, 1, 3389, 1, 3527, 1, 11003, 3739, 1, 1, 1319, 1, 1, 1, 1, 13001, 401, 1, 1, 1549, 1, 14423, 4889, 1657, 15161, 467, 1, 1447, 599, 5477, 16691, 5651, 1913, 17483, 1, 6007, 1663, 2063, 571, 19121, 1, 1, 487, 1, 1, 563, 2347, 1, 21713, 1, 1, 22613, 7639, 7741, 23531, 883, 1, 569, 751, 2789, 2311, 8581, 8689, 26393, 2969, 1, 1, 9239, 1039, 1, 1, 881, 1279, 3307, 10037, 367, 10271, 3463, 1087, 10627, 977, 32603, 1, 1, 503, 1, 1, 941, 11731, 1, 35951, 1, 12239, 3373, 12497, 1, 38273, 12889, 449, 39461, 1, 13421, 3697, 13691, 419, 1, 1, 491, 43133, 1613, 14657, 431, 14939, 457, 1, 1, 15511, 701, 1, 1, 48281, 1, 607, 49613, 1, 1, 1, 1, 17291, 1217, 17597, 1, 53717, 18061, 18217, 5011, 1, 1699, 56543, 1, 6389, 2521, 19489, 1, 59441, 6659, 1831, 60917, 1861, 2293, 1, 1, 21139, 659, 7159, 21647, 1, 1999, 1, 6091, 1, 613, 68567, 853, 1009, 1, 23561, 1, 593, 24097, 2207, 1, 1, 24821, 75011, 1, 2819, 76667, 25741, 2357, 78341, 797, 26489, 1, 1, 1, 1901, 1193, 27631, 83471, 1, 28211, 1, 773, 1, 86981, 29191, 29389, 2399, 9929, 1, 8233, 30389, 1, 92381, 1, 761, 1327, 1, 31817, 4177, 1, 983, 97943, 1, 769, 99833, 1, 1, 101741, 34127, 11447, 1249, 1, 1, 9601, 11807, 1, 1109, 839, 1, 1543, 36739, 1607, 10141, 1, 1, 113567, 1, 1, 115601, 1, 1, 4057, 1, 3607, 119723, 1, 13457, 2971, 1, 1, 4273, 1, 41777, 126041, 1, 4721, 1, 42967, 43207, 130343, 14563, 1, 1489, 44417, 14887, 1, 1, 4127, 919, 5099, 1, 1, 1, 15629, 141413, 47389, 1, 6247, 1459, 1669, 145967, 829, 1, 2213, 49681, 49939, 3673, 1, 1237, 13903, 51239, 17167, 155291, 52027, 52291, 157667, 5869, 53087, 14551, 1, 1, 162473, 1471, 1, 1601, 18413, 55511, 4523, 1933, 1, 169817, 5171, 937, 4007, 19237, 1, 2609, 1, 19609, 177323, 5399, 59671, 1, 1, 60521, 182417, 61091, 1, 6379, 1511, 1, 17053, 20939, 5737, 2137, 63689, 7109, 1, 64567, 1753, 3313, 21817, 1, 1, 1, 1, 8731, 947, 67537, 1801, 1, 1, 1, 6277, 23117, 1, 1627, 2423, 1097, 23627, 1, 1123, 71807, 2671, 19753, 72739, 1, 1733, 1, 3217, 5437, 1051, 24979, 3701, 75571, 6899, 1, 1, 76847, 231503, 77489, 1, 1493, 1171, 78781, 5519, 1, 79757, 21841, 1, 8971, 243203, 3539, 81727, 246173, 1, 82721, 22651, 1367, 1, 1, 84391, 1, 255191, 3163, 1033, 258233, 1, 1, 6373, 7949, 2141, 264371, 1, 88811, 1, 89501, 1, 1, 8231, 1, 1, 30529, 1, 9547, 92639, 1, 280031, 2179, 1, 25747, 10529, 8647, 286421, 1571, 32063, 289643, 96907, 4229, 2687, 1, 8941, 1, 9007, 1, 299417, 1, 100537, 302711, 33757, 1, 306023, 1, 1181, 28123, 2797, 1, 312701, 1, 1721, 316067, 4597, 1, 1, 106861, 9749, 1, 35999, 108377, 3931, 109139, 1, 329711, 3803, 10061, 1, 1, 111827, 1483, 112601, 37663, 2447, 3923, 114157, 1, 1, 115331, 1, 1399, 1, 1, 2861, 3181, 8641, 1, 1949, 32533, 119687, 1213, 361463, 120889, 121291, 12589, 40699, 122501, 368717, 123311, 1, 372371, 11321, 1, 12967, 1, 1777, 8831, 126989, 42467, 1, 11657, 1, 1, 1, 129887, 1, 3533, 1619, 394673, 1, 3079, 1, 1931, 1, 9811, 134507, 1, 406067, 135781, 136207, 409901, 1, 1, 413753, 12577, 1, 417623, 1, 140071, 1373, 1, 141371, 425417, 1, 1, 1697, 143551, 1321, 7103, 1, 145307, 437243, 1, 1, 40111, 147517, 13451, 3203, 1, 149297, 1, 5179, 1, 1, 151537, 1, 1997, 1, 1, 461381, 154247, 17189, 2437, 2551, 1, 1, 1, 1, 43063, 158357, 1, 16477, 159739, 160201, 2957, 17903, 161591, 1, 1, 1, 1, 7127, 3823, 5557, 55109, 4481, 498803, 166739, 1, 1, 15287, 168631, 507317, 56527, 170057, 4967, 1, 57163, 12583, 1, 1, 47293, 1, 1, 22807, 1, 1, 1, 176791, 6113, 48481, 59417, 16249, 7573, 179717, 20023, 542093, 1, 1873, 1973, 60889, 16651, 14891, 16741, 1, 12917, 185641, 8093, 559913, 1, 187637, 2531, 1559, 1, 51721, 190147, 2297, 1, 2203, 1, 578021, 193181, 21521, 52963, 194707, 17747, 5387, 65413, 196751, 591791, 8599, 1, 3659, 199321, 1, 601061, 2029, 201389, 20887, 5471, 1, 2689, 203989, 204511, 615101, 6229, 206081, 1, 4817, 7691, 5527, 1847, 2351, 27361, 70099, 210827, 1, 211889, 1, 638861, 1, 214021, 14969, 23899, 3037, 10631, 1, 1, 1, 1, 218857, 17789, 1, 2273, 663071, 221567, 1, 4483, 1, 223747, 1, 1, 1, 677813, 226487, 75679, 682763, 228139, 3221, 1, 2837, 1, 692717, 231461, 77339, 7193, 8039, 233689, 702743, 1, 21397, 1, 21499, 26339, 712841, 1, 1, 717917, 2161, 240437, 5693, 21961, 80713, 1789, 3631, 4133, 2591, 1, 245561, 738401, 246707, 1, 2939, 248431, 22637, 25819, 1, 250739, 6917, 251897, 1, 759173, 253639, 1, 1, 1, 255971, 2459, 257141, 85909, 1, 2909, 6329, 780233, 2633, 1, 71413, 3917, 2039, 790871, 1, 264811, 796217, 88667, 1, 72871, 267791, 2711, 9067, 3797, 1, 812363, 1, 1, 7237, 1, 8297, 2647, 1, 1, 8543, 10253, 1, 834143, 4723, 93089, 839633, 1, 1, 76831, 94109, 1, 1, 1, 31643, 2333, 1, 1, 1, 95959, 26227, 1, 1, 96787, 872951, 1, 292231, 878567, 32609, 26737, 884201, 2441, 98663, 2027, 297247, 2143, 12613, 99713, 299771, 901211, 27367, 11173, 2843, 302941, 1, 5813, 1, 305489, 2953, 8291, 2383, 2897, 7529, 1, 1, 34513, 2089, 935717, 312551, 104399, 1, 314491, 28649, 16057, 1, 317087, 3709, 1, 35449, 5743, 1,

6. Sequence of the polynom (only primes)

3, 11, 67, 43, 157, 61, 23, 229, 83, 89, 283, 103, 29, 109, 37, 337, 113, 41, 167, 71, 311, 139, 59, 197, 653, 239, 307, 331, 97, 127, 1301, 461, 163, 1553, 547, 577, 1823, 2111, 257, 2417, 877, 2741, 317, 3083, 313, 1231, 3821, 439, 1361, 4217, 1451, 499, 421, 149, 193, 1787, 1889, 647, 5981, 191, 223, 2267, 6971, 2381, 271, 2557, 2617, 277, 2801, 2927, 997, 3121, 3187, 227, 3389, 3527, 11003, 3739, 1319, 13001, 401, 1549, 14423, 4889, 1657, 15161, 467, 1447, 599, 5477, 16691, 5651, 1913, 17483, 6007, 1663, 2063, 571, 19121, 487, 563, 2347, 21713, 22613, 7639, 7741, 23531, 883, 569, 751, 2789, 2311, 8581, 8689, 26393, 2969, 9239, 1039, 881, 1279, 3307, 10037, 367, 10271, 3463, 1087, 10627, 977, 32603, 503, 941, 11731, 35951, 12239, 3373, 12497, 38273, 12889, 449, 39461, 13421, 3697, 13691, 419, 491, 43133, 1613, 14657, 431, 14939, 457, 15511, 701, 48281, 607, 49613, 17291, 1217, 17597, 53717, 18061, 18217, 5011, 1699, 56543, 6389, 2521, 19489, 59441, 6659, 1831, 60917, 1861, 2293, 21139, 659, 7159, 21647, 1999, 6091, 613, 68567, 853, 1009, 23561, 593, 24097, 2207, 24821, 75011, 2819, 76667, 25741, 2357, 78341, 797, 26489, 1901, 1193, 27631, 83471, 28211, 773, 86981, 29191, 29389, 2399, 9929, 8233, 30389, 92381, 761, 1327, 31817, 4177, 983, 97943, 769, 99833, 101741, 34127, 11447, 1249, 9601, 11807, 1109, 839, 1543, 36739, 1607, 10141, 113567, 115601, 4057, 3607, 119723, 13457, 2971, 4273, 41777, 126041, 4721, 42967, 43207, 130343, 14563, 1489, 44417, 14887, 4127, 919, 5099, 15629, 141413, 47389, 6247, 1459, 1669, 145967, 829, 2213, 49681, 49939, 3673, 1237, 13903, 51239, 17167, 155291, 52027, 52291, 157667, 5869, 53087, 14551, 162473, 1471, 1601, 18413, 55511, 4523, 1933, 169817, 5171, 937, 4007, 19237, 2609, 19609, 177323, 5399, 59671, 60521, 182417, 61091, 6379, 1511, 17053, 20939, 5737, 2137, 63689, 7109, 64567, 1753, 3313, 21817, 8731, 947, 67537, 1801, 6277, 23117, 1627, 2423, 1097, 23627, 1123, 71807, 2671, 19753, 72739, 1733, 3217, 5437, 1051, 24979, 3701, 75571, 6899, 76847, 231503, 77489, 1493, 1171, 78781, 5519, 79757, 21841, 8971, 243203, 3539, 81727, 246173, 82721, 22651, 1367, 84391, 255191, 3163, 1033, 258233, 6373, 7949, 2141, 264371, 88811, 89501, 8231, 30529, 9547, 92639, 280031, 2179, 25747, 10529, 8647, 286421, 1571, 32063, 289643, 96907, 4229, 2687, 8941, 9007, 299417, 100537, 302711, 33757, 306023, 1181, 28123, 2797, 312701, 1721, 316067, 4597, 106861, 9749, 35999, 108377, 3931, 109139, 329711, 3803, 10061, 111827, 1483, 112601, 37663, 2447, 3923, 114157, 115331, 1399, 2861, 3181, 8641, 1949, 32533, 119687, 1213, 361463, 120889, 121291, 12589, 40699, 122501, 368717, 123311, 372371, 11321, 12967, 1777, 8831, 126989, 42467, 11657, 129887, 3533, 1619, 394673, 3079, 1931, 9811, 134507, 406067, 135781, 136207, 409901, 413753, 12577, 417623, 140071, 1373, 141371, 425417, 1697, 143551, 1321, 7103, 145307, 437243, 40111, 147517, 13451, 3203, 149297, 5179, 151537, 1997, 461381, 154247, 17189, 2437, 2551, 43063, 158357, 16477, 159739, 160201, 2957, 17903, 161591, 7127, 3823, 5557, 55109, 4481, 498803, 166739, 15287, 168631, 507317, 56527, 170057, 4967, 57163, 12583, 47293, 22807, 176791, 6113, 48481, 59417, 16249, 7573, 179717, 20023, 542093, 1873, 1973, 60889, 16651, 14891, 16741, 12917, 185641, 8093, 559913, 187637, 2531, 1559, 51721, 190147, 2297, 2203, 578021, 193181, 21521, 52963, 194707, 17747, 5387, 65413, 196751, 591791, 8599, 3659, 199321, 601061, 2029, 201389, 20887, 5471, 2689, 203989, 204511, 615101, 6229, 206081, 4817, 7691, 5527, 1847, 2351, 27361, 70099, 210827, 211889, 638861, 214021, 14969, 23899, 3037, 10631, 218857, 17789, 2273, 663071, 221567, 4483, 223747, 677813, 226487, 75679, 682763, 228139, 3221, 2837, 692717, 231461, 77339, 7193, 8039, 233689, 702743, 21397, 21499, 26339, 712841, 717917, 2161, 240437, 5693, 21961, 80713, 1789, 3631, 4133, 2591, 245561, 738401, 246707, 2939, 248431, 22637, 25819, 250739, 6917, 251897, 759173, 253639, 255971, 2459, 257141, 85909, 2909, 6329, 780233, 2633, 71413, 3917, 2039, 790871, 264811, 796217, 88667, 72871, 267791, 2711, 9067, 3797, 812363, 7237, 8297, 2647, 8543, 10253, 834143, 4723, 93089, 839633, 76831, 94109, 31643, 2333, 95959, 26227, 96787, 872951, 292231, 878567, 32609, 26737, 884201, 2441, 98663, 2027, 297247, 2143, 12613, 99713, 299771, 901211, 27367, 11173, 2843, 302941, 5813, 305489, 2953, 8291, 2383, 2897, 7529, 34513, 2089, 935717, 312551, 104399, 314491, 28649, 16057, 317087, 3709, 35449, 5743,

7. Distribution of the primes

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

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)
11010551.0000000.5000001.0000000.0000000.0000000.000000
21005521340.5500000.2100000.5500005.5000004.2000006.800000
31.0006671225450.6670000.1220000.66700012.1272735.80952416.029411
410.0006.8958726.0230.6895000.0872000.68950010.3373327.14754111.051376
5100.00069.4776.85162.6260.6947700.0685100.69477010.0764327.85665110.397808
61.000.000694.68156.246638.4350.6946810.0562460.6946819.9987198.20989610.194408
710.000.0006.941.608476.0476.465.5610.6941610.0476050.6941619.9925128.46365910.127203
8100.000.00069.393.3584.117.99165.275.3670.6939340.0411800.6939349.9967278.65038810.095856
91.000.000.000693.741.99836.339.900657.402.0980.6937420.0363400.6937429.9972398.82466710.071213
1010.000.000.0006.936.022.324325.169.9856.610.852.3390.6936020.0325170.6936029.9979868.94801510.056026


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
244221.0000000.5000000.5000001.3333331.0000002.000000
388531.0000000.6250000.3750002.0000002.5000001.500000
41615690.9375000.3750000.5625001.8750001.2000003.000000
532177100.5312500.2187500.3125001.1333331.1666671.111111
6643313200.5156250.2031250.3125001.9411761.8571432.000000
71287223490.5625000.1796880.3828122.1818181.7692312.450000
8256154411130.6015620.1601560.4414062.1388891.7826092.306123
9512331692620.6464840.1347660.5117192.1493511.6829272.318584
101.0246841245600.6679690.1210940.5468752.0664651.7971012.137405
112.0481.3762251.1510.6718750.1098630.5620122.0116961.8145162.055357
124.0962.7884092.3790.6806640.0998540.5808112.0261631.8177782.066898
138.1925.6417494.8920.6885990.0914310.5971682.0233141.8312962.056326
1416.38411.3451.34210.0030.6924440.0819090.6105352.0111681.7917222.044767
1532.76822.7272.51420.2130.6935730.0767210.6168522.0032611.8733232.020694
1665.53645.4954.68940.8060.6941990.0715480.6226502.0018041.8651552.018800
17131.07291.0618.78882.2730.6947400.0670470.6276932.0015611.8741742.016199
18262.144182.19416.448165.7460.6950150.0627440.6322712.0007911.8716432.014585
19524.288364.25431.022333.2320.6947590.0591700.6355901.9992641.8860652.010498
201.048.576728.44258.688669.7540.6946960.0559690.6387271.9998191.8918192.009873
212.097.1521.456.354111.5931.344.7610.6944440.0532120.6412321.9992721.9014622.007843
224.194.3042.912.398211.9682.700.4300.6943700.0505370.6438331.9997871.8994742.008111
238.388.6085.823.045404.2515.418.7940.6941610.0481900.6459711.9993991.9071322.006641
2416.777.21611.644.410771.29510.873.1150.6940610.0459730.6480881.9997121.9079612.006556
2533.554.43223.287.0991.475.31721.811.7820.6940100.0439680.6500421.9998521.9127792.006029
2667.108.86446.570.9922.828.87743.742.1150.6939620.0421540.6518081.9998621.9174712.005435
27134.217.72893.132.9085.433.48287.699.4260.6938940.0404830.6534121.9998051.9207202.004920
28268.435.456186.251.57210.455.913175.795.6590.6938410.0389510.6548901.9998471.9243482.004525
29536.870.912372.474.00720.149.996352.324.0110.6937870.0375320.6562551.9998441.9271392.004168
301.073.741.824744.892.54238.878.858706.013.6840.6937350.0362090.6575261.9998511.9294722.003876
312.147.483.6481.489.691.71975.108.9881.414.582.7310.6936920.0349750.6587161.9998751.9318722.003619
324.294.967.2962.979.205.062145.266.9072.833.938.1550.6936500.0338230.6598281.9998801.9340822.003374
338.589.934.5925.958.075.879281.273.8645.676.802.0150.6936110.0327450.6608671.9998881.9362552.003150
3417.179.869.18411.915.533.772545.172.37811.370.361.3940.6935750.0317330.6618421.9998961.9382262.002952


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
122100200
242100200
385300221
4166400321
5327501321
66413552443
7128235154775
8256415331111127
95126956118181815
101.024124511630293530
112.048225521754595260
124.096409540110510698100
138.1927495741191184180194
1416.3841.34251.334339326337340
1532.7682.51452.506619619637639
1665.5364.68954.6811.1761.1761.1651.172
17131.0728.78858.7802.1772.2172.1912.203
18262.14416.448516.4404.0914.1114.1164.130
19524.28831.022531.0147.7167.7507.8077.749
201.048.57658.688558.68014.55314.75114.73714.647
212.097.152111.5935111.58527.84328.02427.83327.893
224.194.304211.9685211.96053.02253.12052.84552.981
238.388.608404.2515404.243100.974101.293101.034100.950
2416.777.216771.2955771.287192.589193.161192.915192.630
2533.554.4321.475.31751.475.309368.699368.742369.348368.528
2667.108.8642.828.87752.828.869707.221706.704707.488707.464
27134.217.7285.433.48255.433.4741.358.4661.357.4631.359.5141.358.039
28268.435.45610.455.913510.455.9052.613.4852.612.5572.615.5172.614.354
29536.870.91220.149.996520.149.9885.037.8515.034.5085.039.4885.038.149
301.073.741.82438.878.858538.878.8509.717.9109.716.3309.724.8829.719.736
312.147.483.64875.108.988575.108.98018.772.87718.775.64418.783.03918.777.428
324.294.967.296145.266.9075145.266.89936.314.82936.314.04636.318.98536.319.047
338.589.934.592281.273.8645281.273.85670.319.87870.318.02370.319.62770.316.336
3417.179.869.184545.172.3785545.172.370136.290.953136.286.585136.293.656136.301.184


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
121010100
242110200
383210210
4169541341
53210552341
664201283863
712849282111141410
8256113595427292730
951226214212070606270
101.024560281279135136142147
112.0481.151602549277280293301
124.0962.3791.2511.128591588581619
138.1924.8922.5022.3901.2321.2001.2341.226
1416.38410.0035.1114.8922.5192.5152.4892.480
1532.76820.21310.4389.7755.0045.0795.1055.025
1665.53640.80621.01119.79510.32410.11710.18510.180
17131.07282.27342.01940.25420.58720.49020.48720.709
18262.144165.74684.60081.14641.34941.44541.59041.362
19524.288333.232169.962163.27083.40283.27283.27583.283
201.048.576669.754341.059328.695167.464167.570167.197167.523
212.097.1521.344.761684.391660.370336.202336.787335.516336.256
224.194.3042.700.4301.372.8751.327.555674.564675.769675.058675.039
238.388.6085.418.7942.753.0142.665.7801.354.2011.354.5081.355.2091.354.876
2416.777.21610.873.1155.520.9655.352.1502.717.4272.718.1932.717.8372.719.658
2533.554.43221.811.78211.067.01710.744.7655.453.0615.452.1655.452.3375.454.219
2667.108.86443.742.11522.179.78021.562.33510.935.16310.932.17810.936.57410.938.200
27134.217.72887.699.42644.442.45843.256.96821.921.67621.922.77321.928.72021.926.257
28268.435.456175.795.65989.036.63686.759.02343.947.61743.946.13343.957.08443.944.825
29536.870.912352.324.011178.361.020173.962.99188.078.07188.077.33488.087.50288.081.104
301.073.741.824706.013.684357.234.021348.779.663176.496.694176.495.944176.514.416176.506.630
312.147.483.6481.414.582.731715.460.342699.122.389353.640.825353.648.354353.646.823353.646.729
324.294.967.2962.833.938.1551.432.700.0481.401.238.107708.483.302708.470.201708.478.558708.506.094
338.589.934.5925.676.802.0152.868.805.4052.807.996.6101.419.178.4461.419.201.9591.419.198.3861.419.223.224
3417.179.869.18411.370.361.3945.744.088.9575.626.272.4372.842.533.8822.842.640.9022.842.592.2492.842.594.361


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 11, 67, 1, 43, 157, 61, 23, 229, 83, 89, 283, 1, 103, 29, 109, 37, 337, 113, 1,
Found in Database : 3, 11, 67, 43, 157, 61, 23, 229, 83, 89, 283, 103, 29, 109, 37, 337, 113, 41,
Found in Database : 3, 11, 23, 29, 37, 41, 43, 59, 61, 67, 71, 83, 89, 97, 103, 109, 113, 127, 139, 149,