Inhaltsverzeichnis

Development of
Algorithmic Constructions

00:44:13
Deutsch
17.Apr 2024

Polynom = x^2+92x-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) = 45 = 3*3*5
f(2) = 185 = 5*37
f(3) = 141 = 3*47
f(4) = 381 = 3*127
f(5) = 241 = 241
f(6) = 585 = 3*3*5*13
f(7) = 345 = 3*5*23
f(8) = 797 = 797
f(9) = 453 = 3*151
f(10) = 1017 = 3*3*113
f(11) = 565 = 5*113
f(12) = 1245 = 3*5*83
f(13) = 681 = 3*227
f(14) = 1481 = 1481
f(15) = 801 = 3*3*89
f(16) = 1725 = 3*5*5*23
f(17) = 925 = 5*5*37
f(18) = 1977 = 3*659
f(19) = 1053 = 3*3*3*3*13
f(20) = 2237 = 2237
f(21) = 1185 = 3*5*79
f(22) = 2505 = 3*5*167
f(23) = 1321 = 1321
f(24) = 2781 = 3*3*3*103
f(25) = 1461 = 3*487
f(26) = 3065 = 5*613
f(27) = 1605 = 3*5*107
f(28) = 3357 = 3*3*373
f(29) = 1753 = 1753
f(30) = 3657 = 3*23*53
f(31) = 1905 = 3*5*127
f(32) = 3965 = 5*13*61
f(33) = 2061 = 3*3*229
f(34) = 4281 = 3*1427
f(35) = 2221 = 2221
f(36) = 4605 = 3*5*307
f(37) = 2385 = 3*3*5*53
f(38) = 4937 = 4937
f(39) = 2553 = 3*23*37
f(40) = 5277 = 3*1759
f(41) = 2725 = 5*5*109
f(42) = 5625 = 3*3*5*5*5*5
f(43) = 2901 = 3*967
f(44) = 5981 = 5981
f(45) = 3081 = 3*13*79
f(46) = 6345 = 3*3*3*5*47
f(47) = 3265 = 5*653
f(48) = 6717 = 3*2239
f(49) = 3453 = 3*1151
f(50) = 7097 = 47*151
f(51) = 3645 = 3*3*3*3*3*3*5
f(52) = 7485 = 3*5*499
f(53) = 3841 = 23*167
f(54) = 7881 = 3*37*71
f(55) = 4041 = 3*3*449
f(56) = 8285 = 5*1657
f(57) = 4245 = 3*5*283
f(58) = 8697 = 3*13*223
f(59) = 4453 = 61*73
f(60) = 9117 = 3*3*1013
f(61) = 4665 = 3*5*311
f(62) = 9545 = 5*23*83
f(63) = 4881 = 3*1627
f(64) = 9981 = 3*3*1109
f(65) = 5101 = 5101
f(66) = 10425 = 3*5*5*139
f(67) = 5325 = 3*5*5*71
f(68) = 10877 = 73*149
f(69) = 5553 = 3*3*617
f(70) = 11337 = 3*3779
f(71) = 5785 = 5*13*89
f(72) = 11805 = 3*5*787
f(73) = 6021 = 3*3*3*223
f(74) = 12281 = 12281
f(75) = 6261 = 3*2087
f(76) = 12765 = 3*5*23*37
f(77) = 6505 = 5*1301
f(78) = 13257 = 3*3*3*491
f(79) = 6753 = 3*2251
f(80) = 13757 = 13757
f(81) = 7005 = 3*5*467
f(82) = 14265 = 3*3*5*317
f(83) = 7261 = 53*137
f(84) = 14781 = 3*13*379
f(85) = 7521 = 3*23*109
f(86) = 15305 = 5*3061
f(87) = 7785 = 3*3*5*173
f(88) = 15837 = 3*5279
f(89) = 8053 = 8053
f(90) = 16377 = 3*53*103
f(91) = 8325 = 3*3*5*5*37
f(92) = 16925 = 5*5*677
f(93) = 8601 = 3*47*61
f(94) = 17481 = 3*5827
f(95) = 8881 = 83*107
f(96) = 18045 = 3*3*5*401
f(97) = 9165 = 3*5*13*47
f(98) = 18617 = 18617
f(99) = 9453 = 3*23*137
f(100) = 19197 = 3*3*3*3*3*79

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

f(0)=3
f(1)=5
f(2)=37
f(3)=47
f(4)=127
f(5)=241
f(6)=13
f(7)=23
f(8)=797
f(9)=151
f(10)=113
f(11)=1
f(12)=83
f(13)=227
f(14)=1481
f(15)=89
f(16)=1
f(17)=1
f(18)=659
f(19)=1
f(20)=2237
f(21)=79
f(22)=167
f(23)=1321
f(24)=103
f(25)=487
f(26)=613
f(27)=107
f(28)=373
f(29)=1753
f(30)=53
f(31)=1
f(32)=61
f(33)=229
f(34)=1427
f(35)=2221
f(36)=307
f(37)=1
f(38)=4937
f(39)=1
f(40)=1759
f(41)=109
f(42)=1
f(43)=967
f(44)=5981
f(45)=1
f(46)=1
f(47)=653
f(48)=2239
f(49)=1151
f(50)=1
f(51)=1
f(52)=499
f(53)=1
f(54)=71
f(55)=449
f(56)=1657
f(57)=283
f(58)=223
f(59)=73
f(60)=1013
f(61)=311
f(62)=1
f(63)=1627
f(64)=1109
f(65)=5101
f(66)=139
f(67)=1
f(68)=149
f(69)=617
f(70)=3779
f(71)=1
f(72)=787
f(73)=1
f(74)=12281
f(75)=2087
f(76)=1
f(77)=1301
f(78)=491
f(79)=2251
f(80)=13757
f(81)=467
f(82)=317
f(83)=137
f(84)=379
f(85)=1
f(86)=3061
f(87)=173
f(88)=5279
f(89)=8053
f(90)=1
f(91)=1
f(92)=677
f(93)=1
f(94)=5827
f(95)=1
f(96)=401
f(97)=1
f(98)=18617
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+92x-3 could be written as f(y)= y^2-2119 with x=y-46

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+46
f'(x)>2x+91

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, 5, 37, 47, 127, 241, 13, 23, 797, 151, 113, 1, 83, 227, 1481, 89, 1, 1, 659, 1, 2237, 79, 167, 1321, 103, 487, 613, 107, 373, 1753, 53, 1, 61, 229, 1427, 2221, 307, 1, 4937, 1, 1759, 109, 1, 967, 5981, 1, 1, 653, 2239, 1151, 1, 1, 499, 1, 71, 449, 1657, 283, 223, 73, 1013, 311, 1, 1627, 1109, 5101, 139, 1, 149, 617, 3779, 1, 787, 1, 12281, 2087, 1, 1301, 491, 2251, 13757, 467, 317, 137, 379, 1, 3061, 173, 5279, 8053, 1, 1, 677, 1, 5827, 1, 401, 1, 18617, 1, 1, 1949, 1319, 3347, 1, 383, 1399, 2129, 313, 1217, 1709, 751, 1523, 1, 2609, 3967, 193, 163, 2753, 12553, 1, 859, 1, 1, 1, 191, 1831, 1, 761, 4751, 9619, 1, 1, 4987, 1, 5107, 1, 3137, 1, 5351, 691, 1, 443, 1, 1, 1, 6949, 1171, 11839, 1381, 1, 1223, 7417, 6247, 1, 19141, 2579, 1303, 1, 739, 1, 4073, 211, 2309, 41981, 1, 571, 1, 1, 7351, 44537, 1499, 1009, 22921, 15427, 599, 9433, 1, 1, 1, 16319, 1, 9973, 8387, 16927, 25621, 1, 1, 4049, 1, 5953, 1, 727, 1, 509, 3109, 1, 5693, 19139, 3217, 2539, 1, 1, 1, 6709, 1, 12277, 2063, 2311, 1, 21139, 2131, 12889, 1, 1, 541, 887, 1, 67577, 11351, 1, 6917, 1549, 1, 1913, 11887, 1597, 557, 293, 12251, 719, 829, 5011, 37861, 1, 1423, 1, 1, 1, 1069, 1, 1, 1, 13567, 9109, 41281, 1, 2791, 84317, 1, 28499, 8609, 5779, 1, 87881, 14747, 5939, 8969, 1, 1, 1, 1, 1, 46681, 31327, 15767, 1, 1, 32159, 2111, 32579, 1093, 19801, 16607, 33427, 50461, 1, 3407, 1409, 1327, 1, 1, 1, 769, 106781, 1, 7207, 1, 36479, 2039, 110777, 743, 1, 56401, 1, 359, 1, 3851, 349, 58453, 39199, 3943, 1, 1, 40127, 4657, 353, 1361, 1, 1, 41539, 1, 2801, 1, 127481, 929, 1, 2593, 3343, 21851, 131837, 1, 8887, 67021, 44927, 7529, 27253, 4567, 977, 3011, 15473, 1, 1, 1, 15809, 1933, 9587, 1, 1, 8117, 1, 2953, 1979, 1, 1, 25127, 10103, 15233, 1, 1, 1, 1, 1, 78541, 52627, 1, 1, 1, 53699, 80953, 1, 1, 32869, 27527, 907, 83401, 1, 1123, 1553, 28351, 1, 1, 1, 1, 174281, 1, 11731, 17681, 59219, 1, 179357, 6007, 12071, 6997, 883, 1, 36901, 1, 20693, 93553, 62659, 1259, 7589, 10589, 1, 96181, 991, 1, 1, 1, 65599, 1, 1471, 33247, 200381, 33547, 4493, 1, 1283, 1, 205817, 2297, 1, 104281, 69827, 11689, 1, 1, 71059, 107053, 23893, 1, 1, 36307, 1, 1801, 1, 1, 222557, 4139, 3253, 22541, 15091, 1, 228281, 2939, 1, 23117, 25793, 38851, 2963, 1567, 1049, 1, 3449, 39827, 1297, 2677, 6203, 121453, 81299, 1, 49177, 1789, 1559, 1163, 1, 8363, 251897, 1, 1, 1, 1, 1, 257981, 14389, 3467, 1, 87359, 1, 264137, 8839, 17747, 2843, 2293, 44887, 2351, 1, 10091, 136753, 1289, 9187, 55333, 1, 92927, 139921, 1, 1, 1, 47351, 4133, 1, 1277, 1, 2113, 1, 6481, 1, 2647, 2137, 22769, 3301, 1, 1, 1, 1861, 1, 1, 101599, 152953, 1, 10271, 1, 1, 1, 1, 1, 2099, 315977, 1, 1, 1, 1, 1, 322781, 53987, 1667, 32621, 36373, 54751, 329657, 11027, 2459, 166561, 111427, 1511, 2927, 1, 112979, 1, 113759, 1, 2749, 57467, 115327, 7547, 7741, 1, 1, 1, 39233, 1, 1823, 59447, 2143, 19949, 24019, 1, 120899, 1, 1, 12211, 1, 3923, 1, 4759, 14897, 1, 1811, 1, 1723, 12619, 2053, 21169, 1613, 1697, 1, 4289, 29789, 1, 129919, 641, 1, 65587, 1871, 1, 1, 39857, 133279, 66851, 1907, 1, 5399, 2447, 3671, 22709, 82009, 13711, 1741, 206953, 46133, 13883, 83557, 69847, 3593, 1, 1, 14143, 6977, 1, 3037, 42953, 28723, 1, 1, 72467, 1, 673, 5417, 73351, 8329, 14759, 1, 1, 148927, 74687, 1, 5009, 6553, 226753, 1, 1, 91513, 76487, 153427, 3251, 10289, 1, 5233, 1, 17351, 9397, 1, 1, 473981, 8803, 1, 1, 159839, 26717, 1571, 701, 1, 3079, 1, 81547, 7549, 1, 54833, 1, 7193, 1, 99829, 27809, 1, 251701, 1, 1, 13721, 1, 170179, 51197, 3803, 1619, 22447, 86287, 1, 1, 174019, 87251, 524957, 5849, 2707, 1, 176927, 29569, 1, 17839, 1583, 2381, 1, 3607, 21701, 1, 1, 1, 36563, 1, 2887, 3413, 1, 55589, 37159, 1, 11923, 2531, 1, 56489, 1, 94651, 569417, 19031, 12721, 286981, 191827, 96167, 1, 1, 193859, 5501, 1, 1, 117541, 98207, 196927, 4057, 1, 1, 2477, 4337, 1, 60161, 1, 100787, 1, 33769, 40627, 1, 1, 1, 615677, 823, 1, 13487, 69109, 1, 125029, 1607, 7757, 314953, 210499, 1, 5519, 11783, 212627, 6803, 1, 1, 644297, 1, 16603, 1, 14461, 108727, 1, 109267, 1, 13177, 1, 1, 663737, 7393, 839, 25717, 1, 1, 1, 1, 225619, 1, 1, 22727, 136693, 1, 1, 344221, 3539, 23059, 693437, 1, 232259, 1, 1867, 1, 19013, 1, 47123, 70853, 1, 9127, 713597, 1, 1, 1, 2203, 1, 144757, 2687, 242399, 4391, 243539, 1, 1, 1, 1, 2659, 1, 4951, 744377, 124351, 83093, 3259, 50087, 125507, 754781, 1, 50551, 76001, 253919, 1, 765257, 1, 1, 385261, 28603, 1, 155161, 25919, 6661, 390553, 260959, 5231, 1, 43789, 1, 8423, 52903, 8837, 1, 2833, 266899, 6173, 1, 3631, 1, 134947, 6011, 1, 11813, 1, 818717, 1, 1, 412081, 21179, 45989, 6637, 1, 7507, 417553, 92993, 1, 1889, 140407, 93809, 423061, 56531, 2179, 16069, 47417, 285119, 3727, 57271, 1, 1, 2719, 947, 86837, 1, 1, 1, 5839, 1, 3463, 293827, 147227, 3767, 9857, 1, 445453, 2141, 9941, 179317, 11519, 13049, 1, 1, 30203, 907997, 151651, 11257, 91373, 61043, 1, 1, 1, 1, 3701, 309059, 1, 7331, 1, 62327, 468421, 104309, 1, 188533, 1, 105173, 1, 316819, 1, 1, 53129, 319427, 6577, 2789, 3571, 18229, 3433, 323359, 19441, 1, 3461, 13397, 163327, 21821, 1, 328639, 1, 1, 1, 1, 1, 2393, 4273, 1, 1, 335299, 21911, 112213, 1, 1, 169327, 1019, 2287, 13627, 6827, 78929, 1, 343379, 103217, 68947, 2503, 17021, 2089, 69491, 1, 116273, 4723, 1, 2699, 1, 1, 6659, 176807, 4523, 11833, 355679, 534553, 1, 1, 43013, 2273, 1, 540781, 1, 36191, 1087817, 1,

6. Sequence of the polynom (only primes)

3, 5, 37, 47, 127, 241, 13, 23, 797, 151, 113, 83, 227, 1481, 89, 659, 2237, 79, 167, 1321, 103, 487, 613, 107, 373, 1753, 53, 61, 229, 1427, 2221, 307, 4937, 1759, 109, 967, 5981, 653, 2239, 1151, 499, 71, 449, 1657, 283, 223, 73, 1013, 311, 1627, 1109, 5101, 139, 149, 617, 3779, 787, 12281, 2087, 1301, 491, 2251, 13757, 467, 317, 137, 379, 3061, 173, 5279, 8053, 677, 5827, 401, 18617, 1949, 1319, 3347, 383, 1399, 2129, 313, 1217, 1709, 751, 1523, 2609, 3967, 193, 163, 2753, 12553, 859, 191, 1831, 761, 4751, 9619, 4987, 5107, 3137, 5351, 691, 443, 6949, 1171, 11839, 1381, 1223, 7417, 6247, 19141, 2579, 1303, 739, 4073, 211, 2309, 41981, 571, 7351, 44537, 1499, 1009, 22921, 15427, 599, 9433, 16319, 9973, 8387, 16927, 25621, 4049, 5953, 727, 509, 3109, 5693, 19139, 3217, 2539, 6709, 12277, 2063, 2311, 21139, 2131, 12889, 541, 887, 67577, 11351, 6917, 1549, 1913, 11887, 1597, 557, 293, 12251, 719, 829, 5011, 37861, 1423, 1069, 13567, 9109, 41281, 2791, 84317, 28499, 8609, 5779, 87881, 14747, 5939, 8969, 46681, 31327, 15767, 32159, 2111, 32579, 1093, 19801, 16607, 33427, 50461, 3407, 1409, 1327, 769, 106781, 7207, 36479, 2039, 110777, 743, 56401, 359, 3851, 349, 58453, 39199, 3943, 40127, 4657, 353, 1361, 41539, 2801, 127481, 929, 2593, 3343, 21851, 131837, 8887, 67021, 44927, 7529, 27253, 4567, 977, 3011, 15473, 15809, 1933, 9587, 8117, 2953, 1979, 25127, 10103, 15233, 78541, 52627, 53699, 80953, 32869, 27527, 907, 83401, 1123, 1553, 28351, 174281, 11731, 17681, 59219, 179357, 6007, 12071, 6997, 883, 36901, 20693, 93553, 62659, 1259, 7589, 10589, 96181, 991, 65599, 1471, 33247, 200381, 33547, 4493, 1283, 205817, 2297, 104281, 69827, 11689, 71059, 107053, 23893, 36307, 1801, 222557, 4139, 3253, 22541, 15091, 228281, 2939, 23117, 25793, 38851, 2963, 1567, 1049, 3449, 39827, 1297, 2677, 6203, 121453, 81299, 49177, 1789, 1559, 1163, 8363, 251897, 257981, 14389, 3467, 87359, 264137, 8839, 17747, 2843, 2293, 44887, 2351, 10091, 136753, 1289, 9187, 55333, 92927, 139921, 47351, 4133, 1277, 2113, 6481, 2647, 2137, 22769, 3301, 1861, 101599, 152953, 10271, 2099, 315977, 322781, 53987, 1667, 32621, 36373, 54751, 329657, 11027, 2459, 166561, 111427, 1511, 2927, 112979, 113759, 2749, 57467, 115327, 7547, 7741, 39233, 1823, 59447, 2143, 19949, 24019, 120899, 12211, 3923, 4759, 14897, 1811, 1723, 12619, 2053, 21169, 1613, 1697, 4289, 29789, 129919, 641, 65587, 1871, 39857, 133279, 66851, 1907, 5399, 2447, 3671, 22709, 82009, 13711, 1741, 206953, 46133, 13883, 83557, 69847, 3593, 14143, 6977, 3037, 42953, 28723, 72467, 673, 5417, 73351, 8329, 14759, 148927, 74687, 5009, 6553, 226753, 91513, 76487, 153427, 3251, 10289, 5233, 17351, 9397, 473981, 8803, 159839, 26717, 1571, 701, 3079, 81547, 7549, 54833, 7193, 99829, 27809, 251701, 13721, 170179, 51197, 3803, 1619, 22447, 86287, 174019, 87251, 524957, 5849, 2707, 176927, 29569, 17839, 1583, 2381, 3607, 21701, 36563, 2887, 3413, 55589, 37159, 11923, 2531, 56489, 94651, 569417, 19031, 12721, 286981, 191827, 96167, 193859, 5501, 117541, 98207, 196927, 4057, 2477, 4337, 60161, 100787, 33769, 40627, 615677, 823, 13487, 69109, 125029, 1607, 7757, 314953, 210499, 5519, 11783, 212627, 6803, 644297, 16603, 14461, 108727, 109267, 13177, 663737, 7393, 839, 25717, 225619, 22727, 136693, 344221, 3539, 23059, 693437, 232259, 1867, 19013, 47123, 70853, 9127, 713597, 2203, 144757, 2687, 242399, 4391, 243539, 2659, 4951, 744377, 124351, 83093, 3259, 50087, 125507, 754781, 50551, 76001, 253919, 765257, 385261, 28603, 155161, 25919, 6661, 390553, 260959, 5231, 43789, 8423, 52903, 8837, 2833, 266899, 6173, 3631, 134947, 6011, 11813, 818717, 412081, 21179, 45989, 6637, 7507, 417553, 92993, 1889, 140407, 93809, 423061, 56531, 2179, 16069, 47417, 285119, 3727, 57271, 2719, 947, 86837, 5839, 3463, 293827, 147227, 3767, 9857, 445453, 2141, 9941, 179317, 11519, 13049, 30203, 907997, 151651, 11257, 91373, 61043, 3701, 309059, 7331, 62327, 468421, 104309, 188533, 105173, 316819, 53129, 319427, 6577, 2789, 3571, 18229, 3433, 323359, 19441, 3461, 13397, 163327, 21821, 328639, 2393, 4273, 335299, 21911, 112213, 169327, 1019, 2287, 13627, 6827, 78929, 343379, 103217, 68947, 2503, 17021, 2089, 69491, 116273, 4723, 2699, 6659, 176807, 4523, 11833, 355679, 534553, 43013, 2273, 540781, 36191, 1087817,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+92x-3 and
the reducible primes which appear as divisor for the first time
p | x^2+92x-3 and p < x^2+92x-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)
11011381.1000000.3000001.1000000.0000000.0000000.000000
21006910590.6900000.1000000.6900006.2727273.3333337.375000
31.000638455930.6380000.0450000.6380009.2463774.50000010.050847
410.0006.4743276.1470.6474000.0327000.64740010.1473357.26666710.365936
5100.00065.8782.42763.4510.6587800.0242700.65878010.1757807.42201910.322271
61.000.000664.82819.670645.1580.6648280.0196700.66482810.0918068.10465610.167814
710.000.0006.687.802165.9246.521.8780.6687800.0165920.66878010.0594478.43538410.108962
8100.000.00067.179.5691.438.74265.740.8270.6717960.0143870.67179610.0450908.67109010.080046
91.000.000.000674.177.71312.688.259661.489.4540.6741780.0126880.67417810.0354588.81899510.062080
1010.000.000.0006.760.644.695113.545.5826.647.099.1130.6760640.0113550.67606410.0279868.94887110.048684


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
245141.2500000.2500001.0000001.6666671.0000002.000000
389361.1250000.3750000.7500001.8000003.0000001.500000
416154110.9375000.2500000.6875001.6666671.3333331.833333
532265210.8125000.1562500.6562501.7333331.2500001.909091
664477400.7343750.1093750.6250001.8076921.4000001.904762
71288810780.6875000.0781250.6093751.8723401.4285711.950000
8256168151530.6562500.0585940.5976561.9090911.5000001.961538
9512327282990.6386720.0546880.5839841.9464291.8666671.954248
101.024651466050.6357420.0449220.5908201.9908261.6428572.023411
112.0481.293821.2110.6313480.0400390.5913091.9861751.7826092.001653
124.0962.6251462.4790.6408690.0356450.6052252.0301621.7804882.047069
138.1925.2962755.0210.6464840.0335690.6129152.0175241.8835622.025414
1416.38410.65749310.1640.6504520.0300900.6203612.0122731.7927272.024298
1532.76821.48889420.5940.6557620.0272830.6284792.0163271.8133872.026171
1665.53643.0621.64941.4130.6570740.0251620.6319122.0040021.8445192.010926
17131.07286.4673.08983.3780.6596910.0235670.6361242.0079651.8732572.013329
18262.144173.4505.745167.7050.6616590.0219150.6397442.0059681.8598252.011382
19524.288347.83110.849336.9820.6634350.0206930.6427422.0053681.8884252.009374
201.048.576697.24720.515676.7320.6649470.0195650.6453822.0045571.8909582.008214
212.097.1521.397.21639.0751.358.1410.6662450.0186320.6476122.0039041.9047042.006911
224.194.3042.799.65274.1772.725.4750.6674890.0176850.6498042.0037361.8983242.006769
238.388.6085.607.964141.0755.466.8890.6685210.0168170.6517042.0030931.9018702.005848
2416.777.21611.233.000269.30610.963.6940.6695390.0160520.6534872.0030441.9089562.005472
2533.554.43222.496.606515.03321.981.5730.6704510.0153490.6551022.0027251.9124452.004942
2667.108.86445.052.116988.04044.064.0760.6713290.0147230.6566062.0026181.9184012.004592
27134.217.72890.213.6121.898.61188.315.0010.6721440.0141460.6579982.0024281.9215932.004240
28268.435.456180.629.8183.653.010176.976.8080.6728990.0136090.6592902.0022461.9240432.003927
29536.870.912361.635.7347.037.041354.598.6930.6735990.0131080.6604922.0020821.9263682.003645
301.073.741.824723.963.38413.575.239710.388.1450.6742430.0126430.6616012.0019131.9291122.003358
312.147.483.6481.449.226.77026.227.3351.422.999.4350.6748490.0122130.6626362.0017961.9319982.003129
324.294.967.2962.900.896.81950.728.7622.850.168.0570.6754180.0118110.6636062.0016861.9341942.002930
338.589.934.5925.806.381.13798.220.2965.708.160.8410.6759520.0114340.6645172.0015811.9361862.002745
3417.179.869.18411.621.406.475190.361.86311.431.044.6120.6764550.0110810.6653742.0014891.9381112.002579


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
121000100
241000100
383011110
4164022110
5325032120
6647053130
712810085140
8256150138160
951228026151120
101.02446044231220
112.04882080381430
124.0961460144671780
138.192275027314111330
1416.384493049123912530
1532.768894089242714660
1665.5361.64901.64780118470
17131.0723.08903.0871.51211.5760
18262.1445.74505.7432.86712.8770
19524.28810.849010.8475.38615.4620
201.048.57620.515020.51310.237110.2770
212.097.15239.075039.07319.535119.5390
224.194.30474.177074.17537.100137.0760
238.388.608141.0750141.07370.510170.5640
2416.777.216269.3060269.304134.6421134.6630
2533.554.432515.0330515.031257.6931257.3390
2667.108.864988.0400988.038493.9811494.0580
27134.217.7281.898.61101.898.609948.8301949.7800
28268.435.4563.653.01003.653.0081.826.51211.826.4970
29536.870.9127.037.04107.037.0393.519.14713.517.8930
301.073.741.82413.575.239013.575.2376.787.61516.787.6230
312.147.483.64826.227.335026.227.33313.112.715113.114.6190
324.294.967.29650.728.762050.728.76025.367.022125.361.7390
338.589.934.59298.220.296098.220.29449.117.431149.102.8640
3417.179.869.184190.361.8630190.361.86195.183.212195.178.6500


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
122110020
244220022
386331023
41611473224
5322111105448
664402317791014
712878383917201922
8256153856730423942
951229916113769797081
101.024605308296132168141164
112.0481.211631579271328279333
124.0962.4791.3181.160573666576664
138.1925.0212.6512.3691.1901.3551.1591.317
1416.38410.1645.3524.8112.4172.6972.4022.648
1532.76820.59410.7379.8564.9015.4604.8835.350
1665.53641.41321.57519.8379.77310.9499.84910.842
17131.07283.37843.32140.05619.92121.85619.83321.768
18262.144167.70586.89180.81340.17043.76140.18943.585
19524.288336.982174.023162.95881.05187.50380.95687.472
201.048.576676.732348.537328.194163.375174.946163.426174.985
212.097.1521.358.141698.645659.495328.701349.959329.003350.478
224.194.3042.725.4751.399.9131.325.561660.955701.777660.975701.768
238.388.6085.466.8892.804.5812.662.3071.327.9521.405.3781.327.8691.405.690
2416.777.21610.963.6945.617.8295.345.8642.668.9972.813.9992.665.8602.814.838
2533.554.43221.981.57311.252.87510.728.6975.357.2525.632.9485.354.5345.636.839
2667.108.86444.064.07622.533.39021.530.68510.749.61111.282.92310.745.67911.285.863
27134.217.72888.315.00145.115.18143.199.81921.562.29822.589.84421.566.70822.596.151
28268.435.456176.976.80890.335.96786.640.84043.249.10545.228.39843.258.58845.240.717
29536.870.912354.598.693180.854.597173.744.09586.746.29190.538.23886.756.13490.558.030
301.073.741.824710.388.145362.036.807348.351.337173.948.650181.228.887173.953.107181.257.501
312.147.483.6481.422.999.435724.719.336698.280.098348.718.439362.760.081348.732.554362.788.361
324.294.967.2962.850.168.0571.450.665.8391.399.502.217698.962.975726.097.473699.003.001726.104.608
338.589.934.5925.708.160.8412.903.622.3062.804.538.5341.400.843.1031.453.192.9591.400.898.7711.453.226.008
3417.179.869.18411.431.044.6125.811.509.1435.619.535.4682.807.118.1972.908.377.4982.807.144.4242.908.404.493


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 5, 37, 47, 127, 241, 13, 23, 797, 151, 113, 1, 83, 227, 1481, 89, 1, 1, 659, 1,
Found in Database : 3, 5, 37, 47, 127, 241, 13, 23, 797, 151, 113, 83, 227, 1481, 89, 659, 2237, 79, 167, 1321, 103, 487, 613, 107, 373, 1753, 53, 61, 229, 1427, 2221, 307, 4937,
Found in Database : 3, 5, 13, 23, 37, 47, 53, 61, 71, 73, 79, 83, 89, 103, 107, 109, 113, 127, 137, 139, 149,