Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:01:03
Deutsch
19.Apr 2024

Polynom = x^2-120x+167

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) = 167 = 167
f(1) = 3 = 3
f(2) = 69 = 3*23
f(3) = 23 = 23
f(4) = 297 = 3*3*3*11
f(5) = 51 = 3*17
f(6) = 517 = 11*47
f(7) = 39 = 3*13
f(8) = 729 = 3*3*3*3*3*3
f(9) = 13 = 13
f(10) = 933 = 3*311
f(11) = 129 = 3*43
f(12) = 1129 = 1129
f(13) = 153 = 3*3*17
f(14) = 1317 = 3*439
f(15) = 11 = 11
f(16) = 1497 = 3*499
f(17) = 99 = 3*3*11
f(18) = 1669 = 1669
f(19) = 219 = 3*73
f(20) = 1833 = 3*13*47
f(21) = 239 = 239
f(22) = 1989 = 3*3*13*17
f(23) = 129 = 3*43
f(24) = 2137 = 2137
f(25) = 69 = 3*23
f(26) = 2277 = 3*3*11*23
f(27) = 293 = 293
f(28) = 2409 = 3*11*73
f(29) = 309 = 3*103
f(30) = 2533 = 17*149
f(31) = 81 = 3*3*3*3
f(32) = 2649 = 3*883
f(33) = 169 = 13*13
f(34) = 2757 = 3*919
f(35) = 351 = 3*3*3*13
f(36) = 2857 = 2857
f(37) = 363 = 3*11*11
f(38) = 2949 = 3*983
f(39) = 187 = 11*17
f(40) = 3033 = 3*3*337
f(41) = 3 = 3
f(42) = 3109 = 3109
f(43) = 393 = 3*131
f(44) = 3177 = 3*3*353
f(45) = 401 = 401
f(46) = 3237 = 3*13*83
f(47) = 51 = 3*17
f(48) = 3289 = 11*13*23
f(49) = 207 = 3*3*23
f(50) = 3333 = 3*11*101
f(51) = 419 = 419
f(52) = 3369 = 3*1123
f(53) = 423 = 3*3*47
f(54) = 3397 = 43*79
f(55) = 213 = 3*71
f(56) = 3417 = 3*17*67
f(57) = 107 = 107
f(58) = 3429 = 3*3*3*127
f(59) = 429 = 3*11*13
f(60) = 3433 = 3433
f(61) = 429 = 3*11*13
f(62) = 3429 = 3*3*3*127
f(63) = 107 = 107
f(64) = 3417 = 3*17*67
f(65) = 213 = 3*71
f(66) = 3397 = 43*79
f(67) = 423 = 3*3*47
f(68) = 3369 = 3*1123
f(69) = 419 = 419
f(70) = 3333 = 3*11*101
f(71) = 207 = 3*3*23
f(72) = 3289 = 11*13*23
f(73) = 51 = 3*17
f(74) = 3237 = 3*13*83
f(75) = 401 = 401
f(76) = 3177 = 3*3*353
f(77) = 393 = 3*131
f(78) = 3109 = 3109
f(79) = 3 = 3
f(80) = 3033 = 3*3*337
f(81) = 187 = 11*17
f(82) = 2949 = 3*983
f(83) = 363 = 3*11*11
f(84) = 2857 = 2857
f(85) = 351 = 3*3*3*13
f(86) = 2757 = 3*919
f(87) = 169 = 13*13
f(88) = 2649 = 3*883
f(89) = 81 = 3*3*3*3
f(90) = 2533 = 17*149
f(91) = 309 = 3*103
f(92) = 2409 = 3*11*73
f(93) = 293 = 293
f(94) = 2277 = 3*3*11*23
f(95) = 69 = 3*23
f(96) = 2137 = 2137
f(97) = 129 = 3*43
f(98) = 1989 = 3*3*13*17
f(99) = 239 = 239
f(100) = 1833 = 3*13*47

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-120x+167

f(0)=167
f(1)=3
f(2)=23
f(3)=1
f(4)=11
f(5)=17
f(6)=47
f(7)=13
f(8)=1
f(9)=1
f(10)=311
f(11)=43
f(12)=1129
f(13)=1
f(14)=439
f(15)=1
f(16)=499
f(17)=1
f(18)=1669
f(19)=73
f(20)=1
f(21)=239
f(22)=1
f(23)=1
f(24)=2137
f(25)=1
f(26)=1
f(27)=293
f(28)=1
f(29)=103
f(30)=149
f(31)=1
f(32)=883
f(33)=1
f(34)=919
f(35)=1
f(36)=2857
f(37)=1
f(38)=983
f(39)=1
f(40)=337
f(41)=1
f(42)=3109
f(43)=131
f(44)=353
f(45)=401
f(46)=83
f(47)=1
f(48)=1
f(49)=1
f(50)=101
f(51)=419
f(52)=1123
f(53)=1
f(54)=79
f(55)=71
f(56)=67
f(57)=107
f(58)=127
f(59)=1
f(60)=3433
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
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-120x+167 could be written as f(y)= y^2-3433 with x=y+60

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-60
f'(x)>2x-121 with x > 59

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

167, 3, 23, 1, 11, 17, 47, 13, 1, 1, 311, 43, 1129, 1, 439, 1, 499, 1, 1669, 73, 1, 239, 1, 1, 2137, 1, 1, 293, 1, 103, 149, 1, 883, 1, 919, 1, 2857, 1, 983, 1, 337, 1, 3109, 131, 353, 401, 83, 1, 1, 1, 101, 419, 1123, 1, 79, 71, 67, 107, 127, 1, 3433, 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, 137, 1, 1, 1, 1, 1, 397, 1, 163, 1, 1, 1, 227, 1, 1, 1, 241, 1, 1, 1, 1097, 1, 3623, 1, 1321, 1, 479, 1, 359, 1, 1, 1, 1801, 233, 5783, 1, 1, 199, 1, 1, 6971, 1, 1, 1, 1, 1, 8231, 1, 1, 1, 3037, 389, 1, 1, 257, 641, 269, 1, 997, 467, 347, 1, 1327, 1, 541, 1, 1439, 1, 1, 1, 823, 1, 1, 1, 5021, 1, 1, 331, 317, 1, 1, 709, 1, 733, 1987, 1, 1, 1, 829, 1, 1, 1, 6761, 1, 20903, 1, 7177, 2731, 821, 937, 22811, 1, 1, 1487, 1, 1019, 1907, 349, 653, 1613, 379, 1, 1579, 1, 9181, 1, 1, 1, 1, 1, 3299, 1, 10141, 1283, 2833, 1, 967, 1009, 10889, 1, 1, 1409, 877, 1, 1, 1, 35771, 1, 1, 4621, 12457, 787, 38183, 1, 13001, 1, 1, 1, 3697, 1, 1, 2621, 523, 1783, 43223, 1, 1, 1, 1153, 1, 3527, 643, 15581, 1, 15881, 1, 1033, 1021, 1499, 1, 509, 1, 3019, 1, 5807, 1, 17737, 2237, 54167, 1, 1, 1, 18701, 1, 4391, 2399, 1489, 7321, 6563, 1, 1, 631, 617, 7699, 1, 2609, 63131, 1, 1, 1, 21737, 1, 1, 1, 22441, 4241, 1, 1, 69467, 2917, 1, 8887, 1, 1, 1, 1, 1, 1, 24989, 1049, 76091, 1597, 25741, 1, 8707, 1, 3457, 1, 8963, 2539, 27277, 1, 83003, 1, 2551, 10597, 1, 1, 6659, 1, 1721, 11047, 9887, 3733, 90203, 1, 10159, 1, 1, 1, 93911, 1, 31721, 5987, 32141, 1, 1, 1, 2999, 12451, 1, 1051, 1, 2129, 1, 761, 1, 1, 105467, 1, 35597, 1, 1567, 1511, 1, 1, 859, 1, 1, 2351, 10321, 4759, 751, 14449, 1, 2437, 117671, 1, 1, 1361, 3089, 1, 121883, 1277, 1787, 1, 13859, 5227, 1777, 1, 1289, 1, 3911, 1, 130523, 1823, 43997, 1, 2617, 1, 134951, 1, 45481, 1559, 1, 5779, 1, 1, 1, 1, 47497, 1, 13093, 2011, 1, 1, 49037, 1, 148667, 1, 50077, 1, 1, 1, 941, 1, 1, 19471, 52189, 1, 1, 1, 1, 10037, 1, 1, 14821, 6827, 1, 10343, 1087, 1741, 1663, 1, 1, 1, 57097, 1, 1, 1, 58217, 21937, 1367, 1, 7741, 3727, 1, 1, 1, 1, 183191, 7669, 1, 2903, 1447, 3907, 11083, 1, 63389, 1, 63977, 1, 193703, 2027, 3833, 24547, 953, 1, 18097, 2083, 2029, 12611, 5197, 1, 15731, 1, 68777, 12953, 69389, 1, 210011, 1, 70621, 1, 23747, 1, 2729, 1, 1, 1187, 1, 1, 20113, 1543, 74381, 1, 75017, 1, 1, 9497, 5869, 1, 1, 1, 1699, 9739, 8693, 1733, 78889, 4951, 3361, 1, 1, 1, 7351, 1, 1229, 1279, 82189, 15473, 1, 10399, 250583, 1, 1, 1, 6529, 2663, 1, 1193, 1039, 32467, 5113, 1, 23893, 1, 1, 2557, 29663, 1, 6257, 1, 1, 4253, 91081, 1, 1213, 1, 92489, 1, 1, 1949, 1667, 11783, 94621, 35617, 1, 5981, 1, 1, 10753, 1, 97501, 1, 2861, 1, 5821, 1693, 99689, 1, 4127, 1, 101161, 19037, 33967, 1, 23687, 1, 1, 1, 9467, 1, 13681, 1, 1, 1, 106397, 1483, 321467, 1, 1, 1, 2131, 13633, 328343, 13729, 36739, 10369, 110989, 6961, 1, 4673, 1, 42349, 1, 1, 1, 1789, 114889, 2543, 12853, 1319, 349403, 1, 1, 1697, 118057, 1, 356567, 4969, 119657, 22511, 1, 1259, 33073, 1, 1, 1997, 1, 3853, 28547, 7757, 41507, 4259, 1, 1429, 8053, 1, 126989, 1493, 127817, 1, 385943, 1, 1, 6089, 1, 8171, 1531, 16447, 1913, 1, 1871, 8329, 30851, 1, 1, 1, 135389, 5659, 24043, 4271, 1931, 1, 15329, 17299, 37861, 1, 1, 1, 140557, 2203, 1, 1, 1, 53527, 143177, 1, 432167, 1, 11149, 54517, 3739, 1, 6569, 1, 49199, 13879, 13499, 18617, 1, 2081, 2243, 1, 8893, 1, 1, 1, 152989, 5231, 1, 1, 1607, 1, 51907, 58567, 12049, 1, 1, 1, 14407, 1753, 1, 6661, 2417, 1, 1, 30323, 6007, 1, 21277, 1, 18229, 1, 165001, 5171, 497831, 3467, 9817, 62761, 3571, 7013, 3541, 1, 1, 1, 3347, 21397, 514967, 21517, 1, 4057, 7547, 1, 1, 1, 1, 5077, 176489, 1, 532391, 1, 178441, 3947, 5437, 1, 49201, 5653, 4651, 1, 14029, 22859, 32359, 1, 1723, 1, 8059, 1, 559067, 23357, 1, 5419, 20929, 1, 2377, 11867, 1, 1523, 1, 1, 7907, 4019, 1, 18181, 14957, 8123, 1, 1, 8543, 1, 65839, 12377, 1879, 1, 1, 75037, 11801, 1, 1, 1, 18427, 76207, 2579, 2837, 1, 1, 205837, 38693, 68963, 2357, 1, 1, 1, 2311, 2659, 6581, 6271, 8819, 3167, 1, 19387, 1, 58453, 1, 4583, 6229, 1, 27127, 652667, 1, 1, 1, 219721, 2503, 1, 1, 1, 10427, 1, 4657, 672251, 1, 1861, 84649, 6857, 14177, 682151, 1, 76163, 6607, 1, 2213, 3049, 1, 231821, 1, 232937, 1, 30529, 29327, 235177, 44201, 1, 3701, 1, 1, 7229, 89671, 239689, 1877, 1, 1, 1, 1, 243101, 1, 732731, 1, 245389, 23059, 1, 1, 4987, 31033, 1, 1, 22727, 15661, 1, 1, 1, 94837, 253481, 1, 763943, 1, 1, 8741, 5039, 2927, 774491, 1, 1, 1, 1, 1, 46183, 3643, 23899, 1, 24007, 1, 795803, 1, 1, 1, 6863, 1, 1, 1, 90019, 9227, 271261, 1999, 817403, 5689, 1, 1, 274889, 1, 1, 34589, 1, 3257, 30949, 1, 11821, 1, 3469, 105601, 1, 1, 1, 1, 284681, 1, 4027, 11939, 2273, 1, 12539, 1, 1, 2791, 79333, 2803, 97379, 3229,

6. Sequence of the polynom (only primes)

167, 3, 23, 11, 17, 47, 13, 311, 43, 1129, 439, 499, 1669, 73, 239, 2137, 293, 103, 149, 883, 919, 2857, 983, 337, 3109, 131, 353, 401, 83, 101, 419, 1123, 79, 71, 67, 107, 127, 3433, 137, 397, 163, 227, 241, 1097, 3623, 1321, 479, 359, 1801, 233, 5783, 199, 6971, 8231, 3037, 389, 257, 641, 269, 997, 467, 347, 1327, 541, 1439, 823, 5021, 331, 317, 709, 733, 1987, 829, 6761, 20903, 7177, 2731, 821, 937, 22811, 1487, 1019, 1907, 349, 653, 1613, 379, 1579, 9181, 3299, 10141, 1283, 2833, 967, 1009, 10889, 1409, 877, 35771, 4621, 12457, 787, 38183, 13001, 3697, 2621, 523, 1783, 43223, 1153, 3527, 643, 15581, 15881, 1033, 1021, 1499, 509, 3019, 5807, 17737, 2237, 54167, 18701, 4391, 2399, 1489, 7321, 6563, 631, 617, 7699, 2609, 63131, 21737, 22441, 4241, 69467, 2917, 8887, 24989, 1049, 76091, 1597, 25741, 8707, 3457, 8963, 2539, 27277, 83003, 2551, 10597, 6659, 1721, 11047, 9887, 3733, 90203, 10159, 93911, 31721, 5987, 32141, 2999, 12451, 1051, 2129, 761, 105467, 35597, 1567, 1511, 859, 2351, 10321, 4759, 751, 14449, 2437, 117671, 1361, 3089, 121883, 1277, 1787, 13859, 5227, 1777, 1289, 3911, 130523, 1823, 43997, 2617, 134951, 45481, 1559, 5779, 47497, 13093, 2011, 49037, 148667, 50077, 941, 19471, 52189, 10037, 14821, 6827, 10343, 1087, 1741, 1663, 57097, 58217, 21937, 1367, 7741, 3727, 183191, 7669, 2903, 1447, 3907, 11083, 63389, 63977, 193703, 2027, 3833, 24547, 953, 18097, 2083, 2029, 12611, 5197, 15731, 68777, 12953, 69389, 210011, 70621, 23747, 2729, 1187, 20113, 1543, 74381, 75017, 9497, 5869, 1699, 9739, 8693, 1733, 78889, 4951, 3361, 7351, 1229, 1279, 82189, 15473, 10399, 250583, 6529, 2663, 1193, 1039, 32467, 5113, 23893, 2557, 29663, 6257, 4253, 91081, 1213, 92489, 1949, 1667, 11783, 94621, 35617, 5981, 10753, 97501, 2861, 5821, 1693, 99689, 4127, 101161, 19037, 33967, 23687, 9467, 13681, 106397, 1483, 321467, 2131, 13633, 328343, 13729, 36739, 10369, 110989, 6961, 4673, 42349, 1789, 114889, 2543, 12853, 1319, 349403, 1697, 118057, 356567, 4969, 119657, 22511, 1259, 33073, 1997, 3853, 28547, 7757, 41507, 4259, 1429, 8053, 126989, 1493, 127817, 385943, 6089, 8171, 1531, 16447, 1913, 1871, 8329, 30851, 135389, 5659, 24043, 4271, 1931, 15329, 17299, 37861, 140557, 2203, 53527, 143177, 432167, 11149, 54517, 3739, 6569, 49199, 13879, 13499, 18617, 2081, 2243, 8893, 152989, 5231, 1607, 51907, 58567, 12049, 14407, 1753, 6661, 2417, 30323, 6007, 21277, 18229, 165001, 5171, 497831, 3467, 9817, 62761, 3571, 7013, 3541, 3347, 21397, 514967, 21517, 4057, 7547, 5077, 176489, 532391, 178441, 3947, 5437, 49201, 5653, 4651, 14029, 22859, 32359, 1723, 8059, 559067, 23357, 5419, 20929, 2377, 11867, 1523, 7907, 4019, 18181, 14957, 8123, 8543, 65839, 12377, 1879, 75037, 11801, 18427, 76207, 2579, 2837, 205837, 38693, 68963, 2357, 2311, 2659, 6581, 6271, 8819, 3167, 19387, 58453, 4583, 6229, 27127, 652667, 219721, 2503, 10427, 4657, 672251, 1861, 84649, 6857, 14177, 682151, 76163, 6607, 2213, 3049, 231821, 232937, 30529, 29327, 235177, 44201, 3701, 7229, 89671, 239689, 1877, 243101, 732731, 245389, 23059, 4987, 31033, 22727, 15661, 94837, 253481, 763943, 8741, 5039, 2927, 774491, 46183, 3643, 23899, 24007, 795803, 6863, 90019, 9227, 271261, 1999, 817403, 5689, 274889, 34589, 3257, 30949, 11821, 3469, 105601, 284681, 4027, 11939, 2273, 12539, 2791, 79333, 2803, 97379, 3229,

7. Distribution of the primes

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

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)
1107250.7000000.2000000.5000000.0000000.0000000.000000
21003212200.3200000.1200000.2000004.5714296.0000004.000000
31.0004951103850.4950000.1100000.38500015.4687509.16666719.250000
410.0005.9668555.1110.5966000.0855000.51110012.0525267.77272713.275325
5100.00062.2736.54755.7260.6227300.0654700.55726010.4379827.65731010.903150
61.000.000636.58552.487584.0980.6365850.0524870.58409810.2224888.01695410.481606
710.000.0006.450.065439.6156.010.4500.6450060.0439610.60104510.1322928.37569310.290139
8100.000.00065.125.4153.785.22361.340.1920.6512540.0378520.61340210.0968628.61031310.205590
91.000.000.000656.070.92133.214.627622.856.2940.6560710.0332150.62285610.0739618.77481410.154131
1010.000.000.0006.598.687.777296.012.1996.302.675.5780.6598690.0296010.63026810.0578888.91210410.118988


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
244221.0000000.5000000.5000001.3333331.0000002.000000
386240.7500000.2500000.5000001.5000001.0000002.000000
41611380.6875000.1875000.5000001.8333331.5000002.000000
532197120.5937500.2187500.3750001.7272732.3333331.500000
6643212200.5000000.1875000.3125001.6842111.7142861.666667
71283312210.2578120.0937500.1640621.0312501.0000001.050000
82567923560.3085940.0898440.2187502.3939391.9166672.666667
9512212591530.4140620.1152340.2988282.6835442.5652172.732143
101.0245101123980.4980470.1093750.3886722.4056601.8983052.601307
112.0481.1162159010.5449220.1049800.4399412.1882351.9196432.263819
124.0962.3524011.9510.5742190.0979000.4763182.1075271.8651162.165372
138.1924.8407134.1270.5908200.0870360.5037842.0578231.7780552.115325
1416.3849.8931.3288.5650.6038210.0810550.5227662.0440081.8625532.075357
1532.76820.1192.48517.6340.6139830.0758360.5381472.0336601.8712352.058844
1665.53640.6134.50836.1050.6197050.0687870.5509192.0186391.8140852.047465
17131.07281.9878.28873.6990.6255110.0632320.5622792.0187381.8385092.041241
18262.144165.00715.522149.4850.6294520.0592120.5702402.0125991.8728282.028318
19524.288332.12929.148302.9810.6334860.0555950.5778902.0128181.8778512.026832
201.048.576667.75854.803612.9550.6368240.0522640.5845592.0105381.8801632.023081
212.097.1521.341.360103.5031.237.8570.6396100.0493540.5902562.0087521.8886382.019491
224.194.3042.693.398196.6132.496.7850.6421560.0468760.5952802.0079611.8995872.017022
238.388.6085.406.173373.5955.032.5780.6444660.0445360.5999302.0071941.9001542.015623
2416.777.21610.848.311712.12610.136.1850.6466100.0424460.6041642.0066531.9061442.014114
2533.554.43221.761.5971.360.32320.401.2740.6485460.0405410.6080052.0059891.9102282.012717
2667.108.86443.641.0432.603.52741.037.5160.6503020.0387960.6115072.0054161.9139042.011517
27134.217.72887.503.2684.991.12782.512.1410.6519500.0371870.6147632.0050681.9170642.010652
28268.435.456175.415.0639.583.951165.831.1120.6534720.0357030.6177692.0046691.9201982.009778
29536.870.912351.591.88518.439.169333.152.7160.6548910.0343460.6205452.0043431.9239632.008988
301.073.741.824704.593.40735.530.568669.062.8390.6562040.0330900.6231132.0040091.9269072.008277
312.147.483.6481.411.796.92968.555.6321.343.241.2970.6574190.0319240.6254952.0037051.9294832.007646
324.294.967.2962.828.523.767132.421.4792.696.102.2880.6585670.0308320.6277352.0034921.9315922.007162
338.589.934.5925.666.282.011256.108.1515.410.173.8600.6596420.0298150.6298272.0032651.9340382.006665
3417.179.869.18411.349.913.204495.840.03110.854.073.1730.6606520.0288620.6317902.0030621.9360572.006234


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
122010101
242010101
382010101
4163111101
5327332122
66412655232
712812655232
8256238147547
95125920381120820
101.024112407123351836
112.0482157913532783174
124.0964011472536314455139
138.192713260452101256103253
1416.3841.328483844189497184458
1532.7682.4858991.585334916355880
1665.5364.5081.6142.8936071.6466181.637
17131.0728.2882.9455.3421.1113.0191.1483.010
18262.14415.5225.43910.0822.0845.7382.0745.626
19524.28829.14810.23718.9103.90810.6643.89110.685
201.048.57654.80319.08835.7147.28020.0647.26820.191
212.097.152103.50335.86767.63513.53238.18613.70238.083
224.194.304196.61368.238128.37425.80372.40225.91272.496
238.388.608373.595129.433244.16148.942137.81748.907137.929
2416.777.216712.126246.271465.85492.994263.00092.771263.361
2533.554.4321.360.323469.828890.494177.360502.768177.354502.841
2667.108.8642.603.527898.3691.705.157339.130962.544339.815962.038
27134.217.7284.991.1271.720.5063.270.620649.2631.845.524649.8451.846.495
28268.435.4569.583.9513.299.2046.284.7461.245.9253.545.4901.245.6833.546.853
29536.870.91218.439.1696.340.20312.098.9652.393.1296.827.6872.392.2036.826.150
301.073.741.82435.530.56812.201.13723.329.4304.606.50913.161.9044.603.07713.159.078
312.147.483.64868.555.63223.517.20545.038.4268.873.92425.402.1468.874.36625.405.196
324.294.967.296132.421.47945.385.70887.035.77017.119.78249.085.56717.126.10649.090.024
338.589.934.592256.108.15187.703.794168.404.35633.076.75094.973.57633.082.02794.975.798
3417.179.869.184495.840.031169.652.594326.187.43663.969.050183.941.17563.977.726183.952.080


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
121010001
242020101
384041102
4168351304
53212662415
6642010104628
71282111104638
825656302613131614
9512153827142334236
101.0243982131851089311978
112.048901458443249196244212
124.0961.951997954540436532443
138.1924.1272.0822.0451.0809361.133978
1416.3848.5654.3174.2482.2541.9602.3402.011
1532.76817.6348.8758.7594.6714.0924.7724.099
1665.53636.10518.24817.8579.4848.5009.6378.484
17131.07273.69937.24436.45519.34317.43919.63117.286
18262.144149.48575.22974.25639.29735.34739.44035.401
19524.288302.981152.526150.45579.25872.18679.47272.065
201.048.576612.955308.525304.430159.623146.703160.056146.573
212.097.1521.237.857623.035614.822322.213296.877321.906296.861
224.194.3042.496.7851.256.1531.240.632648.628600.442647.499600.216
238.388.6085.032.5782.531.1172.501.4611.303.1181.212.6271.302.9861.213.847
2416.777.21610.136.1855.097.2325.038.9532.619.7252.447.0312.620.1982.449.231
2533.554.43220.401.27410.256.31210.144.9625.264.6344.936.0715.264.3504.936.219
2667.108.86441.037.51620.627.44920.410.06710.572.4869.943.34510.574.8949.946.791
27134.217.72882.512.14141.462.02241.050.11921.232.65320.018.19721.236.09220.025.199
28268.435.456165.831.11283.315.70782.515.40542.632.21840.286.67842.618.47640.293.740
29536.870.912333.152.716167.342.715165.810.00185.550.87181.030.62485.536.88381.034.338
301.073.741.824669.062.839336.015.283333.047.556171.621.926162.913.754171.612.437162.914.722
312.147.483.6481.343.241.297674.472.122668.769.175344.208.088327.435.017344.176.798327.421.394
324.294.967.2962.696.102.2881.353.539.6341.342.562.654690.248.984657.818.519690.240.211657.794.574
338.589.934.5925.410.173.8602.715.729.7102.694.444.1501.383.926.7771.321.153.8131.383.960.0451.321.133.225
3417.179.869.18410.854.073.1735.447.640.0075.406.433.1662.774.342.8982.652.670.5792.774.392.4462.652.667.250


8. Check for existing Integer Sequences by OEIS

Found in Database : 167, 3, 23, 1, 11, 17, 47, 13, 1, 1, 311, 43, 1129, 1, 439, 1, 499, 1, 1669, 73,
Found in Database : 167, 3, 23, 11, 17, 47, 13, 311, 43, 1129, 439, 499, 1669, 73, 239, 2137, 293, 103, 149, 883, 919, 2857, 983,
Found in Database : 3, 11, 13, 17, 23, 43, 47, 67, 71, 73, 79, 83, 101, 103, 107, 127, 131, 137, 149,