Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:44:22
Deutsch
18.Apr 2024

Polynom = x^2-24x+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) = 3 = 3
f(2) = 27 = 3*3*3
f(3) = 23 = 23
f(4) = 63 = 3*3*7
f(5) = 39 = 3*13
f(6) = 91 = 7*13
f(7) = 51 = 3*17
f(8) = 111 = 3*37
f(9) = 59 = 59
f(10) = 123 = 3*41
f(11) = 63 = 3*3*7
f(12) = 127 = 127
f(13) = 63 = 3*3*7
f(14) = 123 = 3*41
f(15) = 59 = 59
f(16) = 111 = 3*37
f(17) = 51 = 3*17
f(18) = 91 = 7*13
f(19) = 39 = 3*13
f(20) = 63 = 3*3*7
f(21) = 23 = 23
f(22) = 27 = 3*3*3
f(23) = 3 = 3
f(24) = 17 = 17
f(25) = 21 = 3*7
f(26) = 69 = 3*23
f(27) = 49 = 7*7
f(28) = 129 = 3*43
f(29) = 81 = 3*3*3*3
f(30) = 197 = 197
f(31) = 117 = 3*3*13
f(32) = 273 = 3*7*13
f(33) = 157 = 157
f(34) = 357 = 3*7*17
f(35) = 201 = 3*67
f(36) = 449 = 449
f(37) = 249 = 3*83
f(38) = 549 = 3*3*61
f(39) = 301 = 7*43
f(40) = 657 = 3*3*73
f(41) = 357 = 3*7*17
f(42) = 773 = 773
f(43) = 417 = 3*139
f(44) = 897 = 3*13*23
f(45) = 481 = 13*37
f(46) = 1029 = 3*7*7*7
f(47) = 549 = 3*3*61
f(48) = 1169 = 7*167
f(49) = 621 = 3*3*3*23
f(50) = 1317 = 3*439
f(51) = 697 = 17*41
f(52) = 1473 = 3*491
f(53) = 777 = 3*7*37
f(54) = 1637 = 1637
f(55) = 861 = 3*7*41
f(56) = 1809 = 3*3*3*67
f(57) = 949 = 13*73
f(58) = 1989 = 3*3*13*17
f(59) = 1041 = 3*347
f(60) = 2177 = 7*311
f(61) = 1137 = 3*379
f(62) = 2373 = 3*7*113
f(63) = 1237 = 1237
f(64) = 2577 = 3*859
f(65) = 1341 = 3*3*149
f(66) = 2789 = 2789
f(67) = 1449 = 3*3*7*23
f(68) = 3009 = 3*17*59
f(69) = 1561 = 7*223
f(70) = 3237 = 3*13*83
f(71) = 1677 = 3*13*43
f(72) = 3473 = 23*151
f(73) = 1797 = 3*599
f(74) = 3717 = 3*3*7*59
f(75) = 1921 = 17*113
f(76) = 3969 = 3*3*3*3*7*7
f(77) = 2049 = 3*683
f(78) = 4229 = 4229
f(79) = 2181 = 3*727
f(80) = 4497 = 3*1499
f(81) = 2317 = 7*331
f(82) = 4773 = 3*37*43
f(83) = 2457 = 3*3*3*7*13
f(84) = 5057 = 13*389
f(85) = 2601 = 3*3*17*17
f(86) = 5349 = 3*1783
f(87) = 2749 = 2749
f(88) = 5649 = 3*7*269
f(89) = 2901 = 3*967
f(90) = 5957 = 7*23*37
f(91) = 3057 = 3*1019
f(92) = 6273 = 3*3*17*41
f(93) = 3217 = 3217
f(94) = 6597 = 3*3*733
f(95) = 3381 = 3*7*7*23
f(96) = 6929 = 13*13*41
f(97) = 3549 = 3*7*13*13
f(98) = 7269 = 3*2423
f(99) = 3721 = 61*61
f(100) = 7617 = 3*2539

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

f(0)=17
f(1)=3
f(2)=1
f(3)=23
f(4)=7
f(5)=13
f(6)=1
f(7)=1
f(8)=37
f(9)=59
f(10)=41
f(11)=1
f(12)=127
f(13)=1
f(14)=1
f(15)=1
f(16)=1
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)=43
f(29)=1
f(30)=197
f(31)=1
f(32)=1
f(33)=157
f(34)=1
f(35)=67
f(36)=449
f(37)=83
f(38)=61
f(39)=1
f(40)=73
f(41)=1
f(42)=773
f(43)=139
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=167
f(49)=1
f(50)=439
f(51)=1
f(52)=491
f(53)=1
f(54)=1637
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=347
f(60)=311
f(61)=379
f(62)=113
f(63)=1237
f(64)=859
f(65)=149
f(66)=2789
f(67)=1
f(68)=1
f(69)=223
f(70)=1
f(71)=1
f(72)=151
f(73)=599
f(74)=1
f(75)=1
f(76)=1
f(77)=683
f(78)=4229
f(79)=727
f(80)=1499
f(81)=331
f(82)=1
f(83)=1
f(84)=389
f(85)=1
f(86)=1783
f(87)=2749
f(88)=269
f(89)=967
f(90)=1
f(91)=1019
f(92)=1
f(93)=3217
f(94)=733
f(95)=1
f(96)=1
f(97)=1
f(98)=2423
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-24x+17 could be written as f(y)= y^2-127 with x=y+12

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-12
f'(x)>2x-25 with x > 11

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, 3, 1, 23, 7, 13, 1, 1, 37, 59, 41, 1, 127, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 43, 1, 197, 1, 1, 157, 1, 67, 449, 83, 61, 1, 73, 1, 773, 139, 1, 1, 1, 1, 167, 1, 439, 1, 491, 1, 1637, 1, 1, 1, 1, 347, 311, 379, 113, 1237, 859, 149, 2789, 1, 1, 223, 1, 1, 151, 599, 1, 1, 1, 683, 4229, 727, 1499, 331, 1, 1, 389, 1, 1783, 2749, 269, 967, 1, 1019, 1, 3217, 733, 1, 1, 1, 2423, 1, 2539, 433, 1, 1, 397, 4261, 2903, 1483, 1, 1, 1, 691, 1097, 1, 239, 1747, 509, 5449, 1, 1, 1, 653, 307, 1, 4139, 1, 757, 1, 1481, 6781, 1, 2339, 2039, 1, 4919, 577, 1, 1, 15749, 1, 5419, 359, 5591, 1, 353, 2927, 283, 9049, 1, 1, 18917, 457, 6491, 1, 6679, 1129, 557, 1, 1009, 467, 1, 1, 1721, 3779, 1, 1663, 2621, 569, 563, 1, 487, 12577, 1213, 1433, 1, 1, 8923, 797, 1, 661, 28097, 677, 1, 14557, 1091, 4967, 1, 1, 1, 15601, 1, 1, 547, 1, 647, 2383, 11243, 5683, 34469, 5807, 1, 1, 571, 1, 2161, 1, 12503, 2707, 12763, 1, 1699, 1, 13291, 1549, 1, 1, 5927, 6983, 1567, 521, 4793, 1, 43973, 1, 14939, 22621, 1171, 1, 1, 2609, 1, 23917, 16091, 1, 49157, 1181, 1, 3607, 1, 659, 3989, 8719, 1, 619, 2557, 1, 54629, 3061, 18523, 4003, 18839, 1, 4421, 743, 1, 1733, 1, 1, 8627, 1, 499, 30937, 1223, 1, 63377, 1, 1, 877, 21803, 10987, 9491, 11159, 1, 33997, 1, 1, 953, 1669, 1811, 1, 23899, 4013, 1193, 4073, 3517, 37201, 1, 12583, 673, 751, 8573, 1, 1, 1877, 79397, 13327, 1579, 1, 3889, 1523, 11831, 1, 1217, 631, 1, 1, 5077, 2069, 9721, 44041, 1, 14879, 1, 887, 4337, 45841, 30763, 1, 7193, 1, 1373, 1, 31991, 947, 1451, 709, 1, 49549, 1583, 1, 1, 1303, 1, 7351, 34519, 827, 104849, 5861, 863, 53401, 1, 1, 1, 1, 941, 55381, 4127, 1, 4903, 1, 38039, 57397, 1, 1, 16691, 6529, 1, 1, 39863, 20047, 120977, 2897, 13597, 1, 809, 20747, 5443, 20983, 6029, 1, 1, 1, 3011, 2411, 1, 9403, 44123, 3169, 3617, 1, 5011, 4001, 1, 1, 19751, 23167, 1259, 70249, 1, 1, 142757, 1, 48091, 1, 2113, 1879, 1619, 24683, 1, 74821, 1, 1, 1831, 3637, 839, 1, 1, 2887, 1, 1, 7537, 79537, 1, 1, 1429, 1, 18121, 1, 18301, 1, 4057, 2143, 1, 2281, 1, 1, 1, 3187, 977, 1, 58199, 4177, 10369, 4217, 1, 1, 19961, 1, 3701, 30367, 1, 91957, 3623, 10313, 1, 1487, 62743, 1039, 4871, 1871, 191717, 32099, 1, 97177, 1033, 32687, 197009, 32983, 1, 1, 1, 1, 1289, 1, 68059, 1, 1, 34483, 4241, 1, 23293, 105277, 23497, 1, 1, 5101, 4219, 1, 991, 12109, 31271, 1, 10513, 6521, 74219, 1, 1, 1, 8387, 1, 25373, 38219, 230273, 2267, 11057, 1597, 11149, 1, 236069, 1013, 1, 1, 1951, 5737, 1, 40487, 1, 122449, 1301, 1789, 2083, 41479, 1, 9649, 1, 1, 1, 1, 85303, 128461, 1, 43159, 37139, 43499, 4159, 1, 1, 1, 266129, 6361, 89399, 19231, 3917, 15073, 1, 1, 1867, 1, 1, 3559, 4723, 46619, 10399, 1, 1, 6761, 4831, 1163, 95723, 1, 1, 1, 3203, 16253, 97879, 1, 1, 7069, 297989, 7121, 33353, 8861, 3733, 1367, 3347, 3919, 2087, 153949, 1, 5743, 311237, 1, 104491, 1, 105239, 52807, 317969, 4091, 1, 160681, 5119, 53939, 324773, 54319, 2659, 1, 1, 1, 8089, 6163, 8563, 12889, 1, 56239, 48371, 3331, 1, 171049, 1, 1, 9341, 1, 6823, 1, 1, 1, 50387, 19661, 1, 178141, 119159, 59779, 21169, 8597, 40253, 3709, 1, 4691, 4423, 1, 17597, 1, 17713, 6911, 1, 1, 1, 1, 126443, 1, 1, 63839, 42697, 192757, 1, 64667, 3271, 1759, 1949, 196501, 1, 1, 1327, 1, 1, 5413, 7879, 1, 1, 67607, 2153, 2459, 45497, 4027, 412037, 1, 10631, 1, 2357, 1, 419777, 1, 20113, 1, 1, 3089, 10429, 71483, 3677, 2371, 1, 10337, 1, 1693, 3947, 219721, 1, 2729, 63347, 24709, 8747, 17209, 1, 1531, 10499, 10781, 50461, 13397, 2207, 76367, 65651, 76819, 22013, 10079, 11923, 1993, 467729, 1, 156823, 33703, 157739, 1, 475973, 79559, 1, 3583, 7643, 1, 37253, 1, 162359, 1, 1, 1, 1, 27449, 1, 4211, 1, 2251, 5507, 1, 55997, 4283, 6257, 12101, 7607, 1, 170843, 256981, 171799, 1, 1511, 2221, 1, 261301, 1, 87583, 1, 1, 1, 37951, 59197, 1, 535697, 89527, 1973, 20773, 1, 30169, 544517, 10111, 4451, 1, 183479, 1, 14957, 4021, 6869, 1, 1, 93479, 1, 93979, 188459, 16673, 189463, 4523, 571409, 4547, 1, 287977, 1, 1, 1, 97007, 1, 292549, 21727, 1607, 25639, 2011, 1, 42451, 2393, 1, 46073, 1, 28669, 1, 28817, 101119, 608273, 1, 67933, 43783, 68281, 14669, 47513, 1, 206939, 311197, 1, 1, 89591, 3881, 1, 315949, 9181, 15121, 4273, 1, 1823, 7459, 71453, 1, 5431, 1, 1, 1, 217579, 36353, 17729, 1, 16903, 3631, 9601, 1, 1, 111227, 1, 1, 3557, 6607, 16477, 1913, 226283, 3739, 17491, 1, 1, 1, 229591, 4729, 32957, 2689, 99347, 1, 77641, 15227, 1, 1, 1, 1, 10273, 355261, 5521, 2333, 1, 1, 1, 360337, 1, 9283, 55829, 17321, 1, 1, 81401, 122387, 736037, 2999, 1, 370597, 2081, 1, 57413, 1, 249943, 7669, 251099, 17977, 756773, 1, 4969, 381001, 1, 127583, 2549, 9859, 19763, 22721, 4231, 2053, 13183, 1, 7039, 1, 1, 3049, 1, 1, 1, 30529, 2389, 132887, 11927, 19069, 15739, 8209, 268759, 44893, 19753, 15031, 38737, 31357, 1, 136483, 2099, 137087, 10177, 59011, 91997, 1, 831617, 8171, 1, 6247, 1, 3593, 120371, 1, 282091, 1, 1, 1, 2579, 20369, 95261, 1, 31891, 1, 1, 144439, 41357, 435181, 12641, 16187, 875969, 6967, 3533, 62971, 1, 1, 1, 11399, 14143, 10889, 2029, 1, 2503, 1, 4931, 64591, 1, 7207, 8053, 1, 23431, 1, 1, 153259, 131639, 2297, 1, 2953, 6073, 3167, 1, 1, 24023, 36109, 1, 1, 134951, 1, 2657, 20663, 317483, 2179, 956357, 22817, 4639, 1, 1, 1, 1, 161683, 1, 487021,

6. Sequence of the polynom (only primes)

17, 3, 23, 7, 13, 37, 59, 41, 127, 43, 197, 157, 67, 449, 83, 61, 73, 773, 139, 167, 439, 491, 1637, 347, 311, 379, 113, 1237, 859, 149, 2789, 223, 151, 599, 683, 4229, 727, 1499, 331, 389, 1783, 2749, 269, 967, 1019, 3217, 733, 2423, 2539, 433, 397, 4261, 2903, 1483, 691, 1097, 239, 1747, 509, 5449, 653, 307, 4139, 757, 1481, 6781, 2339, 2039, 4919, 577, 15749, 5419, 359, 5591, 353, 2927, 283, 9049, 18917, 457, 6491, 6679, 1129, 557, 1009, 467, 1721, 3779, 1663, 2621, 569, 563, 487, 12577, 1213, 1433, 8923, 797, 661, 28097, 677, 14557, 1091, 4967, 15601, 547, 647, 2383, 11243, 5683, 34469, 5807, 571, 2161, 12503, 2707, 12763, 1699, 13291, 1549, 5927, 6983, 1567, 521, 4793, 43973, 14939, 22621, 1171, 2609, 23917, 16091, 49157, 1181, 3607, 659, 3989, 8719, 619, 2557, 54629, 3061, 18523, 4003, 18839, 4421, 743, 1733, 8627, 499, 30937, 1223, 63377, 877, 21803, 10987, 9491, 11159, 33997, 953, 1669, 1811, 23899, 4013, 1193, 4073, 3517, 37201, 12583, 673, 751, 8573, 1877, 79397, 13327, 1579, 3889, 1523, 11831, 1217, 631, 5077, 2069, 9721, 44041, 14879, 887, 4337, 45841, 30763, 7193, 1373, 31991, 947, 1451, 709, 49549, 1583, 1303, 7351, 34519, 827, 104849, 5861, 863, 53401, 941, 55381, 4127, 4903, 38039, 57397, 16691, 6529, 39863, 20047, 120977, 2897, 13597, 809, 20747, 5443, 20983, 6029, 3011, 2411, 9403, 44123, 3169, 3617, 5011, 4001, 19751, 23167, 1259, 70249, 142757, 48091, 2113, 1879, 1619, 24683, 74821, 1831, 3637, 839, 2887, 7537, 79537, 1429, 18121, 18301, 4057, 2143, 2281, 3187, 977, 58199, 4177, 10369, 4217, 19961, 3701, 30367, 91957, 3623, 10313, 1487, 62743, 1039, 4871, 1871, 191717, 32099, 97177, 1033, 32687, 197009, 32983, 1289, 68059, 34483, 4241, 23293, 105277, 23497, 5101, 4219, 991, 12109, 31271, 10513, 6521, 74219, 8387, 25373, 38219, 230273, 2267, 11057, 1597, 11149, 236069, 1013, 1951, 5737, 40487, 122449, 1301, 1789, 2083, 41479, 9649, 85303, 128461, 43159, 37139, 43499, 4159, 266129, 6361, 89399, 19231, 3917, 15073, 1867, 3559, 4723, 46619, 10399, 6761, 4831, 1163, 95723, 3203, 16253, 97879, 7069, 297989, 7121, 33353, 8861, 3733, 1367, 3347, 3919, 2087, 153949, 5743, 311237, 104491, 105239, 52807, 317969, 4091, 160681, 5119, 53939, 324773, 54319, 2659, 8089, 6163, 8563, 12889, 56239, 48371, 3331, 171049, 9341, 6823, 50387, 19661, 178141, 119159, 59779, 21169, 8597, 40253, 3709, 4691, 4423, 17597, 17713, 6911, 126443, 63839, 42697, 192757, 64667, 3271, 1759, 1949, 196501, 1327, 5413, 7879, 67607, 2153, 2459, 45497, 4027, 412037, 10631, 2357, 419777, 20113, 3089, 10429, 71483, 3677, 2371, 10337, 1693, 3947, 219721, 2729, 63347, 24709, 8747, 17209, 1531, 10499, 10781, 50461, 13397, 2207, 76367, 65651, 76819, 22013, 10079, 11923, 1993, 467729, 156823, 33703, 157739, 475973, 79559, 3583, 7643, 37253, 162359, 27449, 4211, 2251, 5507, 55997, 4283, 6257, 12101, 7607, 170843, 256981, 171799, 1511, 2221, 261301, 87583, 37951, 59197, 535697, 89527, 1973, 20773, 30169, 544517, 10111, 4451, 183479, 14957, 4021, 6869, 93479, 93979, 188459, 16673, 189463, 4523, 571409, 4547, 287977, 97007, 292549, 21727, 1607, 25639, 2011, 42451, 2393, 46073, 28669, 28817, 101119, 608273, 67933, 43783, 68281, 14669, 47513, 206939, 311197, 89591, 3881, 315949, 9181, 15121, 4273, 1823, 7459, 71453, 5431, 217579, 36353, 17729, 16903, 3631, 9601, 111227, 3557, 6607, 16477, 1913, 226283, 3739, 17491, 229591, 4729, 32957, 2689, 99347, 77641, 15227, 10273, 355261, 5521, 2333, 360337, 9283, 55829, 17321, 81401, 122387, 736037, 2999, 370597, 2081, 57413, 249943, 7669, 251099, 17977, 756773, 4969, 381001, 127583, 2549, 9859, 19763, 22721, 4231, 2053, 13183, 7039, 3049, 30529, 2389, 132887, 11927, 19069, 15739, 8209, 268759, 44893, 19753, 15031, 38737, 31357, 136483, 2099, 137087, 10177, 59011, 91997, 831617, 8171, 6247, 3593, 120371, 282091, 2579, 20369, 95261, 31891, 144439, 41357, 435181, 12641, 16187, 875969, 6967, 3533, 62971, 11399, 14143, 10889, 2029, 2503, 4931, 64591, 7207, 8053, 23431, 153259, 131639, 2297, 2953, 6073, 3167, 24023, 36109, 134951, 2657, 20663, 317483, 2179, 956357, 22817, 4639, 161683, 487021,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-24x+17 and
the reducible primes which appear as divisor for the first time
p | x^2-24x+17 and p < x^2-24x+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)
1107430.7000000.4000000.3000000.0000000.0000000.000000
21004315280.4300000.1500000.2800006.1428573.7500009.333333
31.000625945310.6250000.0940000.53100014.5348836.26666718.964285
410.0006.5366385.8980.6536000.0638000.58980010.4576006.78723411.107345
5100.00066.3435.15761.1860.6634300.0515700.61186010.1503988.08307210.374025
61.000.000668.57642.341626.2350.6685760.0423410.62623510.0775668.21039410.234940
710.000.0006.719.234358.2846.360.9500.6719230.0358280.63609510.0500688.46186910.157449
8100.000.00067.450.2023.099.77564.350.4270.6745020.0309980.64350410.0383778.65172610.116481
91.000.000.000676.512.49927.317.668649.194.8310.6765130.0273180.64919510.0298078.81279110.088430
1010.000.000.0006.781.258.482244.227.7536.537.030.7290.6781260.0244230.65370310.0238488.94028610.069444


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
243300.7500000.7500000.0000001.5000001.500000-nan
385320.6250000.3750000.2500001.6666671.000000inf
4168530.5000000.3125000.1875001.6000001.6666671.500000
5329630.2812500.1875000.0937501.1250001.2000001.000000
6642311120.3593750.1718750.1875002.5555561.8333334.000000
71285917420.4609380.1328120.3281252.5652171.5454553.500000
8256141311100.5507810.1210940.4296882.3898311.8235292.619048
9512304562480.5937500.1093750.4843752.1560281.8064522.254545
101.024642965460.6269530.0937500.5332032.1118421.7142862.201613
112.0481.3041721.1320.6367190.0839840.5527342.0311531.7916672.073260
124.0962.6433032.3400.6452640.0739750.5712892.0268401.7616282.067138
138.1925.3565384.8180.6538090.0656740.5881352.0264851.7755782.058974
1416.38410.7551.0069.7490.6564330.0614010.5950322.0080281.8698882.023454
1532.76821.6351.86219.7730.6602480.0568240.6034242.0116221.8508952.028208
1665.53643.3533.51839.8350.6615140.0536800.6078342.0038361.8893662.014616
17131.07287.0546.59980.4550.6641690.0503460.6138232.0080271.8757822.019706
18262.144174.50812.439162.0690.6656950.0474510.6182442.0045951.8849832.014405
19524.288349.84423.420326.4240.6672740.0446700.6226042.0047451.8827882.014105
201.048.576701.10344.231656.8720.6686240.0421820.6264422.0040451.8886002.012327
212.097.1521.404.59683.8721.320.7240.6697640.0399930.6297702.0034091.8962272.010626
224.194.3042.813.351159.5022.653.8490.6707550.0380280.6327272.0029611.9017312.009390
238.388.6085.634.750303.9935.330.7570.6717150.0362390.6354762.0028611.9058882.008689
2416.777.21611.284.052580.78510.703.2670.6725820.0346170.6379642.0025831.9105212.007833
2533.554.43222.596.0391.110.90421.485.1350.6734140.0331080.6403072.0024761.9127632.007344
2667.108.86445.238.9842.129.20543.109.7790.6741130.0317280.6423862.0020761.9166422.006493
27134.217.72890.567.4094.091.19586.476.2140.6747800.0304820.6442982.0019771.9214662.005954
28268.435.456181.306.4957.866.719173.439.7760.6754190.0293060.6461142.0018961.9228412.005635
29536.870.912362.931.32815.151.428347.779.9000.6760120.0282220.6477912.0017561.9260162.005191
301.073.741.824726.461.52229.224.536697.236.9860.6765700.0272170.6493532.0016501.9288312.004822
312.147.483.6481.454.026.64556.443.4141.397.583.2310.6770840.0262840.6508002.0015191.9313712.004459
324.294.967.2962.910.140.387109.138.4072.801.001.9800.6775700.0254110.6521592.0014361.9335902.004175
338.589.934.5925.824.241.731211.265.7355.612.975.9960.6780310.0245950.6534362.0013611.9357602.003917
3417.179.869.18411.655.862.869409.381.87411.246.480.9950.6784610.0238290.6546312.0012671.9377582.003657
3534.359.738.36823.325.783.802794.075.62022.531.708.1820.6788700.0231110.6557592.0012061.9396942.003445
3668.719.476.73646.678.085.5381.541.677.28045.136.408.2580.6792560.0224340.6568212.0011371.9414742.003239


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
122011100
243021101
383021101
4165131202
5326141212
66411372252
712817794292
825631141682192
9512563025222302
101.024965144392532
112.0481729279782902
124.09630315614615021492
138.19253827925826222722
1416.3841.00651049550125012
1532.7681.86295690592129372
1665.5363.5181.8131.7041.74421.7702
17131.0726.5993.3883.2103.26523.3302
18262.14412.4396.3326.1066.19326.2422
19524.28823.42011.85911.56011.662211.7542
201.048.57644.23122.37621.85422.098222.1292
212.097.15283.87242.41541.45642.019241.8492
224.194.304159.50280.54978.95279.693279.8052
238.388.608303.993153.693150.299151.7672152.2222
2416.777.216580.785293.726287.058290.2342290.5472
2533.554.4321.110.904561.486549.417555.6182555.2822
2667.108.8642.129.2051.075.0431.054.1611.065.34621.063.8552
27134.217.7284.091.1952.065.1752.026.0192.046.67222.044.5192
28268.435.4567.866.7193.969.8973.896.8213.933.06923.933.6462
29536.870.91215.151.4287.643.6727.507.7557.575.62427.575.8002
301.073.741.82429.224.53614.740.51914.484.01614.613.045214.611.4872
312.147.483.64856.443.41428.460.84327.982.57028.224.863228.218.5472
324.294.967.296109.138.40755.019.56554.118.84154.571.847254.566.5562
338.589.934.592211.265.735106.475.177104.790.557105.641.8742105.623.8572
3417.179.869.184409.381.874206.273.098203.108.775204.694.5992204.687.2712
3534.359.738.368794.075.620400.022.281394.053.338397.035.5432397.040.0732
3668.719.476.7361.541.677.280776.478.550765.198.729770.843.0222770.834.2542


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
240000000
382200020
4163211020
5323211020
66412661623
71284221214161012
8256110515916392332
951224811713150735075
101.024546267279115154112165
112.0481.132570562230321246335
124.0962.3401.1731.167478654516692
138.1924.8182.4132.4051.0211.3141.1031.380
1416.3849.7494.8664.8832.1272.6792.2152.728
1532.76819.7739.8329.9414.3685.4594.4805.466
1665.53639.83519.88719.9489.01710.8749.04310.901
17131.07280.45540.16540.29018.32521.96018.34721.823
18262.144162.06980.81881.25137.34143.62637.26743.835
19524.288326.424163.105163.31975.80387.54275.51587.564
201.048.576656.872328.289328.583152.919175.420152.957175.576
212.097.1521.320.724659.698661.026308.518351.729308.392352.085
224.194.3042.653.8491.327.2291.326.620621.877704.340622.222705.410
238.388.6085.330.7572.666.2812.664.4761.255.4221.409.9491.255.2141.410.172
2416.777.21610.703.2675.352.5155.350.7522.527.8682.823.6552.527.1052.824.639
2533.554.43221.485.13510.744.04610.741.0895.086.6515.656.3415.086.9525.655.191
2667.108.86443.109.77921.561.38021.548.39910.232.55211.323.26510.233.44911.320.513
27134.217.72886.476.21443.245.99643.230.21820.572.75622.664.17920.573.50822.665.771
28268.435.456173.439.77686.736.49286.703.28441.354.82945.365.18641.351.15345.368.608
29536.870.912347.779.900173.908.912173.870.98883.087.44790.806.44283.088.49690.797.515
301.073.741.824697.236.986348.674.312348.562.674166.873.097181.754.247166.873.851181.735.791
312.147.483.6481.397.583.231698.875.757698.707.474335.021.768363.756.770335.057.582363.747.111
324.294.967.2962.801.001.9801.400.678.2661.400.323.714672.496.996728.009.079672.528.911727.966.994
338.589.934.5925.612.975.9962.806.828.2192.806.147.7771.349.561.7651.456.910.9511.349.604.4941.456.898.786
3417.179.869.18411.246.480.9955.623.910.7915.622.570.2042.707.711.9662.915.579.8432.707.681.5702.915.507.616
3534.359.738.36822.531.708.18211.267.124.44611.264.583.7365.431.436.2035.834.498.4035.431.389.5695.834.384.007
3668.719.476.73645.136.408.25822.570.637.13022.565.771.12810.893.134.56711.675.144.57810.893.070.29111.675.058.822


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 3, 1, 23, 7, 13, 1, 1, 37, 59, 41, 1, 127, 1, 1, 1, 1, 1, 1, 1,
Found in Database : 17, 3, 23, 7, 13, 37, 59, 41, 127, 43, 197, 157, 67, 449, 83, 61,
Found in Database : 3, 7, 13, 17, 23, 37, 41, 43, 59, 61, 67, 73, 83, 113, 127, 139, 149,