Inhaltsverzeichnis

Development of
Algorithmic Constructions

10:31:34
Deutsch
20.Apr 2024

Polynom = x^2-114x+107

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) = 107 = 107
f(1) = 3 = 3
f(2) = 117 = 3*3*13
f(3) = 113 = 113
f(4) = 333 = 3*3*37
f(5) = 219 = 3*73
f(6) = 541 = 541
f(7) = 321 = 3*107
f(8) = 741 = 3*13*19
f(9) = 419 = 419
f(10) = 933 = 3*311
f(11) = 513 = 3*3*3*19
f(12) = 1117 = 1117
f(13) = 603 = 3*3*67
f(14) = 1293 = 3*431
f(15) = 689 = 13*53
f(16) = 1461 = 3*487
f(17) = 771 = 3*257
f(18) = 1621 = 1621
f(19) = 849 = 3*283
f(20) = 1773 = 3*3*197
f(21) = 923 = 13*71
f(22) = 1917 = 3*3*3*71
f(23) = 993 = 3*331
f(24) = 2053 = 2053
f(25) = 1059 = 3*353
f(26) = 2181 = 3*727
f(27) = 1121 = 19*59
f(28) = 2301 = 3*13*59
f(29) = 1179 = 3*3*131
f(30) = 2413 = 19*127
f(31) = 1233 = 3*3*137
f(32) = 2517 = 3*839
f(33) = 1283 = 1283
f(34) = 2613 = 3*13*67
f(35) = 1329 = 3*443
f(36) = 2701 = 37*73
f(37) = 1371 = 3*457
f(38) = 2781 = 3*3*3*103
f(39) = 1409 = 1409
f(40) = 2853 = 3*3*317
f(41) = 1443 = 3*13*37
f(42) = 2917 = 2917
f(43) = 1473 = 3*491
f(44) = 2973 = 3*991
f(45) = 1499 = 1499
f(46) = 3021 = 3*19*53
f(47) = 1521 = 3*3*13*13
f(48) = 3061 = 3061
f(49) = 1539 = 3*3*3*3*19
f(50) = 3093 = 3*1031
f(51) = 1553 = 1553
f(52) = 3117 = 3*1039
f(53) = 1563 = 3*521
f(54) = 3133 = 13*241
f(55) = 1569 = 3*523
f(56) = 3141 = 3*3*349
f(57) = 1571 = 1571
f(58) = 3141 = 3*3*349
f(59) = 1569 = 3*523
f(60) = 3133 = 13*241
f(61) = 1563 = 3*521
f(62) = 3117 = 3*1039
f(63) = 1553 = 1553
f(64) = 3093 = 3*1031
f(65) = 1539 = 3*3*3*3*19
f(66) = 3061 = 3061
f(67) = 1521 = 3*3*13*13
f(68) = 3021 = 3*19*53
f(69) = 1499 = 1499
f(70) = 2973 = 3*991
f(71) = 1473 = 3*491
f(72) = 2917 = 2917
f(73) = 1443 = 3*13*37
f(74) = 2853 = 3*3*317
f(75) = 1409 = 1409
f(76) = 2781 = 3*3*3*103
f(77) = 1371 = 3*457
f(78) = 2701 = 37*73
f(79) = 1329 = 3*443
f(80) = 2613 = 3*13*67
f(81) = 1283 = 1283
f(82) = 2517 = 3*839
f(83) = 1233 = 3*3*137
f(84) = 2413 = 19*127
f(85) = 1179 = 3*3*131
f(86) = 2301 = 3*13*59
f(87) = 1121 = 19*59
f(88) = 2181 = 3*727
f(89) = 1059 = 3*353
f(90) = 2053 = 2053
f(91) = 993 = 3*331
f(92) = 1917 = 3*3*3*71
f(93) = 923 = 13*71
f(94) = 1773 = 3*3*197
f(95) = 849 = 3*283
f(96) = 1621 = 1621
f(97) = 771 = 3*257
f(98) = 1461 = 3*487
f(99) = 689 = 13*53
f(100) = 1293 = 3*431

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-114x+107

f(0)=107
f(1)=3
f(2)=13
f(3)=113
f(4)=37
f(5)=73
f(6)=541
f(7)=1
f(8)=19
f(9)=419
f(10)=311
f(11)=1
f(12)=1117
f(13)=67
f(14)=431
f(15)=53
f(16)=487
f(17)=257
f(18)=1621
f(19)=283
f(20)=197
f(21)=71
f(22)=1
f(23)=331
f(24)=2053
f(25)=353
f(26)=727
f(27)=59
f(28)=1
f(29)=131
f(30)=127
f(31)=137
f(32)=839
f(33)=1283
f(34)=1
f(35)=443
f(36)=1
f(37)=457
f(38)=103
f(39)=1409
f(40)=317
f(41)=1
f(42)=2917
f(43)=491
f(44)=991
f(45)=1499
f(46)=1
f(47)=1
f(48)=3061
f(49)=1
f(50)=1031
f(51)=1553
f(52)=1039
f(53)=521
f(54)=241
f(55)=523
f(56)=349
f(57)=1571
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-114x+107 could be written as f(y)= y^2-3142 with x=y+57

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-57
f'(x)>2x-115 with x > 56

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

107, 3, 13, 113, 37, 73, 541, 1, 19, 419, 311, 1, 1117, 67, 431, 53, 487, 257, 1621, 283, 197, 71, 1, 331, 2053, 353, 727, 59, 1, 131, 127, 137, 839, 1283, 1, 443, 1, 457, 103, 1409, 317, 1, 2917, 491, 991, 1499, 1, 1, 3061, 1, 1031, 1553, 1039, 521, 241, 523, 349, 1571, 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, 1, 1, 1, 1, 1, 1, 1, 1, 229, 193, 1, 827, 1, 1, 607, 449, 1, 1619, 293, 211, 1021, 1, 389, 191, 439, 929, 1471, 1033, 181, 263, 199, 1249, 1, 1361, 709, 233, 1, 1, 1, 571, 887, 5507, 1, 1, 3037, 2089, 359, 6659, 1, 1, 3631, 1, 1279, 7883, 1, 1, 4261, 971, 1493, 1, 1567, 3209, 379, 3361, 1, 1, 599, 3673, 433, 3833, 1, 11987, 2039, 1, 6367, 1, 2207, 13499, 2293, 4673, 1, 373, 823, 15083, 853, 5209, 7951, 5393, 1, 881, 2837, 641, 463, 1987, 1, 313, 1, 6353, 9679, 6553, 1109, 1559, 1, 6961, 10597, 1, 3637, 1, 1, 2531, 11551, 1, 1, 24083, 1, 1, 12541, 1, 1, 26099, 1, 8929, 13567, 9161, 4639, 397, 1, 1, 14629, 1097, 1, 30347, 5119, 797, 15727, 1, 1789, 32579, 1831, 11113, 1297, 11369, 5749, 34883, 5879, 1321, 1, 4051, 6143, 1, 6277, 12689, 19237, 997, 1, 673, 743, 13513, 20479, 1061, 6967, 42227, 7109, 4787, 21757, 1, 569, 44819, 1, 15233, 23071, 1, 1, 461, 2663, 1, 24421, 16433, 8293, 3863, 8447, 5683, 1, 643, 1, 4079, 1, 947, 1, 18313, 3079, 1511, 1, 1, 28687, 19289, 1, 829, 761, 739, 30181, 6763, 1, 3257, 10399, 1613, 1669, 21313, 3581, 1, 1213, 1693, 1, 1, 1, 68147, 11447, 7691, 2683, 1, 11807, 71387, 631, 653, 1, 1291, 1373, 74699, 1, 1, 1, 1973, 12919, 691, 13109, 8803, 39901, 1, 1, 1217, 13687, 1451, 41647, 27961, 1, 1, 4759, 28753, 1, 29153, 1129, 88667, 14879, 3329, 45247, 1, 15287, 7103, 15493, 31193, 1, 1, 5303, 1, 1, 877, 48991, 1, 1, 1, 1289, 11243, 863, 1, 17189, 103787, 1, 661, 52879, 1867, 1, 107747, 1, 2797, 54877, 36809, 18517, 111779, 18743, 967, 56911, 4241, 1, 115883, 19429, 39089, 1, 1069, 1, 1, 6709, 2131, 1, 40961, 20599, 1, 1, 4657, 1193, 1087, 21317, 1, 21559, 1, 65407, 3373, 7349, 7001, 2477, 1, 3559, 45329, 1753, 137483, 23039, 15443, 1, 1, 1811, 142019, 1, 811, 1223, 1, 1, 11279, 1, 49393, 1049, 1, 25087, 1, 25349, 16987, 76837, 1907, 1, 156059, 2011, 52553, 79231, 53089, 8893, 160883, 1, 2851, 1, 54713, 1447, 165779, 27767, 1, 84127, 18787, 28319, 2339, 28597, 4421, 86629, 1, 9719, 4751, 3271, 883, 1, 59729, 1, 9521, 30293, 1, 7057, 20483, 30869, 3511, 31159, 1, 94351, 4861, 3527, 191339, 1, 1091, 96997, 1, 1, 1019, 1733, 22051, 99679, 7417, 2579, 202067, 33829, 67961, 102397, 1, 1, 2843, 1, 983, 1481, 1, 1861, 1, 1, 1, 107941, 24091, 36293, 16823, 36607, 73529, 1, 74161, 12413, 1, 1, 1, 1, 1, 38197, 12113, 2963, 1, 6133, 26003, 1, 235979, 1, 6101, 1783, 1, 1487, 241883, 1, 1, 1, 81953, 41143, 4201, 1, 27763, 9649, 1, 1, 253907, 42487, 85313, 9883, 1, 14389, 3881, 14503, 1, 1, 1, 1, 5023, 44543, 1, 1, 2311, 2381, 1, 45589, 91529, 1, 92233, 1187, 278819, 1, 1319, 1, 1, 3643, 285227, 47717, 1, 7591, 1, 48437, 1181, 48799, 97961, 147487, 98689, 5503, 22943, 16631, 100153, 1151, 1, 1, 304883, 3923, 34123, 154111, 1, 1, 5281, 1, 1433, 157477, 105361, 17623, 318347, 17749, 8221, 160879, 2909, 1, 325187, 1, 1, 4441, 36643, 2903, 332099, 1, 5867, 12907, 112249, 18773, 3169, 6301, 113809, 13177, 114593, 57493, 346139, 1, 38723, 3299, 2999, 58679, 18593, 59077, 1, 9391, 9181, 6653, 5077, 1, 1657, 182047, 1, 1, 367739, 61493, 41131, 1, 1, 4793, 375083, 3301, 1, 189391, 1, 1, 29423, 21319, 1, 1709, 2437, 1, 1, 1, 14537, 196879, 43891, 66047, 397547, 5113, 7019, 2749, 1303, 1, 405179, 1, 135913, 204511, 136769, 1, 11159, 69029, 1, 1, 46451, 1889, 1327, 70327, 10853, 11173, 141961, 1, 1, 23879, 1, 16633, 144593, 1, 436427, 72959, 48787, 1, 16361, 73847, 1429, 74293, 149033, 224221, 1, 1, 6373, 1, 151729, 1, 1, 76543, 460619, 2081, 1, 232357, 51787, 1, 12671, 78367, 1, 236479, 158113, 1, 7121, 8861, 8419, 1, 1, 80677, 1, 1531, 54251, 2377, 54563, 1, 37991, 82549, 165569, 1, 2281, 9277, 1, 2153, 168409, 1, 169361, 84919, 1, 6569, 1543, 1, 6379, 86357, 519587, 2347, 13397, 1, 175129, 29269, 528299, 1549, 1, 2357, 9371, 89269, 4229, 89759, 1, 1, 60331, 1, 545939, 91237, 182969, 21169, 2591, 1, 2423, 10303, 9787, 279679, 1, 4933, 10639, 94229, 62987, 7681, 4871, 1, 572939, 1, 5189, 288751, 193009, 1, 582083, 32423, 195049, 15439, 196073, 7561, 31121, 98807, 1, 297967, 22129, 99839, 46199, 100357, 201233, 302629, 3019, 1, 46919, 1, 204361, 1, 1, 102967, 4877, 1, 23057, 1, 1879, 104549, 1, 1, 3571, 8563, 1979, 35381, 638459, 1, 16453, 1777, 2087, 1, 648107, 108287, 1, 326479, 1, 109367, 657827, 1, 220361, 1, 3119, 4111, 1, 37181, 223633, 25867, 224729, 1, 1, 113189, 1, 17959, 1949, 3089, 1, 114847, 1, 346207, 1, 38653, 13159, 38839, 1, 351229, 234713, 9049, 6869, 6221, 1, 356287, 4177, 1, 717659, 1, 240353, 1, 241489, 40343, 1, 1, 243769, 366511, 4621, 122743, 56783, 1, 4337, 1, 82787, 6551, 20231, 9619, 250673, 1, 251833, 1, 758987, 3251, 254161, 382117, 255329, 1, 2063, 1, 6607, 20389, 9587, 129719, 41057, 1, 1, 5531, 2003, 1, 790739, 44029, 264769, 1, 265961, 133279, 10979, 133877, 3313, 31033, 4729, 135077, 812267, 1, 1, 3821, 21013, 1, 22247, 15277, 275593, 7817, 1, 2351, 1, 1, 93083, 419791, 93491, 1, 845099, 141157, 14891, 425317, 284161, 1, 856187, 1, 286633, 430879, 287873, 144247, 1, 1, 96787, 436477, 32401, 146117, 3557, 146743, 7949, 23269,

6. Sequence of the polynom (only primes)

107, 3, 13, 113, 37, 73, 541, 19, 419, 311, 1117, 67, 431, 53, 487, 257, 1621, 283, 197, 71, 331, 2053, 353, 727, 59, 131, 127, 137, 839, 1283, 443, 457, 103, 1409, 317, 2917, 491, 991, 1499, 3061, 1031, 1553, 1039, 521, 241, 523, 349, 1571, 229, 193, 827, 607, 449, 1619, 293, 211, 1021, 389, 191, 439, 929, 1471, 1033, 181, 263, 199, 1249, 1361, 709, 233, 571, 887, 5507, 3037, 2089, 359, 6659, 3631, 1279, 7883, 4261, 971, 1493, 1567, 3209, 379, 3361, 599, 3673, 433, 3833, 11987, 2039, 6367, 2207, 13499, 2293, 4673, 373, 823, 15083, 853, 5209, 7951, 5393, 881, 2837, 641, 463, 1987, 313, 6353, 9679, 6553, 1109, 1559, 6961, 10597, 3637, 2531, 11551, 24083, 12541, 26099, 8929, 13567, 9161, 4639, 397, 14629, 1097, 30347, 5119, 797, 15727, 1789, 32579, 1831, 11113, 1297, 11369, 5749, 34883, 5879, 1321, 4051, 6143, 6277, 12689, 19237, 997, 673, 743, 13513, 20479, 1061, 6967, 42227, 7109, 4787, 21757, 569, 44819, 15233, 23071, 461, 2663, 24421, 16433, 8293, 3863, 8447, 5683, 643, 4079, 947, 18313, 3079, 1511, 28687, 19289, 829, 761, 739, 30181, 6763, 3257, 10399, 1613, 1669, 21313, 3581, 1213, 1693, 68147, 11447, 7691, 2683, 11807, 71387, 631, 653, 1291, 1373, 74699, 1973, 12919, 691, 13109, 8803, 39901, 1217, 13687, 1451, 41647, 27961, 4759, 28753, 29153, 1129, 88667, 14879, 3329, 45247, 15287, 7103, 15493, 31193, 5303, 877, 48991, 1289, 11243, 863, 17189, 103787, 661, 52879, 1867, 107747, 2797, 54877, 36809, 18517, 111779, 18743, 967, 56911, 4241, 115883, 19429, 39089, 1069, 6709, 2131, 40961, 20599, 4657, 1193, 1087, 21317, 21559, 65407, 3373, 7349, 7001, 2477, 3559, 45329, 1753, 137483, 23039, 15443, 1811, 142019, 811, 1223, 11279, 49393, 1049, 25087, 25349, 16987, 76837, 1907, 156059, 2011, 52553, 79231, 53089, 8893, 160883, 2851, 54713, 1447, 165779, 27767, 84127, 18787, 28319, 2339, 28597, 4421, 86629, 9719, 4751, 3271, 883, 59729, 9521, 30293, 7057, 20483, 30869, 3511, 31159, 94351, 4861, 3527, 191339, 1091, 96997, 1019, 1733, 22051, 99679, 7417, 2579, 202067, 33829, 67961, 102397, 2843, 983, 1481, 1861, 107941, 24091, 36293, 16823, 36607, 73529, 74161, 12413, 38197, 12113, 2963, 6133, 26003, 235979, 6101, 1783, 1487, 241883, 81953, 41143, 4201, 27763, 9649, 253907, 42487, 85313, 9883, 14389, 3881, 14503, 5023, 44543, 2311, 2381, 45589, 91529, 92233, 1187, 278819, 1319, 3643, 285227, 47717, 7591, 48437, 1181, 48799, 97961, 147487, 98689, 5503, 22943, 16631, 100153, 1151, 304883, 3923, 34123, 154111, 5281, 1433, 157477, 105361, 17623, 318347, 17749, 8221, 160879, 2909, 325187, 4441, 36643, 2903, 332099, 5867, 12907, 112249, 18773, 3169, 6301, 113809, 13177, 114593, 57493, 346139, 38723, 3299, 2999, 58679, 18593, 59077, 9391, 9181, 6653, 5077, 1657, 182047, 367739, 61493, 41131, 4793, 375083, 3301, 189391, 29423, 21319, 1709, 2437, 14537, 196879, 43891, 66047, 397547, 5113, 7019, 2749, 1303, 405179, 135913, 204511, 136769, 11159, 69029, 46451, 1889, 1327, 70327, 10853, 11173, 141961, 23879, 16633, 144593, 436427, 72959, 48787, 16361, 73847, 1429, 74293, 149033, 224221, 6373, 151729, 76543, 460619, 2081, 232357, 51787, 12671, 78367, 236479, 158113, 7121, 8861, 8419, 80677, 1531, 54251, 2377, 54563, 37991, 82549, 165569, 2281, 9277, 2153, 168409, 169361, 84919, 6569, 1543, 6379, 86357, 519587, 2347, 13397, 175129, 29269, 528299, 1549, 2357, 9371, 89269, 4229, 89759, 60331, 545939, 91237, 182969, 21169, 2591, 2423, 10303, 9787, 279679, 4933, 10639, 94229, 62987, 7681, 4871, 572939, 5189, 288751, 193009, 582083, 32423, 195049, 15439, 196073, 7561, 31121, 98807, 297967, 22129, 99839, 46199, 100357, 201233, 302629, 3019, 46919, 204361, 102967, 4877, 23057, 1879, 104549, 3571, 8563, 1979, 35381, 638459, 16453, 1777, 2087, 648107, 108287, 326479, 109367, 657827, 220361, 3119, 4111, 37181, 223633, 25867, 224729, 113189, 17959, 1949, 3089, 114847, 346207, 38653, 13159, 38839, 351229, 234713, 9049, 6869, 6221, 356287, 4177, 717659, 240353, 241489, 40343, 243769, 366511, 4621, 122743, 56783, 4337, 82787, 6551, 20231, 9619, 250673, 251833, 758987, 3251, 254161, 382117, 255329, 2063, 6607, 20389, 9587, 129719, 41057, 5531, 2003, 790739, 44029, 264769, 265961, 133279, 10979, 133877, 3313, 31033, 4729, 135077, 812267, 3821, 21013, 22247, 15277, 275593, 7817, 2351, 93083, 419791, 93491, 845099, 141157, 14891, 425317, 284161, 856187, 286633, 430879, 287873, 144247, 96787, 436477, 32401, 146117, 3557, 146743, 7949, 23269,

7. Distribution of the primes

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

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
21004815330.4800000.1500000.4800004.8000003.0000006.600000
31.0006461395070.6460000.1390000.64600013.4583339.26666615.363636
410.0006.8911.0265.8650.6891000.1026000.68910010.6671837.38129511.568048
5100.00069.4107.90561.5050.6941000.0790500.69410010.0725587.70467910.486786
61.000.000694.94964.450630.4990.6949490.0644500.69494910.0122328.15306810.251183
710.000.0006.946.167544.0146.402.1530.6946170.0544010.6946179.9952188.44086910.154105
8100.000.00069.425.2914.711.66464.713.6270.6942530.0471170.6942539.9947628.66092410.108104
91.000.000.000694.013.31641.534.522652.478.7940.6940130.0415350.6940139.9965508.81525510.082556
1010.000.000.0006.938.275.928371.333.7946.566.942.1340.6938280.0371330.6938289.9973248.94036610.064607


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
388441.0000000.5000000.5000001.6000001.3333332.000000
41615690.9375000.3750000.5625001.8750001.5000002.250000
532298210.9062500.2500000.6562501.9333331.3333332.333333
6644815330.7500000.2343750.5156251.6551721.8750001.571429
71285318350.4140620.1406250.2734381.1041671.2000001.060606
825613543920.5273440.1679690.3593752.5471702.3888892.628572
9512314822320.6132810.1601560.4531252.3259261.9069772.521739
101.0246601415190.6445310.1376950.5068362.1019111.7195122.237069
112.0481.3612601.1010.6645510.1269530.5375982.0621211.8439722.121387
124.0962.7834722.3110.6794430.1152340.5642092.0448201.8153852.099001
138.1925.6228714.7510.6862790.1063230.5799562.0201221.8453392.055820
1416.38411.3091.5979.7120.6902470.0974730.5927732.0115621.8335252.044201
1532.76822.6972.94519.7520.6926570.0898740.6027832.0069861.8440832.033773
1665.53645.4775.42440.0530.6939240.0827640.6111602.0036571.8417662.027795
17131.07291.00310.06980.9340.6942980.0768200.6174772.0010771.8563792.020673
18262.144182.10818.844163.2640.6946870.0718840.6228032.0011211.8714872.017249
19524.288364.44835.520328.9280.6951290.0677490.6273802.0012741.8849502.014700
201.048.576728.71767.293661.4240.6949590.0641760.6307831.9995091.8945102.010847
212.097.1521.457.310127.6591.329.6510.6949000.0608730.6340271.9998301.8970622.010285
224.194.3042.913.753242.4402.671.3130.6946930.0578020.6368911.9994051.8991222.009033
238.388.6085.826.479461.6675.364.8120.6945700.0550350.6395351.9996471.9042532.008305
2416.777.21611.652.340882.23910.770.1010.6945340.0525860.6419481.9998941.9109862.007545
2533.554.43223.300.0671.688.70421.611.3630.6943960.0503270.6440691.9996041.9141122.006607
2667.108.86446.593.8273.236.94843.356.8790.6943020.0482340.6460681.9997291.9168242.006207
27134.217.72893.175.7656.217.39686.958.3690.6942140.0463230.6478901.9997451.9207592.005642
28268.435.456186.331.79511.962.415174.369.3800.6941400.0445630.6495771.9997881.9240232.005205
29536.870.912372.627.14523.038.379349.588.7660.6940720.0429120.6511601.9998041.9258972.004875
301.073.741.824745.181.00044.432.479700.748.5210.6940040.0413810.6526231.9998031.9286292.004494
312.147.483.6481.490.236.31185.810.0041.404.426.3070.6939450.0399580.6539871.9998311.9312452.004180
324.294.967.2962.980.232.696165.938.1372.814.294.5590.6938890.0386350.6552541.9998391.9337862.003875
338.589.934.5925.960.014.616321.213.1125.638.801.5040.6938370.0373940.6564431.9998491.9357402.003629
3417.179.869.18411.919.247.354622.458.62311.296.788.7310.6937920.0362320.6575601.9998691.9378372.003402
3534.359.738.36823.837.115.1991.207.386.76922.629.728.4300.6937510.0351400.6586121.9998841.9397062.003200
3668.719.476.73647.671.757.5462.344.132.76045.327.624.7860.6937150.0341120.6596041.9998961.9414932.003012


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
122010200
243021200
384121210
4166231320
5328431340
66415683660
7128187103861
8256432121319129
95128243383362122
101.02414172683663240
112.04826013312631246271
124.0964722422293227122120
138.1928714434273425213230
1416.3841.5978087883786399409
1532.7682.9451.4981.44631.444748750
1665.5365.4242.7502.67332.6711.3691.381
17131.07210.0695.1014.96734.9652.5502.551
18262.14418.8449.5069.33739.3354.7664.740
19524.28835.52017.96417.555317.5539.0258.939
201.048.57667.29334.05733.235333.23317.08116.976
212.097.152127.65964.58263.076363.07432.37032.212
224.194.304242.440122.440119.9993119.99761.45360.987
238.388.608461.667233.673227.9933227.991117.072116.601
2416.777.216882.239446.164436.0743436.072223.189222.975
2533.554.4321.688.704853.620835.0833835.081426.645426.975
2667.108.8643.236.9481.635.5501.601.39731.601.395817.337818.213
27134.217.7286.217.3963.139.5073.077.88833.077.8861.569.3701.570.137
28268.435.45611.962.4156.037.3695.925.04535.925.0433.018.4463.018.923
29536.870.91223.038.37911.627.24511.411.133311.411.1315.811.9135.815.332
301.073.741.82444.432.47922.416.17022.016.308322.016.30611.207.37411.208.796
312.147.483.64885.810.00443.275.08642.534.917342.534.91521.636.09121.638.995
324.294.967.296165.938.13783.653.67482.284.462382.284.46041.827.83941.825.835
338.589.934.592321.213.112161.897.067159.316.0443159.316.04280.947.34980.949.718
3417.179.869.184622.458.623313.642.828308.815.7943308.815.792156.818.598156.824.230
3534.359.738.3681.207.386.769608.238.707599.148.0613599.148.059304.122.221304.116.486
3668.719.476.7362.344.132.7601.180.643.6391.163.489.12031.163.489.118590.328.413590.315.226


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
121100010
242200020
384401120
4169631233
5322110114647
66433171679611
712835171889711
825692484433151826
951223211112171435365
101.02451925426516393126137
112.0481.101547554331206284280
124.0962.3111.1611.150681462595573
138.1924.7512.3672.3841.3989931.1891.171
1416.3849.7124.8664.8462.7852.0472.4532.427
1532.76819.7529.8809.8725.6094.2075.0034.933
1665.53640.05320.08419.96911.1568.70010.07510.122
17131.07280.93440.52140.41322.62917.56720.36720.371
18262.144163.26481.80681.45845.25836.01240.97941.015
19524.288328.928164.644164.28490.73472.97882.67982.537
201.048.576661.424331.086330.338181.446147.974166.201165.803
212.097.1521.329.651665.190664.461363.465299.463333.664333.059
224.194.3042.671.3131.336.7281.334.585727.438605.309669.516669.050
238.388.6085.364.8122.684.6382.680.1741.455.0841.221.5161.344.7781.343.434
2416.777.21610.770.1015.387.4675.382.6342.910.7902.463.6282.699.0492.696.634
2533.554.43221.611.36310.807.60310.803.7605.822.4664.967.5375.413.9195.407.441
2667.108.86443.356.87921.684.40721.672.47211.643.11810.003.93710.859.26710.850.557
27134.217.72886.958.36943.493.87943.464.49023.283.25720.139.90021.775.54521.759.667
28268.435.456174.369.38087.207.97887.161.40246.563.22340.517.58543.660.08543.628.487
29536.870.912349.588.766174.832.015174.756.75193.115.01981.486.39787.519.37587.467.975
301.073.741.824700.748.521350.448.507350.300.014186.215.947163.796.845175.418.567175.317.162
312.147.483.6481.404.426.307702.330.528702.095.779372.408.114329.128.727351.523.411351.366.055
324.294.967.2962.814.294.5591.407.394.3821.406.900.177744.802.898661.098.368704.361.660704.031.633
338.589.934.5925.638.801.5042.819.833.2302.818.968.2741.489.547.3571.327.544.6501.411.178.4721.410.531.025
3417.179.869.18411.296.788.7315.649.229.1885.647.559.5432.978.931.0742.665.136.9872.826.985.3072.825.735.363
3534.359.738.36822.629.728.43011.316.386.68611.313.341.7445.957.680.6985.349.076.4445.662.592.4905.660.378.798
3668.719.476.73645.327.624.78622.666.730.12022.660.894.66611.915.051.68210.733.602.71911.341.534.34311.337.436.042


8. Check for existing Integer Sequences by OEIS

Found in Database : 107, 3, 13, 113, 37, 73, 541, 1, 19, 419, 311, 1, 1117, 67, 431, 53, 487, 257, 1621, 283,
Found in Database : 107, 3, 13, 113, 37, 73, 541, 19, 419, 311, 1117, 67, 431, 53, 487, 257, 1621, 283, 197, 71, 331, 2053, 353, 727, 59, 131, 127, 137, 839, 1283, 443, 457, 103, 1409,
Found in Database : 3, 13, 19, 37, 53, 59, 67, 71, 73, 103, 107, 113, 127, 131, 137,