Inhaltsverzeichnis

Development of
Algorithmic Constructions

16:17:35
Deutsch
18.Apr 2024

Polynom = x^2-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) = 83 = 83
f(2) = 163 = 163
f(3) = 79 = 79
f(4) = 151 = 151
f(5) = 71 = 71
f(6) = 131 = 131
f(7) = 59 = 59
f(8) = 103 = 103
f(9) = 43 = 43
f(10) = 67 = 67
f(11) = 23 = 23
f(12) = 23 = 23
f(13) = 1 = 1
f(14) = 29 = 29
f(15) = 29 = 29
f(16) = 89 = 89
f(17) = 61 = 61
f(18) = 157 = 157
f(19) = 97 = 97
f(20) = 233 = 233
f(21) = 137 = 137
f(22) = 317 = 317
f(23) = 181 = 181
f(24) = 409 = 409
f(25) = 229 = 229
f(26) = 509 = 509
f(27) = 281 = 281
f(28) = 617 = 617
f(29) = 337 = 337
f(30) = 733 = 733
f(31) = 397 = 397
f(32) = 857 = 857
f(33) = 461 = 461
f(34) = 989 = 23*43
f(35) = 529 = 23*23
f(36) = 1129 = 1129
f(37) = 601 = 601
f(38) = 1277 = 1277
f(39) = 677 = 677
f(40) = 1433 = 1433
f(41) = 757 = 757
f(42) = 1597 = 1597
f(43) = 841 = 29*29
f(44) = 1769 = 29*61
f(45) = 929 = 929
f(46) = 1949 = 1949
f(47) = 1021 = 1021
f(48) = 2137 = 2137
f(49) = 1117 = 1117
f(50) = 2333 = 2333
f(51) = 1217 = 1217
f(52) = 2537 = 43*59
f(53) = 1321 = 1321
f(54) = 2749 = 2749
f(55) = 1429 = 1429
f(56) = 2969 = 2969
f(57) = 1541 = 23*67
f(58) = 3197 = 23*139
f(59) = 1657 = 1657
f(60) = 3433 = 3433
f(61) = 1777 = 1777
f(62) = 3677 = 3677
f(63) = 1901 = 1901
f(64) = 3929 = 3929
f(65) = 2029 = 2029
f(66) = 4189 = 59*71
f(67) = 2161 = 2161
f(68) = 4457 = 4457
f(69) = 2297 = 2297
f(70) = 4733 = 4733
f(71) = 2437 = 2437
f(72) = 5017 = 29*173
f(73) = 2581 = 29*89
f(74) = 5309 = 5309
f(75) = 2729 = 2729
f(76) = 5609 = 71*79
f(77) = 2881 = 43*67
f(78) = 5917 = 61*97
f(79) = 3037 = 3037
f(80) = 6233 = 23*271
f(81) = 3197 = 23*139
f(82) = 6557 = 79*83
f(83) = 3361 = 3361
f(84) = 6889 = 83*83
f(85) = 3529 = 3529
f(86) = 7229 = 7229
f(87) = 3701 = 3701
f(88) = 7577 = 7577
f(89) = 3877 = 3877
f(90) = 7933 = 7933
f(91) = 4057 = 4057
f(92) = 8297 = 8297
f(93) = 4241 = 4241
f(94) = 8669 = 8669
f(95) = 4429 = 43*103
f(96) = 9049 = 9049
f(97) = 4621 = 4621
f(98) = 9437 = 9437
f(99) = 4817 = 4817
f(100) = 9833 = 9833

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-167

f(0)=167
f(1)=83
f(2)=163
f(3)=79
f(4)=151
f(5)=71
f(6)=131
f(7)=59
f(8)=103
f(9)=43
f(10)=67
f(11)=23
f(12)=1
f(13)=1
f(14)=29
f(15)=1
f(16)=89
f(17)=61
f(18)=157
f(19)=97
f(20)=233
f(21)=137
f(22)=317
f(23)=181
f(24)=409
f(25)=229
f(26)=509
f(27)=281
f(28)=617
f(29)=337
f(30)=733
f(31)=397
f(32)=857
f(33)=461
f(34)=1
f(35)=1
f(36)=1129
f(37)=601
f(38)=1277
f(39)=677
f(40)=1433
f(41)=757
f(42)=1597
f(43)=1
f(44)=1
f(45)=929
f(46)=1949
f(47)=1021
f(48)=2137
f(49)=1117
f(50)=2333
f(51)=1217
f(52)=1
f(53)=1321
f(54)=2749
f(55)=1429
f(56)=2969
f(57)=1
f(58)=139
f(59)=1657
f(60)=3433
f(61)=1777
f(62)=3677
f(63)=1901
f(64)=3929
f(65)=2029
f(66)=1
f(67)=2161
f(68)=4457
f(69)=2297
f(70)=4733
f(71)=2437
f(72)=173
f(73)=1
f(74)=5309
f(75)=2729
f(76)=1
f(77)=1
f(78)=1
f(79)=3037
f(80)=271
f(81)=1
f(82)=1
f(83)=3361
f(84)=1
f(85)=3529
f(86)=7229
f(87)=3701
f(88)=7577
f(89)=3877
f(90)=7933
f(91)=4057
f(92)=8297
f(93)=4241
f(94)=8669
f(95)=1
f(96)=9049
f(97)=4621
f(98)=9437
f(99)=4817

b) Substitution of the polynom
The polynom f(x)=x^2-167 could be written as f(y)= y^2-167 with x=y+0

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+0
f'(x)>2x-1 with x > 13

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, 83, 163, 79, 151, 71, 131, 59, 103, 43, 67, 23, 1, 1, 29, 1, 89, 61, 157, 97, 233, 137, 317, 181, 409, 229, 509, 281, 617, 337, 733, 397, 857, 461, 1, 1, 1129, 601, 1277, 677, 1433, 757, 1597, 1, 1, 929, 1949, 1021, 2137, 1117, 2333, 1217, 1, 1321, 2749, 1429, 2969, 1, 139, 1657, 3433, 1777, 3677, 1901, 3929, 2029, 1, 2161, 4457, 2297, 4733, 2437, 173, 1, 5309, 2729, 1, 1, 1, 3037, 271, 1, 1, 3361, 1, 3529, 7229, 3701, 7577, 3877, 7933, 4057, 8297, 4241, 8669, 1, 9049, 4621, 9437, 4817, 9833, 1, 353, 227, 463, 1, 11069, 5641, 11497, 5857, 11933, 1, 12377, 6301, 12829, 6529, 1, 6761, 13757, 6997, 331, 7237, 14717, 7481, 1, 1, 683, 347, 16217, 8237, 577, 293, 17257, 8761, 17789, 9029, 18329, 1, 439, 1, 19433, 9857, 19997, 10141, 307, 10429, 21149, 1, 21737, 479, 971, 11317, 22937, 11621, 23549, 1, 24169, 12241, 1, 433, 877, 1, 1, 1, 26729, 1, 449, 1, 28057, 14197, 487, 14537, 1279, 647, 30109, 1, 30809, 15581, 31517, 15937, 32233, 379, 32957, 16661, 571, 17029, 34429, 17401, 1213, 613, 35933, 1, 36697, 18541, 421, 823, 1663, 1, 1, 19717, 653, 20117, 40637, 20521, 1, 20929, 983, 21341, 607, 21757, 43933, 1, 44777, 1, 443, 23029, 46489, 809, 1, 1039, 1, 24337, 49117, 24781, 1163, 25229, 50909, 1, 51817, 1, 52733, 26597, 53657, 27061, 691, 27529, 55529, 28001, 56477, 28477, 727, 1259, 2539, 499, 59369, 1, 2081, 1049, 739, 719, 751, 1, 63337, 1, 1, 32429, 1, 32941, 991, 33457, 67433, 557, 68477, 34501, 3023, 1523, 70589, 827, 547, 36097, 72733, 36637, 761, 37181, 1, 1301, 2621, 38281, 1151, 1, 78233, 39397, 79357, 1, 80489, 40529, 81629, 1787, 1, 587, 83933, 42257, 1979, 42841, 86269, 1, 1, 44021, 1, 44617, 89833, 1, 1543, 45821, 3181, 1601, 619, 47041, 1, 47657, 1, 2099, 97177, 1, 98429, 49529, 99689, 1, 100957, 643, 102233, 51437, 1697, 52081, 1, 787, 106109, 53381, 659, 54037, 1, 1, 701, 1, 1, 1303, 811, 56701, 114077, 1, 1297, 58057, 116797, 58741, 118169, 887, 119549, 1019, 120937, 997, 1723, 1, 123737, 1447, 125149, 62929, 5503, 2767, 127997, 1, 1823, 1103, 4513, 2269, 132329, 66529, 1, 67261, 135257, 1, 136733, 68737, 1553, 69481, 139709, 70229, 141209, 70981, 3319, 3119, 6271, 72497, 145757, 1201, 147289, 1, 148829, 1, 150377, 75577, 1109, 2633, 1, 77141, 155069, 77929, 3643, 78721, 2003, 1, 159833, 80317, 7019, 3527, 1583, 81929, 2791, 853, 166297, 83557, 2753, 84377, 2531, 85201, 2063, 86029, 2083, 86861, 1009, 87697, 1, 1, 177917, 89381, 1, 3923, 7883, 91081, 1, 1033, 184733, 1307, 1361, 1, 188189, 94529, 189929, 95401, 191677, 2239, 193433, 97157, 195197, 98041, 3229, 98929, 1, 1, 8719, 1, 6977, 1, 204137, 1, 205949, 1, 207769, 1, 209597, 1571, 211433, 1193, 1, 107101, 5003, 1831, 2237, 108961, 218857, 109897, 1, 1, 9679, 111781, 1, 1, 226409, 1439, 7873, 1, 230233, 115597, 5399, 1, 234089, 117529, 1013, 1, 237977, 1, 239933, 1, 3407, 121441, 1, 5323, 245849, 1487, 1783, 1499, 249833, 1, 3547, 126421, 2617, 2089, 255869, 1, 8893, 129457, 259933, 130477, 261977, 131501, 264029, 132529, 266089, 5807, 1, 134597, 1493, 135637, 272317, 1327, 4651, 3203, 4127, 1, 278617, 139837, 2143, 140897, 4637, 141961, 284989, 1, 9901, 4969, 4903, 145177, 12671, 6359, 1, 147341, 295769, 148429, 4447, 149521, 300137, 150617, 1, 151717, 304537, 152821, 306749, 153929, 3911, 1, 311197, 156157, 1, 157277, 315677, 1, 1, 5501, 1, 1, 7499, 1181, 324733, 162937, 327017, 2311, 329309, 165229, 331609, 1, 1471, 167537, 4051, 168697, 4079, 2879, 340889, 171029, 14923, 7487, 345577, 1, 347933, 1, 1, 1, 12161, 6101, 355049, 3019, 357437, 179317, 2383, 1861, 362237, 181721, 1, 182929, 367069, 2069, 2447, 8059, 1, 4339, 1, 2803, 2711, 1, 379289, 190261, 381757, 191497, 2221, 192737, 1427, 6689, 13421, 195229, 3803, 3221, 1, 2503, 396733, 198997, 17359, 8707, 5659, 2551, 9403, 1459, 1, 2293, 409433, 205357, 6983, 206641, 5839, 1, 2657, 209221, 1, 1607, 2591, 211817, 14653, 7349, 1, 9323, 1, 1, 432797, 217057, 1, 1667, 1913, 2647, 3217, 2663, 443389, 222361, 2671, 223697, 448733, 225037, 1, 226381, 454109, 227729, 456809, 229081, 19979, 1, 6899, 7993, 16033, 233161, 467689, 234529, 470429, 235901, 7757, 237277, 475933, 238657, 478697, 240041, 481469, 241429, 5441, 5647, 5021, 244217, 489833, 1, 21419, 1, 495449, 3499, 3637, 1, 6343, 251257, 17377, 8713, 2213, 2467, 6451, 1, 1, 1, 515357, 1, 518233, 259837, 12119, 261281, 22783, 11423, 526909, 3943, 5953, 2579, 532733, 267097, 1, 1, 538589, 270029, 541529, 271501, 544477, 9413, 1, 274457, 1, 275941, 553369, 277429, 6703, 1, 1, 4597, 562333, 1867, 565337, 2039, 568349, 1, 571369, 2953, 1871, 1907, 9787, 289477, 580477, 1, 3373, 6803, 586589, 1873, 20333, 10193, 25771, 12919, 595817, 298681, 10151, 300229, 1, 1, 605117, 303337, 4643, 304897, 1847, 7127, 2707, 3461, 8699, 3919, 620777, 311177, 623933, 312757, 4787, 1, 1, 3257, 633449, 10949, 1, 319117, 639833, 2341, 1, 2053, 1, 1, 649469, 325541, 1, 1, 10753, 328777, 659177, 2027, 9887, 1, 1, 1, 1, 5683, 1, 1, 1, 338581, 678809, 1, 1, 11789, 685417, 4139, 688733, 4159, 6719, 5879, 695389, 2087, 698729, 5741, 702077, 15299, 30671, 353557, 1733, 2593, 712169, 356929, 715549, 5051, 718937, 360317, 722333, 8419, 725737, 1, 7517, 12601, 25261, 5171, 735997, 368857, 739433, 5531, 32299, 16187, 746329, 374029, 9491, 375761, 753257, 8779, 2693, 6217, 9623, 1, 8581, 382729, 1, 384481, 13063, 386237, 774233, 5791, 4297, 389761, 1, 1, 34123, 393301, 788377, 1, 791933, 1, 1, 1, 18583, 400429, 802649, 402221, 13217, 404017, 809833, 405817, 5387, 407621, 817049, 409429, 9221, 411241, 35839, 17959, 5483, 3167, 1, 14369, 1, 3011, 838889, 420361, 11867, 4099, 846233, 424037, 849917, 3251, 5437, 1, 857309, 429581, 1, 1, 864733, 18839, 1, 435161, 872189, 4243, 875929, 1, 6421, 1, 883433, 1933, 30593, 15329, 890969, 5651, 894749, 448321, 13411, 450217, 902333, 1, 3889, 454021, 39563, 1, 2411, 1, 1, 7537, 5869, 461677, 1, 5209, 929129, 465529, 5393, 1, 1, 469397, 940733, 16253, 32573, 1, 1, 475229, 5843, 20747, 41579, 479137, 1, 481097, 2861, 483061, 968089, 485029, 972029, 1, 975977, 1, 1, 490957, 1, 8081, 987869, 1, 16811, 5987, 23159, 7027,

6. Sequence of the polynom (only primes)

167, 83, 163, 79, 151, 71, 131, 59, 103, 43, 67, 23, 29, 89, 61, 157, 97, 233, 137, 317, 181, 409, 229, 509, 281, 617, 337, 733, 397, 857, 461, 1129, 601, 1277, 677, 1433, 757, 1597, 929, 1949, 1021, 2137, 1117, 2333, 1217, 1321, 2749, 1429, 2969, 139, 1657, 3433, 1777, 3677, 1901, 3929, 2029, 2161, 4457, 2297, 4733, 2437, 173, 5309, 2729, 3037, 271, 3361, 3529, 7229, 3701, 7577, 3877, 7933, 4057, 8297, 4241, 8669, 9049, 4621, 9437, 4817, 9833, 353, 227, 463, 11069, 5641, 11497, 5857, 11933, 12377, 6301, 12829, 6529, 6761, 13757, 6997, 331, 7237, 14717, 7481, 683, 347, 16217, 8237, 577, 293, 17257, 8761, 17789, 9029, 18329, 439, 19433, 9857, 19997, 10141, 307, 10429, 21149, 21737, 479, 971, 11317, 22937, 11621, 23549, 24169, 12241, 433, 877, 26729, 449, 28057, 14197, 487, 14537, 1279, 647, 30109, 30809, 15581, 31517, 15937, 32233, 379, 32957, 16661, 571, 17029, 34429, 17401, 1213, 613, 35933, 36697, 18541, 421, 823, 1663, 19717, 653, 20117, 40637, 20521, 20929, 983, 21341, 607, 21757, 43933, 44777, 443, 23029, 46489, 809, 1039, 24337, 49117, 24781, 1163, 25229, 50909, 51817, 52733, 26597, 53657, 27061, 691, 27529, 55529, 28001, 56477, 28477, 727, 1259, 2539, 499, 59369, 2081, 1049, 739, 719, 751, 63337, 32429, 32941, 991, 33457, 67433, 557, 68477, 34501, 3023, 1523, 70589, 827, 547, 36097, 72733, 36637, 761, 37181, 1301, 2621, 38281, 1151, 78233, 39397, 79357, 80489, 40529, 81629, 1787, 587, 83933, 42257, 1979, 42841, 86269, 44021, 44617, 89833, 1543, 45821, 3181, 1601, 619, 47041, 47657, 2099, 97177, 98429, 49529, 99689, 100957, 643, 102233, 51437, 1697, 52081, 787, 106109, 53381, 659, 54037, 701, 1303, 811, 56701, 114077, 1297, 58057, 116797, 58741, 118169, 887, 119549, 1019, 120937, 997, 1723, 123737, 1447, 125149, 62929, 5503, 2767, 127997, 1823, 1103, 4513, 2269, 132329, 66529, 67261, 135257, 136733, 68737, 1553, 69481, 139709, 70229, 141209, 70981, 3319, 3119, 6271, 72497, 145757, 1201, 147289, 148829, 150377, 75577, 1109, 2633, 77141, 155069, 77929, 3643, 78721, 2003, 159833, 80317, 7019, 3527, 1583, 81929, 2791, 853, 166297, 83557, 2753, 84377, 2531, 85201, 2063, 86029, 2083, 86861, 1009, 87697, 177917, 89381, 3923, 7883, 91081, 1033, 184733, 1307, 1361, 188189, 94529, 189929, 95401, 191677, 2239, 193433, 97157, 195197, 98041, 3229, 98929, 8719, 6977, 204137, 205949, 207769, 209597, 1571, 211433, 1193, 107101, 5003, 1831, 2237, 108961, 218857, 109897, 9679, 111781, 226409, 1439, 7873, 230233, 115597, 5399, 234089, 117529, 1013, 237977, 239933, 3407, 121441, 5323, 245849, 1487, 1783, 1499, 249833, 3547, 126421, 2617, 2089, 255869, 8893, 129457, 259933, 130477, 261977, 131501, 264029, 132529, 266089, 5807, 134597, 1493, 135637, 272317, 1327, 4651, 3203, 4127, 278617, 139837, 2143, 140897, 4637, 141961, 284989, 9901, 4969, 4903, 145177, 12671, 6359, 147341, 295769, 148429, 4447, 149521, 300137, 150617, 151717, 304537, 152821, 306749, 153929, 3911, 311197, 156157, 157277, 315677, 5501, 7499, 1181, 324733, 162937, 327017, 2311, 329309, 165229, 331609, 1471, 167537, 4051, 168697, 4079, 2879, 340889, 171029, 14923, 7487, 345577, 347933, 12161, 6101, 355049, 3019, 357437, 179317, 2383, 1861, 362237, 181721, 182929, 367069, 2069, 2447, 8059, 4339, 2803, 2711, 379289, 190261, 381757, 191497, 2221, 192737, 1427, 6689, 13421, 195229, 3803, 3221, 2503, 396733, 198997, 17359, 8707, 5659, 2551, 9403, 1459, 2293, 409433, 205357, 6983, 206641, 5839, 2657, 209221, 1607, 2591, 211817, 14653, 7349, 9323, 432797, 217057, 1667, 1913, 2647, 3217, 2663, 443389, 222361, 2671, 223697, 448733, 225037, 226381, 454109, 227729, 456809, 229081, 19979, 6899, 7993, 16033, 233161, 467689, 234529, 470429, 235901, 7757, 237277, 475933, 238657, 478697, 240041, 481469, 241429, 5441, 5647, 5021, 244217, 489833, 21419, 495449, 3499, 3637, 6343, 251257, 17377, 8713, 2213, 2467, 6451, 515357, 518233, 259837, 12119, 261281, 22783, 11423, 526909, 3943, 5953, 2579, 532733, 267097, 538589, 270029, 541529, 271501, 544477, 9413, 274457, 275941, 553369, 277429, 6703, 4597, 562333, 1867, 565337, 2039, 568349, 571369, 2953, 1871, 1907, 9787, 289477, 580477, 3373, 6803, 586589, 1873, 20333, 10193, 25771, 12919, 595817, 298681, 10151, 300229, 605117, 303337, 4643, 304897, 1847, 7127, 2707, 3461, 8699, 3919, 620777, 311177, 623933, 312757, 4787, 3257, 633449, 10949, 319117, 639833, 2341, 2053, 649469, 325541, 10753, 328777, 659177, 2027, 9887, 5683, 338581, 678809, 11789, 685417, 4139, 688733, 4159, 6719, 5879, 695389, 2087, 698729, 5741, 702077, 15299, 30671, 353557, 1733, 2593, 712169, 356929, 715549, 5051, 718937, 360317, 722333, 8419, 725737, 7517, 12601, 25261, 5171, 735997, 368857, 739433, 5531, 32299, 16187, 746329, 374029, 9491, 375761, 753257, 8779, 2693, 6217, 9623, 8581, 382729, 384481, 13063, 386237, 774233, 5791, 4297, 389761, 34123, 393301, 788377, 791933, 18583, 400429, 802649, 402221, 13217, 404017, 809833, 405817, 5387, 407621, 817049, 409429, 9221, 411241, 35839, 17959, 5483, 3167, 14369, 3011, 838889, 420361, 11867, 4099, 846233, 424037, 849917, 3251, 5437, 857309, 429581, 864733, 18839, 435161, 872189, 4243, 875929, 6421, 883433, 1933, 30593, 15329, 890969, 5651, 894749, 448321, 13411, 450217, 902333, 3889, 454021, 39563, 2411, 7537, 5869, 461677, 5209, 929129, 465529, 5393, 469397, 940733, 16253, 32573, 475229, 5843, 20747, 41579, 479137, 481097, 2861, 483061, 968089, 485029, 972029, 975977, 490957, 8081, 987869, 16811, 5987, 23159, 7027,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2x-167 and
the reducible primes which appear as divisor for the first time
p | x^2x-167 and p < x^2x-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)
110111101.1000001.1000001.1000000.0000000.0000000.000000
2100838030.8300000.8000000.8300007.5454557.272727inf
31.0008034843190.8030000.4840000.8030009.6746996.050000106.333336
410.0007.7143.4164.2980.7714000.3416000.7714009.6064767.05785113.473354
5100.00075.24926.52548.7240.7524900.2652500.7524909.7548617.76493011.336435
61.000.000742.386215.990526.3960.7423860.2159900.7423869.8657268.14288410.803629
710.000.0007.352.1101.821.4575.530.6530.7352110.1821460.7352119.9033528.43306210.506639
8100.000.00072.978.47515.756.57257.221.9030.7297850.1575660.7297859.9261948.65053210.346320
91.000.000.000725.520.447138.901.139586.619.3080.7255200.1389010.7255209.9415688.81544110.251657
1010.000.000.0007.221.557.0111.241.842.3135.979.714.6980.7221560.1241840.7221569.9536248.94047610.193518


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
245501.2500001.2500000.0000001.6666671.666667-nan
389901.1250001.1250000.0000001.8000001.800000-nan
416141400.8750000.8750000.0000001.5555561.555556-nan
532303000.9375000.9375000.0000002.1428572.142857-nan
664565510.8750000.8593750.0156251.8666671.833333inf
71281059690.8203120.7500000.0703121.8750001.7454559.000000
8256207162450.8085940.6328120.1757811.9714291.6875005.000000
95124122831290.8046880.5527340.2519531.9903381.7469142.866667
101.0248214953260.8017580.4833980.3183591.9927181.7491172.527132
112.0481.6178807370.7895510.4296880.3598631.9695491.7777782.260736
124.0963.2021.5841.6180.7817380.3867190.3950201.9802101.8000002.195387
138.1926.3422.8593.4830.7741700.3489990.4251711.9806371.8049242.152658
1416.38412.5325.2927.2400.7648930.3229980.4418951.9760331.8509972.078668
1532.76824.9149.72415.1900.7603150.2967530.4635621.9880311.8374912.098066
1665.53649.50418.15331.3510.7553710.2769930.4783781.9869951.8668242.063924
17131.07298.38633.79664.5900.7506260.2578430.4927831.9874351.8617312.060221
18262.144196.00063.427132.5730.7476810.2419550.5057261.9921531.8767612.052531
19524.288390.428119.505270.9230.7446820.2279380.5167451.9919801.8841352.043576
201.048.576778.286225.565552.7210.7422310.2151160.5271161.9934181.8874942.040141
212.097.1521.551.630427.2851.124.3450.7398750.2037450.5361291.9936501.8942882.034200
224.194.3043.094.104811.1792.282.9250.7376920.1934000.5442921.9940991.8984502.030449
238.388.6086.171.8951.545.9594.625.9360.7357470.1842930.5514551.9947281.9058172.026320
2416.777.21612.312.3222.951.7229.360.6000.7338720.1759360.5579351.9949011.9093152.023504
2533.554.43224.568.2205.647.95118.920.2690.7321900.1683220.5638681.9954171.9134432.021267
2667.108.86449.032.26910.824.61538.207.6540.7306380.1612990.5693381.9957601.9165562.019403
27134.217.72897.869.56320.791.36177.078.2020.7291850.1549080.5742771.9960241.9207482.017350
28268.435.456195.374.53539.987.525155.387.0100.7278270.1489650.5788621.9962751.9232762.015966
29536.870.912390.074.59377.039.185313.035.4080.7265710.1434970.5830741.9965481.9265812.014553
301.073.741.824778.897.442148.599.807630.297.6350.7254050.1383940.5870101.9967911.9288862.013503
312.147.483.6481.555.469.819286.996.9501.268.472.8690.7243220.1336430.5906791.9970151.9313412.012498
324.294.967.2963.106.581.099554.937.8752.551.643.2240.7233070.1292070.5941011.9971981.9336022.011587
338.589.934.5926.204.997.5591.074.244.3385.130.753.2210.7223570.1250590.5972981.9973721.9357922.010764
3417.179.869.18412.394.656.2032.081.651.21210.313.004.9910.7214640.1211680.6002961.9975281.9377822.010037
3534.359.738.36824.760.432.6054.037.766.91720.722.665.6880.7206230.1175140.6031091.9976701.9396942.009372
3668.719.476.73649.466.476.6517.839.124.67441.627.351.9770.7198320.1140740.6057581.9978031.9414502.008784


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
123120201
245320203
389450405
41614681616
5323015159696
664552827216226
7128964749426426
82561627983716796
951228313814513561366
101.02449524924624262416
112.04888044143942964396
124.0961.58478979579067826
138.1922.8591.4351.4241.42261.4256
1416.3845.2922.6442.6482.62762.6536
1532.7689.7244.8284.8964.85864.8546
1665.53618.1539.0849.0699.08569.0566
17131.07233.79616.96616.83016.883616.9016
18262.14463.42731.89931.52831.724631.6916
19524.288119.50560.09959.40659.737659.7566
201.048.576225.565113.341112.224112.7516112.8026
212.097.152427.285214.701212.584213.5006213.7736
224.194.304811.179407.029404.150405.4446405.7236
238.388.6081.545.959775.185770.774772.9466773.0016
2416.777.2162.951.7221.480.7431.470.9791.475.01061.476.7006
2533.554.4325.647.9512.833.2702.814.6812.823.80662.824.1336
2667.108.86410.824.6155.431.0215.393.5945.411.02965.413.5746
27134.217.72820.791.36110.429.39610.361.96510.392.132610.399.2176
28268.435.45639.987.52520.056.25619.931.26919.991.652619.995.8616
29536.870.91277.039.18538.637.27238.401.91338.517.421638.521.7526
301.073.741.824148.599.80774.520.53574.079.27274.301.244674.298.5516
312.147.483.648286.996.950143.913.057143.083.893143.490.3946143.506.5446
324.294.967.296554.937.875278.246.544276.691.331277.467.8406277.470.0236
338.589.934.5921.074.244.338538.569.353535.674.985537.110.9276537.133.3996
3417.179.869.1842.081.651.2121.043.523.5851.038.127.6271.040.818.77761.040.832.4236
3534.359.738.3684.037.766.9172.023.969.2352.013.797.6822.018.877.37162.018.889.5346
3668.719.476.7367.839.124.6743.929.141.9993.909.982.6753.919.570.80463.919.553.8586


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
380000000
4160000000
5320000000
6641100100
71289451512
8256452619716715
9512129646524432042
101.0243261531735410962101
112.048737364373141232138226
124.0961.618807811318492324484
138.1923.4831.7151.7687021.0377441.000
1416.3847.2403.5583.6821.5042.0931.5902.053
1532.76815.1907.5357.6553.2964.2723.3244.298
1665.53631.35115.56115.7906.9398.7366.9808.696
17131.07264.59032.33532.25514.50417.73214.60917.745
18262.144132.57366.27966.29430.17836.16030.26435.971
19524.288270.923135.306135.61762.22673.14162.41873.138
201.048.576552.721276.044276.677128.006148.104128.233148.378
212.097.1521.124.345561.985562.360261.705300.254262.553299.833
224.194.3042.282.9251.141.7341.141.191534.716606.472535.232606.505
238.388.6084.625.9362.313.7232.312.2131.088.2861.224.3541.089.2591.224.037
2416.777.2169.360.6004.681.1904.679.4102.211.1302.468.3092.213.1412.468.020
2533.554.43218.920.2699.460.7349.459.5354.485.2374.974.4224.488.6064.972.004
2667.108.86438.207.65419.101.89919.105.7559.086.10110.017.5139.088.62310.015.417
27134.217.72877.078.20238.532.42638.545.77618.376.30520.162.81418.382.18620.156.897
28268.435.456155.387.01077.680.09077.706.92037.139.37940.549.87537.145.55540.552.201
29536.870.912313.035.408156.502.239156.533.16974.984.06881.525.27674.993.70481.532.360
301.073.741.824630.297.635315.118.734315.178.901151.287.856163.846.248151.306.917163.856.614
312.147.483.6481.268.472.869634.201.919634.270.950305.028.430329.204.807305.055.385329.184.247
324.294.967.2962.551.643.2241.275.757.2991.275.885.925614.627.836661.196.678614.662.138661.156.572
338.589.934.5925.130.753.2212.565.276.3752.565.476.8461.237.767.2071.327.601.7131.237.810.5091.327.573.792
3417.179.869.18410.313.004.9915.156.231.5255.156.773.4662.491.462.0842.664.985.4682.491.537.8972.665.019.542
3534.359.738.36820.722.665.68810.360.815.33910.361.850.3495.012.804.7225.348.414.2495.012.937.3095.348.509.408
3668.719.476.73641.627.351.97720.812.726.00420.814.625.97310.081.913.90010.731.706.65610.081.943.72910.731.787.692


8. Check for existing Integer Sequences by OEIS

Found in Database : 167, 83, 163, 79, 151, 71, 131, 59, 103, 43, 67, 23, 1, 1, 29, 1, 89, 61, 157, 97,
Found in Database : 167, 83, 163, 79, 151, 71, 131, 59, 103, 43, 67, 23, 29, 89, 61, 157, 97, 233, 137, 317, 181, 409, 229, 509, 281, 617, 337, 733, 397, 857, 461, 1129, 601, 1277, 677,
Found in Database : 23, 29, 43, 59, 61, 67, 71, 79, 83, 89, 97, 103, 131, 137, 139,