Inhaltsverzeichnis

Development of
Algorithmic Constructions

05:57:44
Deutsch
19.Apr 2024

Polynom = x^2-136x+5

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) = 5 = 5
f(1) = 65 = 5*13
f(2) = 263 = 263
f(3) = 197 = 197
f(4) = 523 = 523
f(5) = 325 = 5*5*13
f(6) = 775 = 5*5*31
f(7) = 449 = 449
f(8) = 1019 = 1019
f(9) = 569 = 569
f(10) = 1255 = 5*251
f(11) = 685 = 5*137
f(12) = 1483 = 1483
f(13) = 797 = 797
f(14) = 1703 = 13*131
f(15) = 905 = 5*181
f(16) = 1915 = 5*383
f(17) = 1009 = 1009
f(18) = 2119 = 13*163
f(19) = 1109 = 1109
f(20) = 2315 = 5*463
f(21) = 1205 = 5*241
f(22) = 2503 = 2503
f(23) = 1297 = 1297
f(24) = 2683 = 2683
f(25) = 1385 = 5*277
f(26) = 2855 = 5*571
f(27) = 1469 = 13*113
f(28) = 3019 = 3019
f(29) = 1549 = 1549
f(30) = 3175 = 5*5*127
f(31) = 1625 = 5*5*5*13
f(32) = 3323 = 3323
f(33) = 1697 = 1697
f(34) = 3463 = 3463
f(35) = 1765 = 5*353
f(36) = 3595 = 5*719
f(37) = 1829 = 31*59
f(38) = 3719 = 3719
f(39) = 1889 = 1889
f(40) = 3835 = 5*13*59
f(41) = 1945 = 5*389
f(42) = 3943 = 3943
f(43) = 1997 = 1997
f(44) = 4043 = 13*311
f(45) = 2045 = 5*409
f(46) = 4135 = 5*827
f(47) = 2089 = 2089
f(48) = 4219 = 4219
f(49) = 2129 = 2129
f(50) = 4295 = 5*859
f(51) = 2165 = 5*433
f(52) = 4363 = 4363
f(53) = 2197 = 13*13*13
f(54) = 4423 = 4423
f(55) = 2225 = 5*5*89
f(56) = 4475 = 5*5*179
f(57) = 2249 = 13*173
f(58) = 4519 = 4519
f(59) = 2269 = 2269
f(60) = 4555 = 5*911
f(61) = 2285 = 5*457
f(62) = 4583 = 4583
f(63) = 2297 = 2297
f(64) = 4603 = 4603
f(65) = 2305 = 5*461
f(66) = 4615 = 5*13*71
f(67) = 2309 = 2309
f(68) = 4619 = 31*149
f(69) = 2309 = 2309
f(70) = 4615 = 5*13*71
f(71) = 2305 = 5*461
f(72) = 4603 = 4603
f(73) = 2297 = 2297
f(74) = 4583 = 4583
f(75) = 2285 = 5*457
f(76) = 4555 = 5*911
f(77) = 2269 = 2269
f(78) = 4519 = 4519
f(79) = 2249 = 13*173
f(80) = 4475 = 5*5*179
f(81) = 2225 = 5*5*89
f(82) = 4423 = 4423
f(83) = 2197 = 13*13*13
f(84) = 4363 = 4363
f(85) = 2165 = 5*433
f(86) = 4295 = 5*859
f(87) = 2129 = 2129
f(88) = 4219 = 4219
f(89) = 2089 = 2089
f(90) = 4135 = 5*827
f(91) = 2045 = 5*409
f(92) = 4043 = 13*311
f(93) = 1997 = 1997
f(94) = 3943 = 3943
f(95) = 1945 = 5*389
f(96) = 3835 = 5*13*59
f(97) = 1889 = 1889
f(98) = 3719 = 3719
f(99) = 1829 = 31*59
f(100) = 3595 = 5*719

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-136x+5

f(0)=5
f(1)=13
f(2)=263
f(3)=197
f(4)=523
f(5)=1
f(6)=31
f(7)=449
f(8)=1019
f(9)=569
f(10)=251
f(11)=137
f(12)=1483
f(13)=797
f(14)=131
f(15)=181
f(16)=383
f(17)=1009
f(18)=163
f(19)=1109
f(20)=463
f(21)=241
f(22)=2503
f(23)=1297
f(24)=2683
f(25)=277
f(26)=571
f(27)=113
f(28)=3019
f(29)=1549
f(30)=127
f(31)=1
f(32)=3323
f(33)=1697
f(34)=3463
f(35)=353
f(36)=719
f(37)=59
f(38)=3719
f(39)=1889
f(40)=1
f(41)=389
f(42)=3943
f(43)=1997
f(44)=311
f(45)=409
f(46)=827
f(47)=2089
f(48)=4219
f(49)=2129
f(50)=859
f(51)=433
f(52)=4363
f(53)=1
f(54)=4423
f(55)=89
f(56)=179
f(57)=173
f(58)=4519
f(59)=2269
f(60)=911
f(61)=457
f(62)=4583
f(63)=2297
f(64)=4603
f(65)=461
f(66)=71
f(67)=2309
f(68)=149
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-136x+5 could be written as f(y)= y^2-4619 with x=y+68

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-68
f'(x)>2x-137 with x > 68

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

5, 13, 263, 197, 523, 1, 31, 449, 1019, 569, 251, 137, 1483, 797, 131, 181, 383, 1009, 163, 1109, 463, 241, 2503, 1297, 2683, 277, 571, 113, 3019, 1549, 127, 1, 3323, 1697, 3463, 353, 719, 59, 3719, 1889, 1, 389, 3943, 1997, 311, 409, 827, 2089, 4219, 2129, 859, 433, 4363, 1, 4423, 89, 179, 173, 4519, 2269, 911, 457, 4583, 2297, 4603, 461, 71, 2309, 149, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 281, 211, 1, 1, 857, 503, 1, 1, 293, 811, 1, 971, 421, 227, 2437, 1303, 2777, 1, 1, 1, 1, 1831, 769, 1, 4217, 2203, 4597, 479, 997, 2591, 5381, 2791, 1, 599, 6197, 3203, 509, 683, 1409, 3631, 7481, 3851, 317, 1, 8377, 331, 8837, 907, 1861, 367, 9781, 5011, 2053, 1051, 347, 5503, 11257, 1151, 1, 6011, 12281, 6271, 1, 1307, 13337, 6803, 13877, 283, 577, 7351, 1, 587, 3109, 1583, 1, 631, 1, 1699, 3457, 1, 17881, 9091, 3697, 1879, 1, 313, 19717, 2003, 1, 10331, 20981, 10651, 1, 439, 22277, 1, 22937, 1, 4721, 11971, 24281, 947, 4993, 2531, 25657, 13003, 26357, 2671, 5413, 13711, 2137, 14071, 5701, 2887, 1, 1, 967, 607, 1229, 15551, 31481, 1, 6449, 1, 1, 16703, 33797, 1, 6917, 17491, 35381, 17891, 7237, 3659, 36997, 1, 2909, 3823, 1, 19531, 3037, 1, 1613, 1, 41177, 1, 1, 1, 8581, 1667, 43781, 22111, 8933, 1, 45557, 23003, 46457, 4691, 9473, 23911, 48281, 24371, 757, 4967, 1, 25303, 3929, 1031, 2081, 26251, 52981, 26731, 10789, 5443, 54917, 2131, 55897, 5639, 1, 2207, 57881, 29191, 11777, 5939, 673, 30203, 60917, 6143, 953, 31231, 62981, 31751, 1, 1291, 1103, 32803, 66137, 1, 13441, 33871, 68281, 2647, 13873, 6991, 70457, 2731, 1, 7211, 14533, 1181, 829, 37171, 1, 7547, 5849, 38303, 1087, 1, 1, 39451, 79481, 40031, 1, 8123, 81817, 41203, 82997, 643, 1, 42391, 85381, 3307, 17317, 8719, 87797, 44203, 89017, 8963, 18049, 1, 1, 46051, 3709, 1867, 7229, 47303, 727, 9587, 19301, 48571, 1, 49211, 19813, 1, 100357, 50503, 1723, 787, 20593, 1, 104281, 1, 21121, 10627, 106937, 1, 8329, 2179, 877, 1, 8537, 1801, 22469, 1, 113717, 57203, 1, 11579, 23297, 4507, 117881, 1, 23857, 1, 881, 60703, 122117, 1, 24709, 62131, 124981, 62851, 1, 2543, 127877, 64303, 9949, 13007, 26161, 739, 1, 1, 863, 13451, 135257, 5231, 839, 13751, 27653, 5347, 1237, 70271, 1, 14207, 142837, 1217, 1, 2903, 1, 73351, 147481, 74131, 2293, 14983, 150617, 75703, 152197, 15299, 30757, 77291, 155381, 6007, 31397, 1, 158597, 6131, 160217, 16103, 32369, 81331, 163481, 1, 1321, 3319, 12829, 1, 1, 16927, 2617, 1, 1, 86311, 34693, 17431, 2467, 88003, 176857, 1367, 1, 1, 180281, 6967, 1, 18287, 5927, 1, 185477, 3727, 7489, 1, 14537, 1609, 38149, 19163, 1, 96703, 1, 1, 39217, 98491, 1, 99391, 39937, 1543, 201497, 101203, 203317, 1571, 1, 1, 1, 103951, 8353, 1, 1, 3413, 16349, 21347, 1, 107671, 1, 1, 43633, 21911, 220057, 110503, 221957, 22291, 44773, 8647, 225781, 113371, 45541, 1759, 229637, 115303, 1, 4651, 9341, 117251, 1301, 1, 1, 1, 239417, 1693, 1, 24239, 48677, 1721, 4159, 123191, 49477, 1, 249397, 9631, 251417, 25243, 1, 9787, 1, 1, 10301, 5171, 259577, 130303, 261637, 26267, 4057, 132371, 265781, 1499, 1, 26891, 2389, 1, 1381, 1, 54833, 1, 1597, 10667, 55681, 27947, 280537, 10831, 282677, 1, 11393, 1, 286981, 144031, 57829, 29023, 22409, 146203, 2311, 1, 4549, 1, 297881, 149491, 60017, 30119, 302297, 151703, 304517, 2351, 1979, 2609, 1231, 11927, 1, 6247, 313477, 157303, 4447, 31687, 63601, 159571, 1, 160711, 64513, 32371, 24989, 163003, 1, 32831, 1, 165311, 331781, 166471, 66821, 2579, 336437, 168803, 338777, 1, 2729, 5521, 343481, 172331, 1, 34703, 348217, 174703, 1, 1, 1, 177091, 27337, 1361, 1, 35899, 360197, 1319, 3209, 36383, 73009, 14087, 4129, 184351, 14797, 1, 372377, 1, 374837, 37607, 1279, 189271, 12251, 3229, 5881, 38351, 384757, 193003, 29789, 38851, 1, 195511, 392281, 196771, 1, 39607, 397337, 15331, 4493, 1, 16097, 15527, 404981, 2861, 81509, 40883, 410117, 205703, 1327, 41399, 6389, 208291, 417881, 6761, 6469, 42179, 423097, 212203, 2161, 42703, 85669, 214831, 430981, 1, 3469, 8699, 1489, 16831, 438937, 44027, 88321, 221471, 444281, 1, 89393, 1, 34589, 225503, 1877, 1, 7001, 228211, 7759, 1, 2971, 46187, 463237, 232303, 465977, 1, 18749, 235051, 471481, 1399, 94849, 47563, 477017, 1, 479797, 48119, 96517, 2719, 37337, 243391, 1, 1, 1, 246203, 493817, 49523, 1, 1901, 499481, 250451, 1, 1, 1, 1, 508037, 3919, 102181, 2267, 513781, 257611, 103333, 1, 4091, 2927, 40189, 52391, 1, 263411, 40637, 264871, 1, 53267, 534137, 267803, 9103, 10771, 21601, 1, 542981, 272231, 1, 4211, 17707, 1847, 1741, 55339, 110977, 278191, 4937, 1, 8629, 56239, 563897, 282703, 43609, 56843, 113989, 285731, 1, 287251, 23041, 11551, 2551, 1, 582137, 58367, 117041, 22567, 2441, 294911, 118273, 1, 594457, 9613, 1, 1, 9241, 4241, 603781, 1, 9337, 1, 1949, 305803, 613177, 2459, 1, 308951, 1, 23887, 124529, 62423, 1, 1, 628997, 63059, 2143, 316891, 5003, 1, 127717, 64019, 49369, 1, 20807, 64663, 9973, 324931, 651481, 1, 26189, 13127, 7393, 329803, 661237, 5099, 1, 333071, 667781, 25747, 134213, 67271, 674357, 1, 677657, 67931, 136193, 341311, 4049, 342971, 1, 68927, 53149, 346303, 694277, 1, 5581, 1, 5351, 1, 140869, 5431, 707717, 354703, 711097, 5483, 142897, 1, 10111, 2833, 1, 1, 1, 1, 56009, 1, 146309, 366631, 4349, 1, 29537, 1, 741877, 2281, 745337, 74707, 4831, 28867, 752281, 377011, 151153, 5827, 2741, 380503, 4409, 1, 1, 2803, 769781, 385771, 11897, 1, 776837, 389303, 60029, 15643, 31357, 392851, 1, 394631, 158209, 79283, 5333, 30631, 798197, 79999, 160357, 1, 805381, 403591, 1, 1, 812597, 407203, 816217, 1, 12613, 1, 823481, 412651, 1, 1, 830777, 1973, 14143, 1, 167621, 1, 4273, 1, 169093, 84731, 2017, 1, 852857, 1, 1, 429211, 27751, 1,

6. Sequence of the polynom (only primes)

5, 13, 263, 197, 523, 31, 449, 1019, 569, 251, 137, 1483, 797, 131, 181, 383, 1009, 163, 1109, 463, 241, 2503, 1297, 2683, 277, 571, 113, 3019, 1549, 127, 3323, 1697, 3463, 353, 719, 59, 3719, 1889, 389, 3943, 1997, 311, 409, 827, 2089, 4219, 2129, 859, 433, 4363, 4423, 89, 179, 173, 4519, 2269, 911, 457, 4583, 2297, 4603, 461, 71, 2309, 149, 281, 211, 857, 503, 293, 811, 971, 421, 227, 2437, 1303, 2777, 1831, 769, 4217, 2203, 4597, 479, 997, 2591, 5381, 2791, 599, 6197, 3203, 509, 683, 1409, 3631, 7481, 3851, 317, 8377, 331, 8837, 907, 1861, 367, 9781, 5011, 2053, 1051, 347, 5503, 11257, 1151, 6011, 12281, 6271, 1307, 13337, 6803, 13877, 283, 577, 7351, 587, 3109, 1583, 631, 1699, 3457, 17881, 9091, 3697, 1879, 313, 19717, 2003, 10331, 20981, 10651, 439, 22277, 22937, 4721, 11971, 24281, 947, 4993, 2531, 25657, 13003, 26357, 2671, 5413, 13711, 2137, 14071, 5701, 2887, 967, 607, 1229, 15551, 31481, 6449, 16703, 33797, 6917, 17491, 35381, 17891, 7237, 3659, 36997, 2909, 3823, 19531, 3037, 1613, 41177, 8581, 1667, 43781, 22111, 8933, 45557, 23003, 46457, 4691, 9473, 23911, 48281, 24371, 757, 4967, 25303, 3929, 1031, 2081, 26251, 52981, 26731, 10789, 5443, 54917, 2131, 55897, 5639, 2207, 57881, 29191, 11777, 5939, 673, 30203, 60917, 6143, 953, 31231, 62981, 31751, 1291, 1103, 32803, 66137, 13441, 33871, 68281, 2647, 13873, 6991, 70457, 2731, 7211, 14533, 1181, 829, 37171, 7547, 5849, 38303, 1087, 39451, 79481, 40031, 8123, 81817, 41203, 82997, 643, 42391, 85381, 3307, 17317, 8719, 87797, 44203, 89017, 8963, 18049, 46051, 3709, 1867, 7229, 47303, 727, 9587, 19301, 48571, 49211, 19813, 100357, 50503, 1723, 787, 20593, 104281, 21121, 10627, 106937, 8329, 2179, 877, 8537, 1801, 22469, 113717, 57203, 11579, 23297, 4507, 117881, 23857, 881, 60703, 122117, 24709, 62131, 124981, 62851, 2543, 127877, 64303, 9949, 13007, 26161, 739, 863, 13451, 135257, 5231, 839, 13751, 27653, 5347, 1237, 70271, 14207, 142837, 1217, 2903, 73351, 147481, 74131, 2293, 14983, 150617, 75703, 152197, 15299, 30757, 77291, 155381, 6007, 31397, 158597, 6131, 160217, 16103, 32369, 81331, 163481, 1321, 3319, 12829, 16927, 2617, 86311, 34693, 17431, 2467, 88003, 176857, 1367, 180281, 6967, 18287, 5927, 185477, 3727, 7489, 14537, 1609, 38149, 19163, 96703, 39217, 98491, 99391, 39937, 1543, 201497, 101203, 203317, 1571, 103951, 8353, 3413, 16349, 21347, 107671, 43633, 21911, 220057, 110503, 221957, 22291, 44773, 8647, 225781, 113371, 45541, 1759, 229637, 115303, 4651, 9341, 117251, 1301, 239417, 1693, 24239, 48677, 1721, 4159, 123191, 49477, 249397, 9631, 251417, 25243, 9787, 10301, 5171, 259577, 130303, 261637, 26267, 4057, 132371, 265781, 1499, 26891, 2389, 1381, 54833, 1597, 10667, 55681, 27947, 280537, 10831, 282677, 11393, 286981, 144031, 57829, 29023, 22409, 146203, 2311, 4549, 297881, 149491, 60017, 30119, 302297, 151703, 304517, 2351, 1979, 2609, 1231, 11927, 6247, 313477, 157303, 4447, 31687, 63601, 159571, 160711, 64513, 32371, 24989, 163003, 32831, 165311, 331781, 166471, 66821, 2579, 336437, 168803, 338777, 2729, 5521, 343481, 172331, 34703, 348217, 174703, 177091, 27337, 1361, 35899, 360197, 1319, 3209, 36383, 73009, 14087, 4129, 184351, 14797, 372377, 374837, 37607, 1279, 189271, 12251, 3229, 5881, 38351, 384757, 193003, 29789, 38851, 195511, 392281, 196771, 39607, 397337, 15331, 4493, 16097, 15527, 404981, 2861, 81509, 40883, 410117, 205703, 1327, 41399, 6389, 208291, 417881, 6761, 6469, 42179, 423097, 212203, 2161, 42703, 85669, 214831, 430981, 3469, 8699, 1489, 16831, 438937, 44027, 88321, 221471, 444281, 89393, 34589, 225503, 1877, 7001, 228211, 7759, 2971, 46187, 463237, 232303, 465977, 18749, 235051, 471481, 1399, 94849, 47563, 477017, 479797, 48119, 96517, 2719, 37337, 243391, 246203, 493817, 49523, 1901, 499481, 250451, 508037, 3919, 102181, 2267, 513781, 257611, 103333, 4091, 2927, 40189, 52391, 263411, 40637, 264871, 53267, 534137, 267803, 9103, 10771, 21601, 542981, 272231, 4211, 17707, 1847, 1741, 55339, 110977, 278191, 4937, 8629, 56239, 563897, 282703, 43609, 56843, 113989, 285731, 287251, 23041, 11551, 2551, 582137, 58367, 117041, 22567, 2441, 294911, 118273, 594457, 9613, 9241, 4241, 603781, 9337, 1949, 305803, 613177, 2459, 308951, 23887, 124529, 62423, 628997, 63059, 2143, 316891, 5003, 127717, 64019, 49369, 20807, 64663, 9973, 324931, 651481, 26189, 13127, 7393, 329803, 661237, 5099, 333071, 667781, 25747, 134213, 67271, 674357, 677657, 67931, 136193, 341311, 4049, 342971, 68927, 53149, 346303, 694277, 5581, 5351, 140869, 5431, 707717, 354703, 711097, 5483, 142897, 10111, 2833, 56009, 146309, 366631, 4349, 29537, 741877, 2281, 745337, 74707, 4831, 28867, 752281, 377011, 151153, 5827, 2741, 380503, 4409, 2803, 769781, 385771, 11897, 776837, 389303, 60029, 15643, 31357, 392851, 394631, 158209, 79283, 5333, 30631, 798197, 79999, 160357, 805381, 403591, 812597, 407203, 816217, 12613, 823481, 412651, 830777, 1973, 14143, 167621, 4273, 169093, 84731, 2017, 852857, 429211, 27751,

7. Distribution of the primes

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

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
21006219430.6200000.1900000.6200006.2000003.8000008.600000
31.0007171615560.7170000.1610000.71700011.5645168.47368412.930233
410.0007.6401.1776.4630.7640000.1177000.76400010.6555097.31055911.624101
5100.00075.7499.03666.7130.7574900.0903600.7574909.9147907.67714510.322296
61.000.000746.21474.857671.3570.7462140.0748570.7462149.8511408.28430710.063361
710.000.0007.378.075632.4056.745.6700.7378080.0632400.7378089.8873448.44817410.047813
8100.000.00073.178.3775.479.06167.699.3160.7317840.0547910.7317849.9183568.66384810.035966
91.000.000.000727.197.28548.346.074678.851.2110.7271970.0483460.7271979.9373258.82378810.027446
1010.000.000.0007.235.816.951432.621.5326.803.195.4190.7235820.0432620.7235829.9502808.94843210.021629


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
388531.0000000.6250000.3750001.6000001.6666671.500000
416166101.0000000.3750000.6250002.0000001.2000003.333333
5323110210.9687500.3125000.6562501.9375001.6666672.100000
6645919400.9218750.2968750.6250001.9032261.9000001.904762
71286219430.4843750.1484380.3359381.0508471.0000001.075000
8256147431040.5742190.1679690.4062502.3709682.2631582.418605
9512344872570.6718750.1699220.5019532.3401362.0232562.471154
101.0247401665740.7226560.1621090.5605472.1511631.9080462.233463
112.0481.5253071.2180.7446290.1499020.5947272.0608111.8493982.121951
124.0963.1215562.5650.7619630.1357420.6262212.0465571.8110752.105911
138.1926.2719915.2800.7655030.1209720.6445312.0092921.7823742.058480
1416.38412.5391.81510.7240.7653200.1107790.6545411.9995221.8314832.031061
1532.76824.9763.35621.6200.7622070.1024170.6597901.9918651.8490362.016039
1665.53649.7826.23643.5460.7596130.0951540.6644591.9931941.8581642.014153
17131.07299.14611.52087.6260.7564240.0878910.6685331.9916031.8473382.012263
18262.144197.20621.784175.4220.7522810.0830990.6691821.9890461.8909722.001940
19524.288392.71141.254351.4570.7490370.0786860.6703511.9913741.8937752.003495
201.048.576782.26478.142704.1220.7460250.0745220.6715031.9919581.8941682.003437
212.097.1521.558.700147.8141.410.8860.7432460.0704830.6727631.9925501.8916082.003752
224.194.3043.106.608281.5662.825.0420.7406730.0671310.6735421.9930761.9048672.002318
238.388.6086.193.392536.6575.656.7350.7383100.0639740.6743351.9936191.9059722.002354
2416.777.21612.353.1041.025.57711.327.5270.7363020.0611290.6751731.9945621.9110472.002485
2533.554.43224.643.3951.963.12322.680.2720.7344300.0585060.6759251.9949151.9141642.002226
2667.108.86449.171.3343.764.45545.406.8790.7327100.0560950.6766151.9953151.9175852.002043
27134.217.72898.132.6167.230.04090.902.5760.7311450.0538680.6772771.9957281.9206072.001956
28268.435.456195.867.39013.912.441181.954.9490.7296630.0518280.6778351.9959461.9242552.001648
29536.870.912391.014.63526.806.265364.208.3700.7283210.0499310.6783911.9963231.9267842.001641
301.073.741.824780.686.59051.724.174728.962.4160.7270710.0481720.6788991.9965661.9295562.001498
312.147.483.6481.558.873.72299.927.0011.458.946.7210.7259070.0465320.6793751.9967981.9319212.001402
324.294.967.2963.113.057.781193.260.0522.919.797.7290.7248150.0449970.6798181.9969921.9340122.001305
338.589.934.5926.217.365.343374.218.6955.843.146.6480.7237970.0435650.6802321.9971891.9363482.001216
3417.179.869.18412.418.319.961725.337.84211.692.982.1190.7228410.0422200.6806211.9973601.9382732.001145


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
122020011
243120111
385230212
4166330312
53210640613
664191360919
7128191360919
8256432122139129
9512873552359349
101.02416665101749749
112.04830710720014491459
124.09655619136526192779
138.19299134764447594989
1416.3841.8156171.19888199169
1532.7683.3561.1212.2351.63391.7059
1665.5366.2362.0914.1453.09293.1269
17131.07211.5203.8507.6705.73895.7649
18262.14421.7847.30814.47610.885910.8819
19524.28841.25413.74327.51120.638920.5989
201.048.57678.14226.07852.06439.074939.0509
212.097.152147.81449.33898.47673.833973.9639
224.194.304281.56694.030187.536140.8019140.7479
238.388.608536.657178.827357.830268.1479268.4929
2416.777.2161.025.577341.521684.056512.8239512.7369
2533.554.4321.963.123654.0221.309.101981.8179981.2889
2667.108.8643.764.4551.254.2062.510.2491.882.52491.881.9139
27134.217.7287.230.0402.408.8194.821.2213.616.18893.613.8349
28268.435.45613.912.4414.636.1209.276.3216.958.58696.953.8379
29536.870.91226.806.2658.934.72517.871.54013.405.488913.400.7599
301.073.741.82451.724.17417.238.31534.485.85925.865.460925.858.6969
312.147.483.64899.927.00133.304.51966.622.48249.970.326949.956.6579
324.294.967.296193.260.05264.415.320128.844.73296.642.704996.617.3309
338.589.934.592374.218.695124.732.861249.485.834187.125.1729187.093.5059
3417.179.869.184725.337.842241.777.933483.559.909362.690.9629362.646.8629


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
242110020
383121020
41610283241
5322111107473
664401723167116
7128431726167146
8256104554924292427
951225714111651785375
101.024574319255112169115178
112.0481.218646572244353242379
124.0962.5651.3721.193508778524755
138.1925.2802.8262.4541.0641.5681.0811.567
1416.38410.7245.6815.0432.2043.1492.2123.159
1532.76821.62011.31110.3094.5026.3644.5366.218
1665.53643.54622.81420.7329.21712.5859.23712.507
17131.07287.62645.81241.81418.80525.03318.82324.965
18262.144175.42291.56683.85638.01949.65138.11849.634
19524.288351.457182.914168.54376.80498.89077.13798.626
201.048.576704.122365.215338.907155.191196.878155.565196.488
212.097.1521.410.886730.541680.345313.468392.141314.126391.151
224.194.3042.825.0421.460.1611.364.881631.824781.099632.816779.303
238.388.6085.656.7352.919.1232.737.6121.273.4411.555.4601.274.4281.553.406
2416.777.21611.327.5275.836.7865.490.7412.564.0483.100.3752.564.1843.098.920
2533.554.43222.680.27211.670.22311.010.0495.158.1596.180.2325.159.7686.182.113
2667.108.86445.406.87923.338.14122.068.73810.374.65312.328.54710.372.82512.330.854
27134.217.72890.902.57646.666.90244.235.67420.847.07424.601.70520.851.65324.602.144
28268.435.456181.954.94993.318.43588.636.51441.882.87849.088.47241.892.81249.090.787
29536.870.912364.208.370186.618.510177.589.86084.114.02797.981.49484.127.38997.985.460
301.073.741.824728.962.416373.193.448355.768.968168.880.294195.600.247168.880.324195.601.551
312.147.483.6481.458.946.721746.280.984712.665.737338.964.338390.516.403338.966.135390.499.845
324.294.967.2962.919.797.7291.492.397.0681.427.400.661680.145.304779.766.192680.146.223779.740.010
338.589.934.5925.843.146.6482.984.471.5002.858.675.1481.364.423.5181.557.167.6311.364.433.7681.557.121.731
3417.179.869.18411.692.982.1195.968.372.6715.724.609.4482.736.684.7813.109.843.3492.736.617.5223.109.836.467


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 13, 263, 197, 523, 1, 31, 449, 1019, 569, 251, 137, 1483, 797, 131, 181, 383, 1009, 163, 1109,
Found in Database : 5, 13, 263, 197, 523, 31, 449, 1019, 569, 251, 137, 1483, 797, 131, 181, 383, 1009, 163, 1109, 463, 241, 2503, 1297, 2683, 277, 571, 113, 3019, 1549, 127, 3323, 1697, 3463, 353, 719, 59, 3719, 1889,
Found in Database : 5, 13, 31, 59, 71, 89, 113, 127, 131, 137, 149,