Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:17:21
Deutsch
19.Apr 2024

Polynom = x^2-32x+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) = 7 = 7
f(2) = 43 = 43
f(3) = 35 = 5*7
f(4) = 95 = 5*19
f(5) = 59 = 59
f(6) = 139 = 139
f(7) = 79 = 79
f(8) = 175 = 5*5*7
f(9) = 95 = 5*19
f(10) = 203 = 7*29
f(11) = 107 = 107
f(12) = 223 = 223
f(13) = 115 = 5*23
f(14) = 235 = 5*47
f(15) = 119 = 7*17
f(16) = 239 = 239
f(17) = 119 = 7*17
f(18) = 235 = 5*47
f(19) = 115 = 5*23
f(20) = 223 = 223
f(21) = 107 = 107
f(22) = 203 = 7*29
f(23) = 95 = 5*19
f(24) = 175 = 5*5*7
f(25) = 79 = 79
f(26) = 139 = 139
f(27) = 59 = 59
f(28) = 95 = 5*19
f(29) = 35 = 5*7
f(30) = 43 = 43
f(31) = 7 = 7
f(32) = 17 = 17
f(33) = 25 = 5*5
f(34) = 85 = 5*17
f(35) = 61 = 61
f(36) = 161 = 7*23
f(37) = 101 = 101
f(38) = 245 = 5*7*7
f(39) = 145 = 5*29
f(40) = 337 = 337
f(41) = 193 = 193
f(42) = 437 = 19*23
f(43) = 245 = 5*7*7
f(44) = 545 = 5*109
f(45) = 301 = 7*43
f(46) = 661 = 661
f(47) = 361 = 19*19
f(48) = 785 = 5*157
f(49) = 425 = 5*5*17
f(50) = 917 = 7*131
f(51) = 493 = 17*29
f(52) = 1057 = 7*151
f(53) = 565 = 5*113
f(54) = 1205 = 5*241
f(55) = 641 = 641
f(56) = 1361 = 1361
f(57) = 721 = 7*103
f(58) = 1525 = 5*5*61
f(59) = 805 = 5*7*23
f(60) = 1697 = 1697
f(61) = 893 = 19*47
f(62) = 1877 = 1877
f(63) = 985 = 5*197
f(64) = 2065 = 5*7*59
f(65) = 1081 = 23*47
f(66) = 2261 = 7*17*19
f(67) = 1181 = 1181
f(68) = 2465 = 5*17*29
f(69) = 1285 = 5*257
f(70) = 2677 = 2677
f(71) = 1393 = 7*199
f(72) = 2897 = 2897
f(73) = 1505 = 5*7*43
f(74) = 3125 = 5*5*5*5*5
f(75) = 1621 = 1621
f(76) = 3361 = 3361
f(77) = 1741 = 1741
f(78) = 3605 = 5*7*103
f(79) = 1865 = 5*373
f(80) = 3857 = 7*19*29
f(81) = 1993 = 1993
f(82) = 4117 = 23*179
f(83) = 2125 = 5*5*5*17
f(84) = 4385 = 5*877
f(85) = 2261 = 7*17*19
f(86) = 4661 = 59*79
f(87) = 2401 = 7*7*7*7
f(88) = 4945 = 5*23*43
f(89) = 2545 = 5*509
f(90) = 5237 = 5237
f(91) = 2693 = 2693
f(92) = 5537 = 7*7*113
f(93) = 2845 = 5*569
f(94) = 5845 = 5*7*167
f(95) = 3001 = 3001
f(96) = 6161 = 61*101
f(97) = 3161 = 29*109
f(98) = 6485 = 5*1297
f(99) = 3325 = 5*5*7*19
f(100) = 6817 = 17*401

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

f(0)=17
f(1)=7
f(2)=43
f(3)=5
f(4)=19
f(5)=59
f(6)=139
f(7)=79
f(8)=1
f(9)=1
f(10)=29
f(11)=107
f(12)=223
f(13)=23
f(14)=47
f(15)=1
f(16)=239
f(17)=1
f(18)=1
f(19)=1
f(20)=1
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=61
f(36)=1
f(37)=101
f(38)=1
f(39)=1
f(40)=337
f(41)=193
f(42)=1
f(43)=1
f(44)=109
f(45)=1
f(46)=661
f(47)=1
f(48)=157
f(49)=1
f(50)=131
f(51)=1
f(52)=151
f(53)=113
f(54)=241
f(55)=641
f(56)=1361
f(57)=103
f(58)=1
f(59)=1
f(60)=1697
f(61)=1
f(62)=1877
f(63)=197
f(64)=1
f(65)=1
f(66)=1
f(67)=1181
f(68)=1
f(69)=257
f(70)=2677
f(71)=199
f(72)=2897
f(73)=1
f(74)=1
f(75)=1621
f(76)=3361
f(77)=1741
f(78)=1
f(79)=373
f(80)=1
f(81)=1993
f(82)=179
f(83)=1
f(84)=877
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=509
f(90)=5237
f(91)=2693
f(92)=1
f(93)=569
f(94)=167
f(95)=3001
f(96)=1
f(97)=1
f(98)=1297
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-32x+17 could be written as f(y)= y^2-239 with x=y+16

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-16
f'(x)>2x-33 with x > 15

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, 7, 43, 5, 19, 59, 139, 79, 1, 1, 29, 107, 223, 23, 47, 1, 239, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 61, 1, 101, 1, 1, 337, 193, 1, 1, 109, 1, 661, 1, 157, 1, 131, 1, 151, 113, 241, 641, 1361, 103, 1, 1, 1697, 1, 1877, 197, 1, 1, 1, 1181, 1, 257, 2677, 199, 2897, 1, 1, 1621, 3361, 1741, 1, 373, 1, 1993, 179, 1, 877, 1, 1, 1, 1, 509, 5237, 2693, 1, 569, 167, 3001, 1, 1, 1297, 1, 401, 499, 421, 733, 1, 1, 1123, 4021, 1, 1, 8597, 191, 1, 1, 1873, 683, 227, 293, 1, 1, 1511, 5393, 1571, 1, 457, 5821, 409, 863, 1, 1, 12757, 1, 13217, 269, 1, 6961, 1, 379, 1, 1489, 15137, 1, 823, 1, 3229, 1, 16661, 8461, 491, 349, 2531, 1, 18257, 1, 3761, 1, 1019, 1, 797, 1, 1, 547, 3011, 2137, 619, 1, 1, 389, 1, 331, 1381, 1699, 24097, 2441, 1, 659, 3623, 12841, 743, 2633, 1, 1, 463, 1, 1, 1, 28661, 853, 5869, 2969, 613, 15193, 4391, 3109, 1, 15901, 1109, 1, 6577, 1, 33617, 16993, 1, 1, 1, 1, 1, 18121, 1, 3701, 37397, 2699, 38177, 1, 7793, 19681, 39761, 467, 1, 1, 1, 1229, 42197, 4261, 1721, 1, 1907, 3163, 8941, 4513, 45557, 22993, 1, 937, 1, 1, 2833, 1279, 577, 1, 49937, 1, 1753, 1, 1, 607, 7523, 26561, 1531, 1, 54517, 1447, 55457, 1, 1, 1, 3019, 28921, 2333, 5881, 1, 1, 1, 1, 12253, 30881, 2707, 4483, 12653, 911, 1, 1117, 1, 6581, 1, 1759, 9623, 33941, 13681, 1, 69457, 4999, 1, 1, 1, 36061, 72661, 2153, 1, 1, 10691, 37693, 75937, 7649, 811, 1, 1663, 5623, 1, 1597, 1, 40493, 1, 1, 1, 41641, 4933, 42221, 1, 1223, 86197, 6199, 1, 1, 17713, 1, 12823, 45181, 1, 9157, 92177, 2729, 1583, 1, 757, 6803, 1, 2539, 19421, 1, 14051, 1151, 1, 1, 20177, 2207, 102161, 1049, 1217, 1487, 1, 1, 991, 1, 3067, 54001, 1, 1163, 21997, 2213, 111317, 1, 112657, 1619, 1, 3373, 115361, 3413, 1, 1, 16871, 59393, 761, 1, 1051, 1, 1187, 8783, 24733, 12437, 1, 1, 1063, 12721, 1, 1, 129361, 1, 26161, 1879, 132257, 1, 133717, 2689, 1423, 67961, 2789, 1, 3947, 1, 2971, 4129, 1249, 2027, 1, 10243, 144161, 72461, 29137, 1, 21031, 1213, 1, 787, 1307, 75541, 8933, 10903, 1, 2203, 1, 77893, 156577, 15737, 4519, 79481, 1, 1867, 1, 16217, 2063, 11699, 8663, 1, 1, 1, 167861, 1, 1, 17033, 1, 1, 4019, 1, 34897, 1789, 176161, 1, 35569, 1, 1, 1, 1523, 1, 5227, 3169, 9719, 92761, 37277, 1, 8179, 13499, 1, 19073, 38321, 1, 1201, 1, 1, 1153, 1, 98893, 3257, 2851, 40093, 1, 907, 101581, 40813, 1, 29411, 103393, 29671, 1, 1, 2447, 12433, 1, 42641, 1, 1973, 1367, 216917, 4357, 1, 1801, 1087, 1, 947, 22349, 2179, 1, 226337, 1, 1, 114601, 10007, 115561, 1, 1, 1, 1, 10259, 1, 47581, 1, 1831, 17203, 1, 24281, 14341, 122393, 35111, 24677, 7079, 4289, 1, 6599, 1171, 1, 253777, 18199, 13463, 1, 10313, 1, 37123, 7673, 1069, 26293, 263957, 2819, 9173, 1, 53617, 1, 1, 135601, 54449, 27329, 39191, 7247, 1, 27749, 1, 139801, 1, 20123, 2459, 1, 284917, 142993, 287057, 28813, 8263, 7639, 1, 146221, 1, 1733, 1, 1, 2143, 4271, 60013, 6547, 302261, 151681, 8699, 30557, 1, 6691, 2999, 1, 1, 22303, 18433, 3209, 1, 1667, 317857, 1, 1, 1, 1, 161761, 324661, 162901, 2843, 1, 11353, 23599, 331537, 1, 2903, 1, 48023, 1, 1, 6793, 1, 1693, 11833, 4919, 1607, 24763, 2083, 2861, 14009, 35141, 2963, 7691, 1, 35617, 71473, 179281, 359761, 1, 1, 1, 1889, 182893, 366997, 36821, 2111, 3943, 7589, 10973, 74861, 1, 376757, 1, 8819, 1, 3319, 191461, 20219, 1471, 11047, 1, 2417, 195193, 3593, 1, 4637, 1, 23333, 1, 2753, 8009, 21143, 201493, 57751, 1, 1, 10739, 2711, 1, 16477, 5903, 14293, 1747, 1, 1, 83933, 210481, 1, 211781, 1, 2243, 427477, 1, 9151, 6163, 1, 1, 1, 7529, 5153, 43933, 1, 1, 63331, 8893, 1, 1, 19507, 32143, 4751, 1, 10559, 227693, 456737, 2411, 13127, 13553, 1, 13633, 1, 1, 467617, 1, 4657, 1, 94621, 1811, 1, 1, 1, 2087, 68771, 241393, 1499, 1, 1, 34883, 489761, 35083, 1, 1, 495377, 1787, 71171, 1, 1, 251221, 1, 252641, 101341, 1, 509557, 1, 22279, 1, 1, 1, 1, 259801, 14887, 52249, 523937, 262693, 526837, 7547, 1, 1997, 31333, 9209, 6301, 1, 4049, 2477, 77351, 54293, 108881, 11867, 547361, 1, 22013, 7883, 5171, 6451, 3331, 1, 1, 16493, 1709, 4621, 1, 1, 1, 40699, 1, 1, 22973, 287921, 1, 1, 1, 58193, 4903, 292493, 34501, 1, 117917, 42223, 592661, 42443, 6271, 59729, 9817, 300193, 85991, 2081, 1, 13187, 608161, 1, 1, 1, 614417, 1913, 32503, 1, 2887, 10729, 89123, 1, 3583, 62861, 630197, 315893, 633377, 1, 7489, 1, 37633, 6823, 5591, 1, 92311, 17047, 1, 65101, 1, 1, 34519, 6709, 2161, 9439, 662357, 1, 665617, 1, 1, 335261, 1, 336901, 135089, 67709, 1, 2113, 682037, 9767, 1, 1, 688661, 1, 1, 13873, 5843, 1, 1, 1, 140401, 50263, 2131, 50503, 28349, 3739, 1, 356893, 2377, 2473, 1, 21193, 1, 1, 145133, 10391, 31699, 7457, 732497, 73421, 29437, 1931, 1, 3463, 1, 74453, 25733, 3631, 44101, 1, 8861, 53923, 5011, 16487, 152029, 1, 1, 382693, 3779, 3343, 1951, 1, 774161, 2917, 155537, 1, 781217, 23029, 1, 78653, 1, 9187, 113123, 8443, 31817, 2749, 34739, 1, 1, 11491, 161233, 403981, 1, 405781, 1, 81517, 16673, 1, 820597, 82241, 32969, 8429, 5273, 59263, 166301, 1, 2393, 418493, 119831, 1, 24071, 1, 846161, 424001, 5861, 1, 1, 61099, 3557, 85909, 1, 1, 1, 433261, 1, 1, 1, 436993, 51521, 12539, 1, 1, 1, 3917, 1, 4679, 127271, 1, 5557, 89657, 179693, 1, 902261, 1, 181213, 1, 909877, 7727, 3823, 1, 1, 1, 3061, 2579, 9739, 1, 929057, 66499, 932917, 2671, 1, 20407, 55333, 471301, 26987, 94649, 1, 1, 50123, 95429, 191249, 68443, 1, 3617, 192817, 1,

6. Sequence of the polynom (only primes)

17, 7, 43, 5, 19, 59, 139, 79, 29, 107, 223, 23, 47, 239, 61, 101, 337, 193, 109, 661, 157, 131, 151, 113, 241, 641, 1361, 103, 1697, 1877, 197, 1181, 257, 2677, 199, 2897, 1621, 3361, 1741, 373, 1993, 179, 877, 509, 5237, 2693, 569, 167, 3001, 1297, 401, 499, 421, 733, 1123, 4021, 8597, 191, 1873, 683, 227, 293, 1511, 5393, 1571, 457, 5821, 409, 863, 12757, 13217, 269, 6961, 379, 1489, 15137, 823, 3229, 16661, 8461, 491, 349, 2531, 18257, 3761, 1019, 797, 547, 3011, 2137, 619, 389, 331, 1381, 1699, 24097, 2441, 659, 3623, 12841, 743, 2633, 463, 28661, 853, 5869, 2969, 613, 15193, 4391, 3109, 15901, 1109, 6577, 33617, 16993, 18121, 3701, 37397, 2699, 38177, 7793, 19681, 39761, 467, 1229, 42197, 4261, 1721, 1907, 3163, 8941, 4513, 45557, 22993, 937, 2833, 1279, 577, 49937, 1753, 607, 7523, 26561, 1531, 54517, 1447, 55457, 3019, 28921, 2333, 5881, 12253, 30881, 2707, 4483, 12653, 911, 1117, 6581, 1759, 9623, 33941, 13681, 69457, 4999, 36061, 72661, 2153, 10691, 37693, 75937, 7649, 811, 1663, 5623, 1597, 40493, 41641, 4933, 42221, 1223, 86197, 6199, 17713, 12823, 45181, 9157, 92177, 2729, 1583, 757, 6803, 2539, 19421, 14051, 1151, 20177, 2207, 102161, 1049, 1217, 1487, 991, 3067, 54001, 1163, 21997, 2213, 111317, 112657, 1619, 3373, 115361, 3413, 16871, 59393, 761, 1051, 1187, 8783, 24733, 12437, 1063, 12721, 129361, 26161, 1879, 132257, 133717, 2689, 1423, 67961, 2789, 3947, 2971, 4129, 1249, 2027, 10243, 144161, 72461, 29137, 21031, 1213, 787, 1307, 75541, 8933, 10903, 2203, 77893, 156577, 15737, 4519, 79481, 1867, 16217, 2063, 11699, 8663, 167861, 17033, 4019, 34897, 1789, 176161, 35569, 1523, 5227, 3169, 9719, 92761, 37277, 8179, 13499, 19073, 38321, 1201, 1153, 98893, 3257, 2851, 40093, 907, 101581, 40813, 29411, 103393, 29671, 2447, 12433, 42641, 1973, 1367, 216917, 4357, 1801, 1087, 947, 22349, 2179, 226337, 114601, 10007, 115561, 10259, 47581, 1831, 17203, 24281, 14341, 122393, 35111, 24677, 7079, 4289, 6599, 1171, 253777, 18199, 13463, 10313, 37123, 7673, 1069, 26293, 263957, 2819, 9173, 53617, 135601, 54449, 27329, 39191, 7247, 27749, 139801, 20123, 2459, 284917, 142993, 287057, 28813, 8263, 7639, 146221, 1733, 2143, 4271, 60013, 6547, 302261, 151681, 8699, 30557, 6691, 2999, 22303, 18433, 3209, 1667, 317857, 161761, 324661, 162901, 2843, 11353, 23599, 331537, 2903, 48023, 6793, 1693, 11833, 4919, 1607, 24763, 2083, 2861, 14009, 35141, 2963, 7691, 35617, 71473, 179281, 359761, 1889, 182893, 366997, 36821, 2111, 3943, 7589, 10973, 74861, 376757, 8819, 3319, 191461, 20219, 1471, 11047, 2417, 195193, 3593, 4637, 23333, 2753, 8009, 21143, 201493, 57751, 10739, 2711, 16477, 5903, 14293, 1747, 83933, 210481, 211781, 2243, 427477, 9151, 6163, 7529, 5153, 43933, 63331, 8893, 19507, 32143, 4751, 10559, 227693, 456737, 2411, 13127, 13553, 13633, 467617, 4657, 94621, 1811, 2087, 68771, 241393, 1499, 34883, 489761, 35083, 495377, 1787, 71171, 251221, 252641, 101341, 509557, 22279, 259801, 14887, 52249, 523937, 262693, 526837, 7547, 1997, 31333, 9209, 6301, 4049, 2477, 77351, 54293, 108881, 11867, 547361, 22013, 7883, 5171, 6451, 3331, 16493, 1709, 4621, 40699, 22973, 287921, 58193, 4903, 292493, 34501, 117917, 42223, 592661, 42443, 6271, 59729, 9817, 300193, 85991, 2081, 13187, 608161, 614417, 1913, 32503, 2887, 10729, 89123, 3583, 62861, 630197, 315893, 633377, 7489, 37633, 6823, 5591, 92311, 17047, 65101, 34519, 6709, 2161, 9439, 662357, 665617, 335261, 336901, 135089, 67709, 2113, 682037, 9767, 688661, 13873, 5843, 140401, 50263, 2131, 50503, 28349, 3739, 356893, 2377, 2473, 21193, 145133, 10391, 31699, 7457, 732497, 73421, 29437, 1931, 3463, 74453, 25733, 3631, 44101, 8861, 53923, 5011, 16487, 152029, 382693, 3779, 3343, 1951, 774161, 2917, 155537, 781217, 23029, 78653, 9187, 113123, 8443, 31817, 2749, 34739, 11491, 161233, 403981, 405781, 81517, 16673, 820597, 82241, 32969, 8429, 5273, 59263, 166301, 2393, 418493, 119831, 24071, 846161, 424001, 5861, 61099, 3557, 85909, 433261, 436993, 51521, 12539, 3917, 4679, 127271, 5557, 89657, 179693, 902261, 181213, 909877, 7727, 3823, 3061, 2579, 9739, 929057, 66499, 932917, 2671, 20407, 55333, 471301, 26987, 94649, 50123, 95429, 191249, 68443, 3617, 192817,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-32x+17 and
the reducible primes which appear as divisor for the first time
p | x^2-32x+17 and p < x^2-32x+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)
1108620.8000000.6000000.2000000.0000000.0000000.000000
21004627190.4600000.2700000.1900005.7500004.5000009.500000
31.0006301724580.6300000.1720000.45800013.6956526.37037024.105263
410.0006.6601.2625.3980.6660000.1262000.53980010.5714287.33720911.786026
5100.00067.3539.57657.7770.6735300.0957600.57777010.1130637.58795510.703408
61.000.000677.59477.740599.8540.6775940.0777400.59985410.0603398.11821210.382228
710.000.0006.797.617656.1466.141.4710.6797620.0656150.61414710.0319918.44026310.238276
8100.000.00068.131.3555.679.81262.451.5430.6813140.0567980.62451510.0228298.65632310.168825
91.000.000.000682.563.62750.067.770632.495.8570.6825640.0500680.63249610.0183498.81504010.127786
1010.000.000.0006.835.692.220447.636.6976.388.055.5230.6835690.0447640.63880610.0147328.94061710.099758


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)
123301.5000001.5000000.0000000.0000000.0000000.000000
244311.0000000.7500000.2500001.3333331.000000inf
387610.8750000.7500000.1250001.7500002.0000001.000000
41612930.7500000.5625000.1875001.7142861.5000003.000000
53212930.3750000.2812500.0937501.0000001.0000001.000000
6642717100.4218750.2656250.1562502.2500001.8888893.333333
71286231310.4843750.2421880.2421882.2962961.8235293.100000
825614157840.5507810.2226560.3281252.2741941.8387102.709677
9512303982050.5917970.1914060.4003912.1489361.7192982.440476
101.0246471794680.6318360.1748050.4570312.1353141.8265312.282927
112.0481.3273271.0000.6479490.1596680.4882812.0510051.8268162.136752
124.0962.6985912.1070.6586910.1442870.5144042.0331581.8073392.107000
138.1925.4411.0554.3860.6641850.1287840.5354002.0166791.7851102.081633
1416.38410.9601.9369.0240.6689450.1181640.5507812.0143361.8350712.057456
1532.76822.0013.54218.4590.6714170.1080930.5633242.0073901.8295452.045545
1665.53644.1006.52637.5740.6729130.0995790.5733342.0044541.8424622.035538
17131.07288.32512.21076.1150.6738660.0931550.5807112.0028351.8709782.025736
18262.144177.17122.836154.3350.6758540.0871120.5887412.0058991.8702702.027656
19524.288354.82043.033311.7870.6767650.0820790.5946872.0026981.8844372.020196
201.048.576710.66081.189629.4710.6777380.0774280.6003102.0028751.8866682.018914
212.097.1521.422.749153.8051.268.9440.6784200.0733400.6050802.0020111.8944072.015890
224.194.3042.847.973292.2652.555.7080.6790100.0696810.6093282.0017401.9002312.014043
238.388.6085.700.980557.2135.143.7670.6796100.0664250.6131852.0017681.9065332.012658
2416.777.21611.410.3831.064.35610.346.0270.6801120.0634410.6166712.0014771.9101422.011372
2533.554.43222.836.6042.036.78820.799.8160.6805840.0607010.6198832.0013881.9136342.010416
2667.108.86445.704.9993.902.56341.802.4360.6810580.0581530.6229052.0013921.9160382.009750
27134.217.72891.468.8607.495.19783.973.6630.6814960.0558440.6256532.0012881.9205832.008822
28268.435.456183.039.34814.418.560168.620.7880.6818750.0537130.6281612.0011111.9237072.008020
29536.870.912366.281.00827.772.959338.508.0490.6822520.0517310.6305202.0011051.9261952.007511
301.073.741.824732.934.03653.563.613679.370.4230.6825980.0498850.6327132.0010151.9286252.006955
312.147.483.6481.466.569.088103.443.4381.363.125.6500.6829240.0481700.6347552.0009571.9312262.006454
324.294.967.2962.934.422.501200.037.5412.734.384.9600.6832230.0465750.6366492.0008761.9337872.005967
338.589.934.5925.871.303.702387.218.3995.484.085.3030.6835100.0450780.6384322.0008381.9357292.005601
3417.179.869.18411.747.220.702750.354.90510.996.865.7970.6837780.0436760.6401022.0007861.9378082.005233
3534.359.738.36823.503.252.0881.455.383.26022.047.868.8280.6840350.0423570.6416772.0007501.9395932.004923
3668.719.476.73647.023.088.7532.825.578.38944.197.510.3640.6842760.0411180.6431582.0007061.9414672.004616


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
123211101
243211101
386421302
4169541404
5329541404
66417896434
7128311615114124
8256572829284214
9512985147524384
101.0241799782924794
112.04832717015716541544
124.09659129329829942844
138.1921.05552153451945284
1416.3841.93696397394849804
1532.7683.5421.7711.7711.74341.7914
1665.5366.5263.2563.2703.26643.2524
17131.07212.2106.1296.0816.07846.1244
18262.14422.83611.48811.34811.372411.4564
19524.28843.03321.52321.51021.528421.4974
201.048.57681.18940.72340.46640.635440.5464
212.097.152153.80577.08176.72477.041476.7564
224.194.304292.265146.593145.672146.2494146.0084
238.388.608557.213279.952277.261278.8834278.3224
2416.777.2161.064.356534.403529.953532.0824532.2664
2533.554.4322.036.7881.022.3601.014.4281.018.09741.018.6834
2667.108.8643.902.5631.958.7951.943.7681.950.52441.952.0314
27134.217.7287.495.1973.760.4113.734.7863.747.22343.747.9664
28268.435.45614.418.5607.232.8477.185.7137.207.82547.210.7274
29536.870.91227.772.95913.928.76313.844.19613.886.869413.886.0824
301.073.741.82453.563.61326.861.50726.702.10626.783.455426.780.1504
312.147.483.648103.443.43851.874.78751.568.65151.723.356451.720.0744
324.294.967.296200.037.541100.302.26299.735.279100.025.6824100.011.8514
338.589.934.592387.218.399194.132.792193.085.607193.616.7524193.601.6394
3417.179.869.184750.354.905376.154.645374.200.260375.194.0014375.160.8964
3534.359.738.3681.455.383.260729.527.700725.855.560727.724.4094727.658.8434
3668.719.476.7362.825.578.3891.416.273.2561.409.305.1331.412.812.15041.412.766.2314


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
120000000
241100100
381100100
4163120111
5323120111
66410552242
712831161597105
825684453923232513
95122051089754535345
101.024468228240116117124111
112.0481.000497503243255261241
124.0962.1071.0511.056497555537518
138.1924.3862.1882.1981.0611.1411.0871.097
1416.3849.0244.4874.5372.1832.2872.2762.278
1532.76818.4599.1599.3004.4854.6564.6634.655
1665.53637.57418.81218.7629.2089.4859.3649.517
17131.07276.11537.99738.11818.91819.20918.82819.160
18262.144154.33577.24777.08838.52438.69338.20838.910
19524.288311.787155.756156.03177.36678.36877.82278.231
201.048.576629.471314.410315.061156.658157.817156.896158.100
212.097.1521.268.944634.066634.878316.178318.285315.712318.769
224.194.3042.555.7081.276.6591.279.049636.702641.236636.289641.481
238.388.6085.143.7672.570.7612.573.0061.282.9361.288.9561.282.4091.289.466
2416.777.21610.346.0275.171.7365.174.2912.579.8642.594.1512.578.8802.593.132
2533.554.43220.799.81610.399.76410.400.0525.188.2235.212.5585.188.0075.211.028
2667.108.86441.802.43620.902.47120.899.96510.432.08210.471.59510.430.70010.468.059
27134.217.72883.973.66341.985.37641.988.28720.963.99221.027.29220.960.83221.021.547
28268.435.456168.620.78884.301.73984.319.04942.097.16642.216.71742.090.91342.215.992
29536.870.912338.508.049169.236.060169.271.98984.528.83284.737.43084.516.00584.725.782
301.073.741.824679.370.423339.659.502339.710.921169.666.707170.036.289169.633.689170.033.738
312.147.483.6481.363.125.650681.518.338681.607.312340.443.975341.125.607340.412.718341.143.350
324.294.967.2962.734.384.9601.367.096.0221.367.288.938682.935.623684.273.869682.913.859684.261.609
338.589.934.5925.484.085.3032.741.842.1902.742.243.1131.369.797.6171.372.271.6371.369.762.4931.372.253.556
3417.179.869.18410.996.865.7975.498.103.3025.498.762.4952.746.902.2662.751.541.0262.746.907.6682.751.514.837
3534.359.738.36822.047.868.82811.023.250.23111.024.618.5975.507.697.8925.516.293.1125.507.684.2205.516.193.604
3668.719.476.73644.197.510.36422.097.434.16022.100.076.20411.041.448.88211.057.348.47011.041.430.13211.057.282.880


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 7, 43, 5, 19, 59, 139, 79, 1, 1, 29, 107, 223, 23, 47, 1, 239, 1, 1, 1,
Found in Database : 17, 7, 43, 5, 19, 59, 139, 79, 29, 107, 223, 23, 47, 239, 61, 101,
Found in Database : 5, 7, 17, 19, 23, 29, 43, 47, 59, 61, 79, 101, 103, 107, 109, 113, 131, 139,