Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:45:06
Deutsch
19.Apr 2024

Polynom = x^2+104x-1

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) = 1 = 1
f(1) = 13 = 13
f(2) = 211 = 211
f(3) = 5 = 5
f(4) = 431 = 431
f(5) = 17 = 17
f(6) = 659 = 659
f(7) = 97 = 97
f(8) = 895 = 5*179
f(9) = 127 = 127
f(10) = 1139 = 17*67
f(11) = 79 = 79
f(12) = 1391 = 13*107
f(13) = 95 = 5*19
f(14) = 1651 = 13*127
f(15) = 223 = 223
f(16) = 1919 = 19*101
f(17) = 257 = 257
f(18) = 2195 = 5*439
f(19) = 73 = 73
f(20) = 2479 = 37*67
f(21) = 41 = 41
f(22) = 2771 = 17*163
f(23) = 365 = 5*73
f(24) = 3071 = 37*83
f(25) = 403 = 13*31
f(26) = 3379 = 31*109
f(27) = 221 = 13*17
f(28) = 3695 = 5*739
f(29) = 241 = 241
f(30) = 4019 = 4019
f(31) = 523 = 523
f(32) = 4351 = 19*229
f(33) = 565 = 5*113
f(34) = 4691 = 4691
f(35) = 19 = 19
f(36) = 5039 = 5039
f(37) = 163 = 163
f(38) = 5395 = 5*13*83
f(39) = 697 = 17*41
f(40) = 5759 = 13*443
f(41) = 743 = 743
f(42) = 6131 = 6131
f(43) = 395 = 5*79
f(44) = 6511 = 17*383
f(45) = 419 = 419
f(46) = 6899 = 6899
f(47) = 887 = 887
f(48) = 7295 = 5*1459
f(49) = 937 = 937
f(50) = 7699 = 7699
f(51) = 247 = 13*19
f(52) = 8111 = 8111
f(53) = 65 = 5*13
f(54) = 8531 = 19*449
f(55) = 1093 = 1093
f(56) = 8959 = 17*17*31
f(57) = 1147 = 31*37
f(58) = 9395 = 5*1879
f(59) = 601 = 601
f(60) = 9839 = 9839
f(61) = 629 = 17*37
f(62) = 10291 = 41*251
f(63) = 1315 = 5*263
f(64) = 10751 = 13*827
f(65) = 1373 = 1373
f(66) = 11219 = 13*863
f(67) = 179 = 179
f(68) = 11695 = 5*2339
f(69) = 373 = 373
f(70) = 12179 = 19*641
f(71) = 1553 = 1553
f(72) = 12671 = 12671
f(73) = 1615 = 5*17*19
f(74) = 13171 = 13171
f(75) = 839 = 839
f(76) = 13679 = 13679
f(77) = 871 = 13*67
f(78) = 14195 = 5*17*167
f(79) = 1807 = 13*139
f(80) = 14719 = 41*359
f(81) = 1873 = 1873
f(82) = 15251 = 101*151
f(83) = 485 = 5*97
f(84) = 15791 = 15791
f(85) = 251 = 251
f(86) = 16339 = 16339
f(87) = 2077 = 31*67
f(88) = 16895 = 5*31*109
f(89) = 2147 = 19*113
f(90) = 17459 = 13*17*79
f(91) = 1109 = 1109
f(92) = 18031 = 13*19*73
f(93) = 1145 = 5*229
f(94) = 18611 = 37*503
f(95) = 2363 = 17*139
f(96) = 19199 = 73*263
f(97) = 2437 = 2437
f(98) = 19795 = 5*37*107
f(99) = 157 = 157
f(100) = 20399 = 20399

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+104x-1

f(0)=1
f(1)=13
f(2)=211
f(3)=5
f(4)=431
f(5)=17
f(6)=659
f(7)=97
f(8)=179
f(9)=127
f(10)=67
f(11)=79
f(12)=107
f(13)=19
f(14)=1
f(15)=223
f(16)=101
f(17)=257
f(18)=439
f(19)=73
f(20)=37
f(21)=41
f(22)=163
f(23)=1
f(24)=83
f(25)=31
f(26)=109
f(27)=1
f(28)=739
f(29)=241
f(30)=4019
f(31)=523
f(32)=229
f(33)=113
f(34)=4691
f(35)=1
f(36)=5039
f(37)=1
f(38)=1
f(39)=1
f(40)=443
f(41)=743
f(42)=6131
f(43)=1
f(44)=383
f(45)=419
f(46)=6899
f(47)=887
f(48)=1459
f(49)=937
f(50)=7699
f(51)=1
f(52)=8111
f(53)=1
f(54)=449
f(55)=1093
f(56)=1
f(57)=1
f(58)=1879
f(59)=601
f(60)=9839
f(61)=1
f(62)=251
f(63)=263
f(64)=827
f(65)=1373
f(66)=863
f(67)=1
f(68)=2339
f(69)=373
f(70)=641
f(71)=1553
f(72)=12671
f(73)=1
f(74)=13171
f(75)=839
f(76)=13679
f(77)=1
f(78)=167
f(79)=139
f(80)=359
f(81)=1873
f(82)=151
f(83)=1
f(84)=15791
f(85)=1
f(86)=16339
f(87)=1
f(88)=1
f(89)=1
f(90)=1
f(91)=1109
f(92)=1
f(93)=1
f(94)=503
f(95)=1
f(96)=1
f(97)=2437
f(98)=1
f(99)=157

b) Substitution of the polynom
The polynom f(x)=x^2+104x-1 could be written as f(y)= y^2-2705 with x=y-52

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+52
f'(x)>2x+103

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

1, 13, 211, 5, 431, 17, 659, 97, 179, 127, 67, 79, 107, 19, 1, 223, 101, 257, 439, 73, 37, 41, 163, 1, 83, 31, 109, 1, 739, 241, 4019, 523, 229, 113, 4691, 1, 5039, 1, 1, 1, 443, 743, 6131, 1, 383, 419, 6899, 887, 1459, 937, 7699, 1, 8111, 1, 449, 1093, 1, 1, 1879, 601, 9839, 1, 251, 263, 827, 1373, 863, 1, 2339, 373, 641, 1553, 12671, 1, 13171, 839, 13679, 1, 167, 139, 359, 1873, 151, 1, 15791, 1, 16339, 1, 1, 1, 1, 1109, 1, 1, 503, 1, 1, 2437, 1, 157, 20399, 647, 21011, 1, 1, 1, 22259, 1, 1, 1451, 23539, 1, 1423, 613, 24851, 787, 1, 1, 1, 1, 26879, 1, 349, 1, 1663, 1789, 28979, 193, 5939, 1, 1601, 1, 31151, 197, 31891, 1, 1, 4127, 6679, 2111, 34159, 1, 2687, 883, 1, 4513, 1, 1153, 7459, 1, 1229, 4813, 233, 983, 593, 1, 40559, 1, 487, 5227, 42239, 5333, 1051, 1, 43951, 1, 44819, 5657, 1, 1, 3583, 2939, 1283, 599, 48371, 1, 49279, 6217, 10039, 1583, 1, 1, 52051, 1, 2789, 1, 53939, 1, 10979, 3461, 673, 7043, 3343, 1433, 4447, 911, 4523, 1, 11959, 7537, 1, 1, 547, 1, 757, 1, 3361, 619, 12979, 1, 283, 1, 2161, 1, 4003, 8573, 69119, 8707, 1, 4421, 5483, 1, 293, 1823, 73471, 1, 1, 587, 15139, 2383, 76819, 569, 77951, 1, 1, 1, 80239, 5051, 1, 10247, 82559, 1, 1, 1, 1, 1, 1, 10837, 1, 10987, 88499, 5569, 317, 1129, 90931, 11443, 1, 11597, 18679, 1, 1, 1, 95891, 1, 97151, 719, 98419, 1, 1, 6271, 1, 12703, 7867, 1, 1, 3257, 104879, 1, 1, 1, 1361, 13523, 337, 1, 1091, 1, 111539, 1, 1, 14197, 114259, 1, 115631, 727, 6883, 14713, 118399, 14887, 1, 1, 9323, 401, 122611, 3083, 4001, 1, 1151, 3943, 1, 997, 128339, 1, 1213, 1, 131251, 1, 1, 1, 26839, 1, 1, 17053, 1, 1, 10667, 4357, 1, 1, 1667, 17807, 1, 8999, 144751, 1, 146291, 1, 1, 1429, 29879, 1, 150959, 2371, 152531, 3833, 154111, 1, 155699, 9781, 1, 1, 1, 19963, 12347, 1, 823, 1, 1973, 1, 1741, 1, 167039, 20983, 9923, 1, 170351, 1, 1, 1, 34739, 21817, 2113, 5507, 1567, 1, 1, 22453, 13883, 1193, 2803, 1, 183919, 11549, 185651, 4663, 1, 1, 189139, 2969, 1, 461, 1, 1861, 194431, 1, 5303, 1, 1, 1, 1289, 25087, 201599, 1489, 15647, 1277, 15787, 3221, 2621, 25997, 1019, 26227, 210739, 13229, 1, 1, 214451, 1, 216319, 2089, 1, 1, 2179, 6907, 3313, 5573, 1061, 1, 225779, 1, 1, 1, 1039, 1, 231551, 5813, 12289, 1, 235439, 1847, 1, 1, 2237, 2311, 1, 1, 243311, 15269, 245299, 1811, 49459, 1, 13121, 3911, 14783, 1, 1499, 31793, 1511, 1, 51479, 521, 8369, 1, 2399, 6563, 1, 33073, 265619, 1, 1447, 1, 269779, 1, 1, 6823, 273971, 17189, 276079, 17321, 55639, 1, 21563, 2069, 21727, 1, 284591, 1, 1, 35977, 3041, 541, 1, 1, 3023, 1, 295411, 2851, 2141, 37337, 3527, 9403, 301999, 1, 304211, 1, 306431, 1, 23743, 1, 4783, 19501, 16481, 1, 2269, 1, 317651, 1, 319919, 1, 64439, 3109, 19087, 1, 1, 4099, 3019, 20639, 1, 1, 66739, 2203, 4603, 1, 1531, 1, 1, 1, 4133, 2531, 1867, 21661, 347759, 1, 9463, 8783, 352511, 1, 5297, 1, 3761, 1, 1613, 1, 11681, 1, 1, 22859, 5477, 23011, 5683, 46327, 28603, 46633, 374291, 2347, 1, 2953, 22307, 2503, 1, 1, 2447, 1, 9431, 1, 389171, 1319, 391679, 49117, 78839, 1, 396719, 12437, 2543, 1, 1, 50383, 1637, 1, 4787, 1, 1699, 51343, 412031, 10333, 414611, 1, 5281, 1, 1, 4049, 24847, 52963, 22369, 1, 2389, 1, 430259, 1, 86579, 54277, 33503, 3413, 1, 1, 14221, 1783, 11987, 3271, 1, 1, 448879, 1481, 1, 1, 23909, 1, 456979, 14323, 91939, 1801, 462419, 57973, 465151, 1, 1619, 1, 1, 29501, 7283, 3491, 1, 59693, 478931, 1, 3793, 1, 15629, 60737, 97459, 1, 1907, 1, 492911, 1, 1, 62143, 29327, 62497, 100279, 1, 1, 7901, 2053, 12713, 39227, 1, 512819, 32141, 6067, 32321, 518579, 65003, 521471, 769, 3217, 1, 1, 1, 5581, 66457, 1, 3517, 536051, 6719, 2417, 1987, 1, 67927, 1, 1, 1, 17167, 550831, 1, 553811, 1693, 556799, 3673, 111959, 35081, 1559, 2713, 1, 1, 568831, 71293, 2963, 1, 3709, 18013, 577939, 1, 1, 14563, 44927, 36599, 2377, 36791, 2879, 1, 3929, 74353, 7549, 1, 1, 9391, 1, 1, 121139, 5839, 608819, 38149, 611951, 7669, 3187, 4057, 1, 77477, 1, 1, 1, 1, 1, 15733, 630911, 79063, 3797, 1, 1, 1, 640499, 80263, 2671, 1, 1, 1, 1, 1, 7687, 1997, 17747, 1, 6803, 8269, 17923, 41549, 51263, 1, 10303, 2707, 1, 1, 1, 1, 4889, 5009, 1, 2087, 137239, 3307, 3011, 3323, 692851, 1, 1, 1, 699539, 1, 1, 1, 5081, 88493, 1, 17783, 4219, 2351, 716399, 1, 1, 90187, 1, 1, 726611, 1, 42943, 1759, 733459, 7069, 1, 5431, 1933, 2441, 743791, 9319, 1, 1, 750719, 94057, 1, 23623, 1, 1, 10427, 19073, 1, 95803, 1, 48121, 154339, 48341, 40801, 1, 25121, 1, 21143, 12251, 785839, 1, 1, 98897, 792959, 2423, 796531, 1, 61547, 50119, 1, 941, 161459, 5323, 1, 1, 1, 2551, 9857, 6029, 821759, 7919, 165079, 1, 48767, 51929, 26861, 1, 836351, 104773, 1949, 6577, 1, 26423, 65183, 1, 3851, 21323, 854771, 1, 858479, 3163, 172439, 108007, 1, 1, 21211, 1, 5563, 1, 2767, 5783, 176179, 6491, 1, 1, 888431, 1, 1, 1, 1, 112237, 1, 1, 22039, 28297, 1, 1, 911231, 114143, 2833, 1, 4967, 1, 922739, 1, 1, 1, 1, 29137, 934319, 14629, 187639, 117517, 942079, 1, 72767, 1, 2357, 1, 2153, 1, 1, 1, 961619, 1, 965551, 6047, 1, 9341, 973439, 1, 195479, 61211, 57727, 1, 985331, 24683, 52069, 1, 2663, 1, 1, 1, 77023, 1, 2239, 25183, 9433, 2039, 1, 3733, 3037, 1, 9371, 1, 1, 1, 25111, 32237, 54401, 129457, 2843, 129967, 1041779, 65239, 14327, 13099, 4751, 1, 81083, 1, 211639, 1, 1, 16631, 1, 26713, 1, 7057, 1, 1, 1, 5197, 1083059, 1, 1087231, 1, 1091411, 8543, 1, 34303, 219959, 137737,

6. Sequence of the polynom (only primes)

13, 211, 5, 431, 17, 659, 97, 179, 127, 67, 79, 107, 19, 223, 101, 257, 439, 73, 37, 41, 163, 83, 31, 109, 739, 241, 4019, 523, 229, 113, 4691, 5039, 443, 743, 6131, 383, 419, 6899, 887, 1459, 937, 7699, 8111, 449, 1093, 1879, 601, 9839, 251, 263, 827, 1373, 863, 2339, 373, 641, 1553, 12671, 13171, 839, 13679, 167, 139, 359, 1873, 151, 15791, 16339, 1109, 503, 2437, 157, 20399, 647, 21011, 22259, 1451, 23539, 1423, 613, 24851, 787, 26879, 349, 1663, 1789, 28979, 193, 5939, 1601, 31151, 197, 31891, 4127, 6679, 2111, 34159, 2687, 883, 4513, 1153, 7459, 1229, 4813, 233, 983, 593, 40559, 487, 5227, 42239, 5333, 1051, 43951, 44819, 5657, 3583, 2939, 1283, 599, 48371, 49279, 6217, 10039, 1583, 52051, 2789, 53939, 10979, 3461, 673, 7043, 3343, 1433, 4447, 911, 4523, 11959, 7537, 547, 757, 3361, 619, 12979, 283, 2161, 4003, 8573, 69119, 8707, 4421, 5483, 293, 1823, 73471, 587, 15139, 2383, 76819, 569, 77951, 80239, 5051, 10247, 82559, 10837, 10987, 88499, 5569, 317, 1129, 90931, 11443, 11597, 18679, 95891, 97151, 719, 98419, 6271, 12703, 7867, 3257, 104879, 1361, 13523, 337, 1091, 111539, 14197, 114259, 115631, 727, 6883, 14713, 118399, 14887, 9323, 401, 122611, 3083, 4001, 1151, 3943, 997, 128339, 1213, 131251, 26839, 17053, 10667, 4357, 1667, 17807, 8999, 144751, 146291, 1429, 29879, 150959, 2371, 152531, 3833, 154111, 155699, 9781, 19963, 12347, 823, 1973, 1741, 167039, 20983, 9923, 170351, 34739, 21817, 2113, 5507, 1567, 22453, 13883, 1193, 2803, 183919, 11549, 185651, 4663, 189139, 2969, 461, 1861, 194431, 5303, 1289, 25087, 201599, 1489, 15647, 1277, 15787, 3221, 2621, 25997, 1019, 26227, 210739, 13229, 214451, 216319, 2089, 2179, 6907, 3313, 5573, 1061, 225779, 1039, 231551, 5813, 12289, 235439, 1847, 2237, 2311, 243311, 15269, 245299, 1811, 49459, 13121, 3911, 14783, 1499, 31793, 1511, 51479, 521, 8369, 2399, 6563, 33073, 265619, 1447, 269779, 6823, 273971, 17189, 276079, 17321, 55639, 21563, 2069, 21727, 284591, 35977, 3041, 541, 3023, 295411, 2851, 2141, 37337, 3527, 9403, 301999, 304211, 306431, 23743, 4783, 19501, 16481, 2269, 317651, 319919, 64439, 3109, 19087, 4099, 3019, 20639, 66739, 2203, 4603, 1531, 4133, 2531, 1867, 21661, 347759, 9463, 8783, 352511, 5297, 3761, 1613, 11681, 22859, 5477, 23011, 5683, 46327, 28603, 46633, 374291, 2347, 2953, 22307, 2503, 2447, 9431, 389171, 1319, 391679, 49117, 78839, 396719, 12437, 2543, 50383, 1637, 4787, 1699, 51343, 412031, 10333, 414611, 5281, 4049, 24847, 52963, 22369, 2389, 430259, 86579, 54277, 33503, 3413, 14221, 1783, 11987, 3271, 448879, 1481, 23909, 456979, 14323, 91939, 1801, 462419, 57973, 465151, 1619, 29501, 7283, 3491, 59693, 478931, 3793, 15629, 60737, 97459, 1907, 492911, 62143, 29327, 62497, 100279, 7901, 2053, 12713, 39227, 512819, 32141, 6067, 32321, 518579, 65003, 521471, 769, 3217, 5581, 66457, 3517, 536051, 6719, 2417, 1987, 67927, 17167, 550831, 553811, 1693, 556799, 3673, 111959, 35081, 1559, 2713, 568831, 71293, 2963, 3709, 18013, 577939, 14563, 44927, 36599, 2377, 36791, 2879, 3929, 74353, 7549, 9391, 121139, 5839, 608819, 38149, 611951, 7669, 3187, 4057, 77477, 15733, 630911, 79063, 3797, 640499, 80263, 2671, 7687, 1997, 17747, 6803, 8269, 17923, 41549, 51263, 10303, 2707, 4889, 5009, 2087, 137239, 3307, 3011, 3323, 692851, 699539, 5081, 88493, 17783, 4219, 2351, 716399, 90187, 726611, 42943, 1759, 733459, 7069, 5431, 1933, 2441, 743791, 9319, 750719, 94057, 23623, 10427, 19073, 95803, 48121, 154339, 48341, 40801, 25121, 21143, 12251, 785839, 98897, 792959, 2423, 796531, 61547, 50119, 941, 161459, 5323, 2551, 9857, 6029, 821759, 7919, 165079, 48767, 51929, 26861, 836351, 104773, 1949, 6577, 26423, 65183, 3851, 21323, 854771, 858479, 3163, 172439, 108007, 21211, 5563, 2767, 5783, 176179, 6491, 888431, 112237, 22039, 28297, 911231, 114143, 2833, 4967, 922739, 29137, 934319, 14629, 187639, 117517, 942079, 72767, 2357, 2153, 961619, 965551, 6047, 9341, 973439, 195479, 61211, 57727, 985331, 24683, 52069, 2663, 77023, 2239, 25183, 9433, 2039, 3733, 3037, 9371, 25111, 32237, 54401, 129457, 2843, 129967, 1041779, 65239, 14327, 13099, 4751, 81083, 211639, 16631, 26713, 7057, 5197, 1083059, 1087231, 1091411, 8543, 34303, 219959, 137737,

7. Distribution of the primes

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

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)
11010371.0000000.3000001.0000000.0000000.0000000.000000
21006617490.6600000.1700000.6600006.6000005.6666677.000000
31.0006211404810.6210000.1400000.6210009.4090918.2352949.816326
410.0006.5099745.5350.6509000.0974000.65090010.4814826.95714311.507277
5100.00065.9767.63858.3380.6597600.0763800.65976010.1361197.84188910.539838
61.000.000665.30762.887602.4200.6653070.0628870.66530710.0840768.23343810.326374
710.000.0006.693.943532.0426.161.9010.6693940.0532040.66939410.0614358.46028610.228580
8100.000.00067.245.0324.611.87262.633.1600.6724500.0461190.67245010.0456538.66824810.164584
91.000.000.000674.771.11840.704.448634.066.6700.6747710.0407040.67477110.0345138.82601510.123498
1010.000.000.0006.766.194.116364.251.9576.401.942.1590.6766190.0364250.67661910.0273918.94870210.096639


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)
122111.0000000.5000000.5000000.0000000.0000000.000000
244221.0000000.5000000.5000002.0000002.0000002.000000
388351.0000000.3750000.6250002.0000001.5000002.500000
416143110.8750000.1875000.6875001.7500001.0000002.200000
532254210.7812500.1250000.6562501.7857141.3333331.909091
6644711360.7343750.1718750.5625001.8800002.7500001.714286
71288123580.6328120.1796880.4531251.7234042.0909091.611111
8256160421180.6250000.1640620.4609381.9753091.8260872.034483
9512316832330.6171880.1621090.4550781.9750001.9761901.974576
101.0246361464900.6210940.1425780.4785162.0126581.7590362.103004
112.0481.3052441.0610.6372070.1191410.5180662.0518871.6712332.165306
124.0962.6404412.1990.6445310.1076660.5368652.0229891.8073772.072573
138.1925.3308124.5180.6506350.0991210.5515142.0189391.8412702.054570
1416.38410.6711.5089.1630.6513060.0920410.5592652.0020641.8571432.028110
1532.76821.4972.78218.7150.6560360.0849000.5711362.0145251.8448282.042453
1665.53643.2015.19738.0040.6591950.0793000.5798952.0096291.8680802.030671
17131.07286.5249.80476.7200.6601260.0747990.5853272.0028241.8864732.018735
18262.144173.44118.475154.9660.6616250.0704770.5911482.0045421.8844352.019891
19524.288347.95134.643313.3080.6636640.0660760.5975882.0061641.8751292.021785
201.048.576697.71165.741631.9700.6653890.0626960.6026942.0051991.8976712.017089
212.097.1521.398.355124.7481.273.6070.6667880.0594840.6073032.0042041.8975682.015297
224.194.3042.801.489237.0822.564.4070.6679270.0565250.6114022.0034171.9004872.013499
238.388.6085.612.778451.7765.161.0020.6690950.0538560.6152392.0034981.9055682.012552
2416.777.21611.243.550862.48910.381.0610.6701680.0514080.6187592.0032061.9091082.011443
2533.554.43222.518.7871.651.45120.867.3360.6711120.0492170.6218952.0028181.9147502.010135
2667.108.86445.096.2333.167.37941.928.8540.6719860.0471980.6247892.0026051.9179372.009306
27134.217.72890.298.7166.084.93384.213.7830.6727780.0453360.6274422.0023561.9211262.008492
28268.435.456180.796.23911.712.381169.083.8580.6735180.0436320.6298862.0022021.9248172.007793
29536.870.912361.954.97622.567.327339.387.6490.6741940.0420350.6321592.0020051.9267932.007215
301.073.741.824724.595.67843.548.789681.046.8890.6748320.0405580.6342742.0018941.9297272.006693
312.147.483.6481.450.465.36684.132.4501.366.332.9160.6754260.0391770.6362482.0017581.9319132.006224
324.294.967.2962.903.334.518162.721.9242.740.612.5940.6759850.0378870.6380992.0016571.9341162.005816
338.589.934.5925.811.165.339315.069.7995.496.095.5400.6765090.0366790.6398302.0015491.9362472.005426
3417.179.869.18411.630.818.946610.733.36711.020.085.5790.6770030.0355490.6414532.0014611.9384072.005075


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
121100100
242110101
383120201
4163120201
5324130301
66411290704
71282351801409
8256421428022020
9512833152043040
101.0241464799073073
112.0482448615801200124
124.09644114929202110230
138.19281227953303920420
1416.3841.50851299607370771
1532.7682.7829561.82601.37901.403
1665.5365.1971.7753.42202.56902.628
17131.0729.8043.2806.52404.85304.951
18262.14418.4756.16312.31209.20809.267
19524.28834.64311.55823.085017.306017.337
201.048.57665.74121.91843.823032.820032.921
212.097.152124.74841.63983.109062.281062.467
224.194.304237.08278.867158.2150118.4960118.586
238.388.608451.776150.481301.2950225.7680226.008
2416.777.216862.489287.850574.6390430.7480431.741
2533.554.4321.651.451551.2941.100.1570824.7330826.718
2667.108.8643.167.3791.056.7152.110.66401.582.80701.584.572
27134.217.7286.084.9332.029.1194.055.81403.041.06703.043.866
28268.435.45611.712.3813.904.2007.808.18105.855.41205.856.969
29536.870.91222.567.3277.523.08415.044.243011.284.039011.283.288
301.073.741.82443.548.78914.516.42129.032.368021.774.771021.774.018
312.147.483.64884.132.45028.038.06556.094.385042.067.201042.065.249
324.294.967.296162.721.92454.238.870108.483.054081.359.413081.362.511
338.589.934.592315.069.799105.023.369210.046.4300157.527.5810157.542.218
3417.179.869.184610.733.367203.579.344407.154.0230305.357.2620305.376.105


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
385232120
41611652333
532211475754
66436191791269
712858283012161317
8256118605826362234
951223311411949645070
101.02449025123998129108155
112.0481.061527534214295239313
124.0962.1991.0831.116467599496637
138.1924.5182.3022.2161.0051.2551.0231.235
1416.3849.1634.6084.5552.0942.5032.0602.506
1532.76818.7159.4759.2404.3555.0444.2695.047
1665.53638.00419.20418.8008.81110.1108.88110.202
17131.07276.72038.97737.74317.97520.39517.99520.355
18262.144154.96678.53276.43436.45640.95436.40041.156
19524.288313.308158.782154.52673.94582.57573.92982.859
201.048.576631.970320.061311.909149.890165.826149.648166.606
212.097.1521.273.607644.876628.731302.905333.526302.721334.455
224.194.3042.564.4071.297.3441.267.063612.107671.001611.399669.900
238.388.6085.161.0022.608.0632.552.9391.234.9691.347.3601.233.8931.344.780
2416.777.21610.381.0615.243.2305.137.8312.489.8372.701.5322.488.6922.701.000
2533.554.43220.867.33610.531.71010.335.6265.015.7615.419.5715.014.0245.417.980
2667.108.86441.928.85421.152.29520.776.55910.095.12410.871.47610.094.89110.867.363
27134.217.72884.213.78342.466.96141.746.82220.313.86721.798.13520.312.55821.789.223
28268.435.456169.083.85885.230.69883.853.16040.853.60043.693.41440.848.79243.688.052
29536.870.912339.387.649171.018.150168.369.49982.115.01387.583.23582.116.65787.572.744
301.073.741.824681.046.889343.081.068337.965.821164.997.246175.540.020165.003.145175.506.478
312.147.483.6481.366.332.916688.109.891678.223.025331.406.035351.752.488331.449.356351.725.037
324.294.967.2962.740.612.5941.379.886.9031.360.725.691665.532.203704.774.627665.553.435704.752.329
338.589.934.5925.496.095.5402.766.596.8602.729.498.6801.336.099.5821.411.969.9031.336.093.6061.411.932.449
3417.179.869.18411.020.085.5795.545.994.9585.474.090.6212.681.640.1042.828.457.6872.681.601.6962.828.386.092


8. Check for existing Integer Sequences by OEIS

Found in Database : 1, 13, 211, 5, 431, 17, 659, 97, 179, 127, 67, 79, 107, 19, 1, 223, 101, 257, 439, 73,
Found in Database : 13, 211, 5, 431, 17, 659, 97, 179, 127, 67, 79, 107, 19, 223, 101, 257, 439, 73, 37, 41, 163, 83, 31, 109, 739, 241, 4019, 523, 229, 113, 4691, 5039,
Found in Database : 5, 13, 17, 19, 31, 37, 41, 67, 73, 79, 83, 97, 101, 107, 109, 113, 127, 139,