Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:32:03
Deutsch
19.Apr 2024

Polynom = x^2+96x-17

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) = 17 = 17
f(1) = 5 = 5
f(2) = 179 = 179
f(3) = 35 = 5*7
f(4) = 383 = 383
f(5) = 61 = 61
f(6) = 595 = 5*7*17
f(7) = 11 = 11
f(8) = 815 = 5*163
f(9) = 29 = 29
f(10) = 1043 = 7*149
f(11) = 145 = 5*29
f(12) = 1279 = 1279
f(13) = 175 = 5*5*7
f(14) = 1523 = 1523
f(15) = 103 = 103
f(16) = 1775 = 5*5*71
f(17) = 119 = 7*17
f(18) = 2035 = 5*11*37
f(19) = 271 = 271
f(20) = 2303 = 7*7*47
f(21) = 305 = 5*61
f(22) = 2579 = 2579
f(23) = 85 = 5*17
f(24) = 2863 = 7*409
f(25) = 47 = 47
f(26) = 3155 = 5*631
f(27) = 413 = 7*59
f(28) = 3455 = 5*691
f(29) = 451 = 11*41
f(30) = 3763 = 53*71
f(31) = 245 = 5*7*7
f(32) = 4079 = 4079
f(33) = 265 = 5*53
f(34) = 4403 = 7*17*37
f(35) = 571 = 571
f(36) = 4735 = 5*947
f(37) = 613 = 613
f(38) = 5075 = 5*5*7*29
f(39) = 41 = 41
f(40) = 5423 = 11*17*29
f(41) = 175 = 5*5*7
f(42) = 5779 = 5779
f(43) = 745 = 5*149
f(44) = 6143 = 6143
f(45) = 791 = 7*113
f(46) = 6515 = 5*1303
f(47) = 419 = 419
f(48) = 6895 = 5*7*197
f(49) = 443 = 443
f(50) = 7283 = 7283
f(51) = 935 = 5*11*17
f(52) = 7679 = 7*1097
f(53) = 985 = 5*197
f(54) = 8083 = 59*137
f(55) = 259 = 7*37
f(56) = 8495 = 5*1699
f(57) = 17 = 17
f(58) = 8915 = 5*1783
f(59) = 1141 = 7*163
f(60) = 9343 = 9343
f(61) = 1195 = 5*239
f(62) = 9779 = 7*11*127
f(63) = 625 = 5*5*5*5
f(64) = 10223 = 10223
f(65) = 653 = 653
f(66) = 10675 = 5*5*7*61
f(67) = 1363 = 29*47
f(68) = 11135 = 5*17*131
f(69) = 1421 = 7*7*29
f(70) = 11603 = 41*283
f(71) = 185 = 5*37
f(72) = 12079 = 47*257
f(73) = 385 = 5*7*11
f(74) = 12563 = 17*739
f(75) = 1601 = 1601
f(76) = 13055 = 5*7*373
f(77) = 1663 = 1663
f(78) = 13555 = 5*2711
f(79) = 863 = 863
f(80) = 14063 = 7*7*7*41
f(81) = 895 = 5*179
f(82) = 14579 = 61*239
f(83) = 1855 = 5*7*53
f(84) = 15103 = 11*1373
f(85) = 1921 = 17*113
f(86) = 15635 = 5*53*59
f(87) = 497 = 7*71
f(88) = 16175 = 5*5*647
f(89) = 257 = 257
f(90) = 16723 = 7*2389
f(91) = 2125 = 5*5*5*17
f(92) = 17279 = 37*467
f(93) = 2195 = 5*439
f(94) = 17843 = 7*2549
f(95) = 1133 = 11*103
f(96) = 18415 = 5*29*127
f(97) = 1169 = 7*167
f(98) = 18995 = 5*29*131
f(99) = 2411 = 2411
f(100) = 19583 = 19583

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+96x-17

f(0)=17
f(1)=5
f(2)=179
f(3)=7
f(4)=383
f(5)=61
f(6)=1
f(7)=11
f(8)=163
f(9)=29
f(10)=149
f(11)=1
f(12)=1279
f(13)=1
f(14)=1523
f(15)=103
f(16)=71
f(17)=1
f(18)=37
f(19)=271
f(20)=47
f(21)=1
f(22)=2579
f(23)=1
f(24)=409
f(25)=1
f(26)=631
f(27)=59
f(28)=691
f(29)=41
f(30)=53
f(31)=1
f(32)=4079
f(33)=1
f(34)=1
f(35)=571
f(36)=947
f(37)=613
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=5779
f(43)=1
f(44)=6143
f(45)=113
f(46)=1303
f(47)=419
f(48)=197
f(49)=443
f(50)=7283
f(51)=1
f(52)=1097
f(53)=1
f(54)=137
f(55)=1
f(56)=1699
f(57)=1
f(58)=1783
f(59)=1
f(60)=9343
f(61)=239
f(62)=127
f(63)=1
f(64)=10223
f(65)=653
f(66)=1
f(67)=1
f(68)=131
f(69)=1
f(70)=283
f(71)=1
f(72)=257
f(73)=1
f(74)=739
f(75)=1601
f(76)=373
f(77)=1663
f(78)=2711
f(79)=863
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1373
f(85)=1
f(86)=1
f(87)=1
f(88)=647
f(89)=1
f(90)=2389
f(91)=1
f(92)=467
f(93)=439
f(94)=2549
f(95)=1
f(96)=1
f(97)=167
f(98)=1
f(99)=2411

b) Substitution of the polynom
The polynom f(x)=x^2+96x-17 could be written as f(y)= y^2-2321 with x=y-48

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+48
f'(x)>2x+95

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

17, 5, 179, 7, 383, 61, 1, 11, 163, 29, 149, 1, 1279, 1, 1523, 103, 71, 1, 37, 271, 47, 1, 2579, 1, 409, 1, 631, 59, 691, 41, 53, 1, 4079, 1, 1, 571, 947, 613, 1, 1, 1, 1, 5779, 1, 6143, 113, 1303, 419, 197, 443, 7283, 1, 1097, 1, 137, 1, 1699, 1, 1783, 1, 9343, 239, 127, 1, 10223, 653, 1, 1, 131, 1, 283, 1, 257, 1, 739, 1601, 373, 1663, 2711, 863, 1, 1, 1, 1, 1373, 1, 1, 1, 647, 1, 2389, 1, 467, 439, 2549, 1, 1, 167, 1, 2411, 19583, 1, 1187, 1, 2969, 659, 389, 2713, 1, 2791, 22643, 1, 23279, 1, 509, 433, 983, 1, 1, 1, 25903, 1, 3797, 673, 199, 1, 5591, 1, 521, 1, 29363, 743, 4297, 761, 30803, 487, 1, 997, 1291, 1, 33023, 1, 1987, 1, 34543, 1, 1009, 4463, 7219, 4561, 479, 233, 919, 1, 1327, 4861, 1, 709, 1, 1, 5849, 1, 1019, 211, 6089, 5381, 1, 1, 8867, 1399, 2659, 1, 1, 1163, 6709, 2963, 563, 3019, 1, 6151, 49663, 1, 1367, 1, 51503, 1, 10487, 1, 1, 1, 54323, 1, 1, 1, 5113, 1013, 11443, 7213, 1, 1, 59183, 1, 8597, 1, 1, 701, 1777, 3919, 269, 569, 3779, 1619, 2251, 1, 2287, 2089, 1, 1061, 13687, 1, 9929, 1, 1, 1, 71663, 4513, 14551, 1, 14771, 1, 10709, 1, 76079, 1, 1, 9721, 15667, 1409, 1, 5003, 2179, 1, 1543, 1, 1, 1, 16823, 2647, 2437, 1, 1, 311, 87679, 2207, 88883, 1, 1, 5669, 2609, 11491, 1, 1, 13397, 1, 1, 1, 3851, 12113, 19507, 1753, 3407, 1, 1, 1259, 101363, 1, 1, 349, 1223, 1, 105263, 331, 9689, 1, 107903, 1, 3121, 6869, 4423, 1, 1, 1, 113279, 1, 114643, 1, 23203, 1, 1, 1, 1, 1, 2557, 1511, 1579, 7643, 1447, 1, 1, 15641, 2063, 1, 7487, 1, 1, 1471, 1, 16363, 3761, 8273, 133103, 1, 2281, 1, 1321, 1, 1, 2161, 1, 1, 1, 3533, 20297, 3571, 881, 1289, 29027, 829, 5867, 2633, 8719, 1, 21397, 941, 151343, 2377, 1, 19213, 1, 1, 1229, 1, 157679, 1, 3389, 20011, 4597, 1, 32503, 1, 1, 1031, 165779, 1, 167423, 21031, 6763, 1, 34147, 10723, 2239, 1, 174079, 4373, 1, 5519, 35491, 1, 35831, 22501, 10639, 1, 182579, 2293, 1, 1, 1283, 1, 1, 23581, 189523, 1, 17389, 1201, 193043, 3463, 1, 1439, 1, 12343, 1, 1, 28597, 457, 1, 3623, 40759, 6397, 1, 461, 207443, 5209, 4271, 1051, 1129, 1, 1217, 1, 42967, 3853, 216703, 5441, 218579, 1, 1951, 1, 6353, 1, 44851, 28151, 32309, 1, 3739, 1, 230003, 28871, 4217, 4159, 1871, 1, 1, 1, 1, 1, 1181, 30091, 1667, 1, 1, 1, 245683, 1, 1063, 6217, 1, 3917, 1, 1, 1, 1873, 255743, 1, 6967, 1, 259823, 1, 1, 557, 7541, 3011, 266003, 1669, 5471, 1, 270163, 1, 3203, 1, 1483, 2459, 1, 3469, 2341, 6991, 280703, 35221, 8081, 1109, 11399, 1277, 1, 1, 1, 1, 291443, 1, 8389, 1, 59159, 1, 42569, 7477, 1, 1, 10427, 2371, 60919, 1, 61363, 1, 1, 3877, 311279, 1, 44789, 1, 1, 5659, 63607, 4987, 320303, 1, 1621, 8093, 4219, 40751, 1, 1, 9413, 20663, 3221, 1, 1, 1, 336403, 1, 1831, 1, 1949, 1, 343423, 1723, 1, 4337, 20479, 3119, 6373, 43963, 1, 6323, 20899, 1, 1381, 2243, 5903, 45161, 10357, 4133, 1237, 1, 1, 1, 1, 1, 372223, 46681, 2141, 1, 6857, 1, 1, 9521, 9319, 1, 1, 24113, 1, 3467, 4583, 4441, 56009, 9833, 394579, 1, 1, 1, 1, 7159, 16087, 1, 36793, 1, 3109, 5107, 58549, 3023, 82483, 51713, 1, 13009, 417583, 1, 3067, 1, 3329, 7573, 1, 26669, 1747, 26833, 1, 10799, 1, 1, 435923, 1, 1, 1, 1, 1, 15307, 11131, 1, 1, 449263, 28163, 1, 56663, 90931, 1, 457363, 1, 460079, 1, 42073, 3413, 1, 58363, 18731, 1, 67289, 1, 2837, 1697, 1, 5431, 5639, 1, 96419, 1, 1, 12157, 28687, 12227, 1709, 1, 8969, 1, 99223, 62191, 3061, 1787, 501779, 1, 72089, 7907, 1, 5783, 2083, 1, 513203, 1, 3767, 6469, 1487, 9293, 1, 65413, 1, 4111, 31039, 3307, 75797, 1, 14419, 1, 6311, 33619, 1, 1, 542323, 2719, 1, 13669, 548243, 1, 15749, 1, 1, 9923, 1, 13967, 560179, 1, 563183, 1, 2311, 2447, 113843, 71341, 81749, 1, 1, 1, 34019, 72481, 4651, 1, 1, 1, 4937, 1, 1, 1, 84809, 1583, 1, 2671, 119971, 9397, 12829, 1, 606079, 1, 3001, 1, 1, 1, 3517, 1, 8713, 1, 621779, 1, 56813, 2797, 1, 78713, 1, 79111, 634483, 7951, 91097, 1, 37699, 1, 128819, 80713, 3499, 2897, 650543, 1, 1, 1, 1, 1, 1, 1, 132707, 5939, 1741, 1, 1, 2399, 18199, 1, 19333, 1, 1, 85201, 97609, 17123, 40387, 1, 689903, 43223, 138647, 12409, 1, 87281, 99989, 877, 24251, 2203, 1, 2393, 1, 1, 2339, 1, 716783, 1, 720179, 18047, 14767, 5333, 145399, 5693, 1, 1, 66713, 1, 737279, 1, 12143, 1, 1, 46619, 1, 1993, 751103, 1, 1, 1, 1, 1, 152311, 95413, 2887, 13693, 768563, 9629, 1, 1, 775603, 97171, 1, 97613, 31307, 1, 786223, 1, 1931, 1, 793343, 99391, 22769, 49919, 4327, 1, 1, 20147, 27851, 1, 1, 25409, 9587, 1823, 1, 1, 1, 20599, 825779, 2069, 16927, 4723, 1, 1, 2357, 2833, 1, 1, 1847, 1, 1, 1, 1, 106663, 1, 1, 14557, 1, 12149, 21611, 1, 1, 174007, 2477, 4993, 6841, 1, 4397, 125897, 22079, 1, 7919, 177763, 1, 16229, 15973, 21863, 1, 18371, 2819, 6067, 28309, 1, 6689, 6287, 1, 31567, 11467, 15581, 1, 923123, 115631, 5297, 116113, 1, 1, 1, 2927, 25367, 3359, 55439, 118051, 189271, 8467, 190051, 59513, 136309, 1, 5737, 24001, 2593, 1, 3167, 1, 7759, 1, 973823, 1, 1, 1, 140249, 61483, 1, 1, 28277, 1, 993683, 1, 58687, 1, 1001683, 17923, 201139, 125963, 1, 1, 21569, 12697, 20771, 5099, 92893, 1, 1, 16061, 7103, 1, 1034003, 1, 3617, 26003, 5237, 1, 1, 65519, 210071, 18793, 28499, 1, 25819, 1, 20051, 1, 1, 2521, 42839, 1, 153589, 2693, 63487, 1, 1083443, 4679, 5879, 1, 3701, 4273,

6. Sequence of the polynom (only primes)

17, 5, 179, 7, 383, 61, 11, 163, 29, 149, 1279, 1523, 103, 71, 37, 271, 47, 2579, 409, 631, 59, 691, 41, 53, 4079, 571, 947, 613, 5779, 6143, 113, 1303, 419, 197, 443, 7283, 1097, 137, 1699, 1783, 9343, 239, 127, 10223, 653, 131, 283, 257, 739, 1601, 373, 1663, 2711, 863, 1373, 647, 2389, 467, 439, 2549, 167, 2411, 19583, 1187, 2969, 659, 389, 2713, 2791, 22643, 23279, 509, 433, 983, 25903, 3797, 673, 199, 5591, 521, 29363, 743, 4297, 761, 30803, 487, 997, 1291, 33023, 1987, 34543, 1009, 4463, 7219, 4561, 479, 233, 919, 1327, 4861, 709, 5849, 1019, 211, 6089, 5381, 8867, 1399, 2659, 1163, 6709, 2963, 563, 3019, 6151, 49663, 1367, 51503, 10487, 54323, 5113, 1013, 11443, 7213, 59183, 8597, 701, 1777, 3919, 269, 569, 3779, 1619, 2251, 2287, 2089, 1061, 13687, 9929, 71663, 4513, 14551, 14771, 10709, 76079, 9721, 15667, 1409, 5003, 2179, 1543, 16823, 2647, 2437, 311, 87679, 2207, 88883, 5669, 2609, 11491, 13397, 3851, 12113, 19507, 1753, 3407, 1259, 101363, 349, 1223, 105263, 331, 9689, 107903, 3121, 6869, 4423, 113279, 114643, 23203, 2557, 1511, 1579, 7643, 1447, 15641, 2063, 7487, 1471, 16363, 3761, 8273, 133103, 2281, 1321, 2161, 3533, 20297, 3571, 881, 1289, 29027, 829, 5867, 2633, 8719, 21397, 941, 151343, 2377, 19213, 1229, 157679, 3389, 20011, 4597, 32503, 1031, 165779, 167423, 21031, 6763, 34147, 10723, 2239, 174079, 4373, 5519, 35491, 35831, 22501, 10639, 182579, 2293, 1283, 23581, 189523, 17389, 1201, 193043, 3463, 1439, 12343, 28597, 457, 3623, 40759, 6397, 461, 207443, 5209, 4271, 1051, 1129, 1217, 42967, 3853, 216703, 5441, 218579, 1951, 6353, 44851, 28151, 32309, 3739, 230003, 28871, 4217, 4159, 1871, 1181, 30091, 1667, 245683, 1063, 6217, 3917, 1873, 255743, 6967, 259823, 557, 7541, 3011, 266003, 1669, 5471, 270163, 3203, 1483, 2459, 3469, 2341, 6991, 280703, 35221, 8081, 1109, 11399, 1277, 291443, 8389, 59159, 42569, 7477, 10427, 2371, 60919, 61363, 3877, 311279, 44789, 5659, 63607, 4987, 320303, 1621, 8093, 4219, 40751, 9413, 20663, 3221, 336403, 1831, 1949, 343423, 1723, 4337, 20479, 3119, 6373, 43963, 6323, 20899, 1381, 2243, 5903, 45161, 10357, 4133, 1237, 372223, 46681, 2141, 6857, 9521, 9319, 24113, 3467, 4583, 4441, 56009, 9833, 394579, 7159, 16087, 36793, 3109, 5107, 58549, 3023, 82483, 51713, 13009, 417583, 3067, 3329, 7573, 26669, 1747, 26833, 10799, 435923, 15307, 11131, 449263, 28163, 56663, 90931, 457363, 460079, 42073, 3413, 58363, 18731, 67289, 2837, 1697, 5431, 5639, 96419, 12157, 28687, 12227, 1709, 8969, 99223, 62191, 3061, 1787, 501779, 72089, 7907, 5783, 2083, 513203, 3767, 6469, 1487, 9293, 65413, 4111, 31039, 3307, 75797, 14419, 6311, 33619, 542323, 2719, 13669, 548243, 15749, 9923, 13967, 560179, 563183, 2311, 2447, 113843, 71341, 81749, 34019, 72481, 4651, 4937, 84809, 1583, 2671, 119971, 9397, 12829, 606079, 3001, 3517, 8713, 621779, 56813, 2797, 78713, 79111, 634483, 7951, 91097, 37699, 128819, 80713, 3499, 2897, 650543, 132707, 5939, 1741, 2399, 18199, 19333, 85201, 97609, 17123, 40387, 689903, 43223, 138647, 12409, 87281, 99989, 877, 24251, 2203, 2393, 2339, 716783, 720179, 18047, 14767, 5333, 145399, 5693, 66713, 737279, 12143, 46619, 1993, 751103, 152311, 95413, 2887, 13693, 768563, 9629, 775603, 97171, 97613, 31307, 786223, 1931, 793343, 99391, 22769, 49919, 4327, 20147, 27851, 25409, 9587, 1823, 20599, 825779, 2069, 16927, 4723, 2357, 2833, 1847, 106663, 14557, 12149, 21611, 174007, 2477, 4993, 6841, 4397, 125897, 22079, 7919, 177763, 16229, 15973, 21863, 18371, 2819, 6067, 28309, 6689, 6287, 31567, 11467, 15581, 923123, 115631, 5297, 116113, 2927, 25367, 3359, 55439, 118051, 189271, 8467, 190051, 59513, 136309, 5737, 24001, 2593, 3167, 7759, 973823, 140249, 61483, 28277, 993683, 58687, 1001683, 17923, 201139, 125963, 21569, 12697, 20771, 5099, 92893, 16061, 7103, 1034003, 3617, 26003, 5237, 65519, 210071, 18793, 28499, 25819, 20051, 2521, 42839, 153589, 2693, 63487, 1083443, 4679, 5879, 3701, 4273,

7. Distribution of the primes

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

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
21005913460.5900000.1300000.5900005.9000004.3333336.571429
31.000595905050.5950000.0900000.59500010.0847456.92307710.978261
410.0006.1806445.5360.6180000.0644000.61800010.3865557.15555610.962377
5100.00063.4414.97958.4620.6344100.0497900.63441010.2655347.73136710.560332
61.000.000645.55840.490605.0680.6455580.0404900.64555810.1757228.13215510.349766
710.000.0006.524.204341.8396.182.3650.6524200.0341840.65242010.1063028.44255410.217637
8100.000.00065.770.0402.968.52462.801.5160.6577000.0296850.65770010.0809308.68398310.158170
91.000.000.000661.723.19626.205.502635.517.6940.6617230.0262060.66172310.0611658.82778810.119464
1010.000.000.0006.649.356.721234.471.1706.414.885.5510.6649360.0234470.66493610.0485478.94740210.093952


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
388351.0000000.3750000.6250001.6000001.0000002.500000
41614590.8750000.3125000.5625001.7500001.6666671.800000
532237160.7187500.2187500.5000001.6428571.4000001.777778
6644212300.6562500.1875000.4687501.8260871.7142861.875000
71287516590.5859380.1250000.4609381.7857141.3333331.966667
8256150281220.5859380.1093750.4765622.0000001.7500002.067797
9512300542460.5859380.1054690.4804692.0000001.9285712.016393
101.024611915200.5966800.0888670.5078122.0366671.6851852.113821
112.0481.2391671.0720.6049800.0815430.5234382.0278231.8351652.061538
124.0962.5043042.2000.6113280.0742190.5371092.0209851.8203592.052239
138.1925.0525474.5050.6166990.0667720.5499272.0175721.7993422.047727
1416.38410.1971.0079.1900.6223750.0614620.5609132.0184091.8409512.039956
1532.76820.5641.82018.7440.6275630.0555420.5720212.0166721.8073492.039608
1665.53641.4593.37938.0800.6326140.0515590.5810552.0160961.8565932.031584
17131.07283.3386.36576.9730.6358180.0485610.5872572.0101301.8836932.021350
18262.144167.79111.872155.9190.6400720.0452880.5947842.0133791.8652002.025632
19524.288337.17522.389314.7860.6431100.0427040.6004072.0094941.8858662.018907
201.048.576677.15542.329634.8260.6457850.0403680.6054172.0083191.8906162.016691
212.097.1521.358.70880.2101.278.4980.6478820.0382470.6096352.0064951.8949182.013935
224.194.3042.726.079152.2252.573.8540.6499480.0362930.6136552.0063761.8978312.013186
238.388.6085.468.944290.4015.178.5430.6519490.0346180.6173302.0061581.9077092.011980
2416.777.21610.968.635555.08110.413.5540.6537820.0330850.6206962.0056221.9114292.010904
2533.554.43221.991.7161.062.91320.928.8030.6554040.0316770.6237272.0049641.9148792.009766
2667.108.86444.083.6352.038.32542.045.3100.6568970.0303730.6265242.0045561.9176782.008969
27134.217.72888.349.8743.918.97984.430.8950.6582580.0291990.6290592.0041421.9226472.008093
28268.435.456177.044.0077.539.658169.504.3490.6595400.0280870.6314532.0038961.9238832.007611
29536.870.912354.729.63214.528.251340.201.3810.6607350.0270610.6336742.0036241.9269112.007036
301.073.741.824710.636.43228.036.292682.600.1400.6618320.0261110.6357212.0033191.9297782.006459
312.147.483.6481.423.504.10954.165.9091.369.338.2000.6628710.0252230.6376482.0031401.9319932.006062
324.294.967.2962.851.151.404104.746.6342.746.404.7700.6638350.0243880.6394472.0029111.9338112.005644
338.589.934.5925.710.105.104202.822.4455.507.282.6590.6647440.0236120.6411322.0027371.9363152.005270
3417.179.869.18411.434.905.941393.125.02111.041.780.9200.6655990.0228830.6427162.0025731.9382722.004942


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
122021100
243031101
383031101
4165141202
5327161303
66412391506
7128164121609
825628721110017
9512541341123030
101.024912863144046
112.04816753114182084
124.0963049620811600143
138.19254718636112880258
1416.3841.00732268515110495
1532.7681.8205911.22919070912
1665.5363.3791.1302.24911.68801.690
17131.0726.3652.1384.22713.19503.169
18262.14411.8723.9367.93615.96605.905
19524.28822.3897.45814.931111.220011.168
201.048.57642.32914.09228.237121.147021.181
212.097.15280.21026.70653.504140.122040.087
224.194.304152.22550.751101.474176.220076.004
238.388.608290.40196.666193.7351145.4810144.919
2416.777.216555.081184.778370.3031277.8390277.241
2533.554.4321.062.913354.048708.8651531.6450531.267
2667.108.8642.038.325679.7731.358.55211.019.76001.018.564
27134.217.7283.918.9791.306.4262.612.55311.959.95801.959.020
28268.435.4567.539.6582.513.8805.025.77813.771.03803.768.619
29536.870.91214.528.2514.843.2149.685.03717.266.36607.261.884
301.073.741.82428.036.2929.345.58418.690.708114.018.678014.017.613
312.147.483.64854.165.90918.055.11936.110.790127.087.121027.078.787
324.294.967.296104.746.63434.914.63169.832.003152.381.473052.365.160
338.589.934.592202.822.44567.599.641135.222.8041101.410.9190101.411.525
3417.179.869.184393.125.021131.033.020262.092.0011196.559.0840196.565.936


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
121010010
242110011
385320221
4169450243
53216971456
66430151549710
712859253411151518
8256122606225342736
951224612612052636071
101.024520255265112133124151
112.0481.072520552243292257280
124.0962.2001.1061.094510582546562
138.1924.5052.2842.2211.0691.1791.0791.178
1416.3849.1904.7024.4882.2142.4392.2012.336
1532.76818.7449.5599.1854.5144.8764.5134.841
1665.53638.08019.45118.6299.1579.8899.2389.796
17131.07276.97339.21237.76118.73019.78918.61019.844
18262.144155.91979.39176.52837.98840.13437.86839.929
19524.288314.786160.126154.66076.87780.48177.03680.392
201.048.576634.826322.656312.170155.038162.213155.365162.210
212.097.1521.278.498648.686629.812312.550326.015313.827326.106
224.194.3042.573.8541.305.1061.268.748631.452654.991632.252655.159
238.388.6085.178.5432.622.7352.555.8081.271.8001.316.6331.273.7141.316.396
2416.777.21610.413.5545.271.2495.142.3052.560.2662.645.5132.562.2382.645.537
2533.554.43220.928.80310.588.36810.340.4355.150.7945.314.8165.151.1135.312.080
2667.108.86442.045.31021.264.00120.781.30910.355.89610.669.44510.353.85010.666.119
27134.217.72884.430.89542.680.68141.750.21420.811.56821.409.49820.806.52821.403.301
28268.435.456169.504.34985.650.96683.853.38341.810.74342.952.17141.799.25542.942.180
29536.870.912340.201.381171.827.669168.373.71283.954.09286.154.76183.944.63586.147.893
301.073.741.824682.600.140344.611.178337.988.962168.520.389172.770.917168.534.032172.774.802
312.147.483.6481.369.338.200691.058.597678.279.603338.225.477346.447.115338.231.959346.433.649
324.294.967.2962.746.404.7701.385.520.4581.360.884.312678.662.613694.540.173678.669.024694.532.960
338.589.934.5925.507.282.6592.777.434.1392.729.848.5201.361.484.2781.392.147.5201.361.498.4391.392.152.422
3417.179.869.18411.041.780.9205.566.958.5975.474.822.3232.730.795.8722.790.114.3522.730.761.4152.790.109.281


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 5, 179, 7, 383, 61, 1, 11, 163, 29, 149, 1, 1279, 1, 1523, 103, 71, 1, 37, 271,
Found in Database : 17, 5, 179, 7, 383, 61, 11, 163, 29, 149, 1279, 1523, 103, 71, 37, 271, 47, 2579, 409, 631, 59, 691, 41, 53, 4079, 571, 947, 613,
Found in Database : 5, 7, 11, 17, 29, 37, 41, 47, 53, 59, 61, 71, 103, 113, 127, 131, 137, 149,