Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:07:22
Deutsch
16.Apr 2024

Polynom = x^2-160x+23

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) = 23 = 23
f(1) = 17 = 17
f(2) = 293 = 293
f(3) = 7 = 7
f(4) = 601 = 601
f(5) = 47 = 47
f(6) = 901 = 17*53
f(7) = 131 = 131
f(8) = 1193 = 1193
f(9) = 167 = 167
f(10) = 1477 = 7*211
f(11) = 101 = 101
f(12) = 1753 = 1753
f(13) = 59 = 59
f(14) = 2021 = 43*47
f(15) = 269 = 269
f(16) = 2281 = 2281
f(17) = 301 = 7*43
f(18) = 2533 = 17*149
f(19) = 83 = 83
f(20) = 2777 = 2777
f(21) = 181 = 181
f(22) = 3013 = 23*131
f(23) = 391 = 17*23
f(24) = 3241 = 7*463
f(25) = 419 = 419
f(26) = 3461 = 3461
f(27) = 223 = 223
f(28) = 3673 = 3673
f(29) = 59 = 59
f(30) = 3877 = 3877
f(31) = 497 = 7*71
f(32) = 4073 = 4073
f(33) = 521 = 521
f(34) = 4261 = 4261
f(35) = 17 = 17
f(36) = 4441 = 4441
f(37) = 283 = 283
f(38) = 4613 = 7*659
f(39) = 587 = 587
f(40) = 4777 = 17*281
f(41) = 607 = 607
f(42) = 4933 = 4933
f(43) = 313 = 313
f(44) = 5081 = 5081
f(45) = 161 = 7*23
f(46) = 5221 = 23*227
f(47) = 661 = 661
f(48) = 5353 = 53*101
f(49) = 677 = 677
f(50) = 5477 = 5477
f(51) = 173 = 173
f(52) = 5593 = 7*17*47
f(53) = 353 = 353
f(54) = 5701 = 5701
f(55) = 719 = 719
f(56) = 5801 = 5801
f(57) = 731 = 17*43
f(58) = 5893 = 71*83
f(59) = 371 = 7*53
f(60) = 5977 = 43*139
f(61) = 47 = 47
f(62) = 6053 = 6053
f(63) = 761 = 761
f(64) = 6121 = 6121
f(65) = 769 = 769
f(66) = 6181 = 7*883
f(67) = 97 = 97
f(68) = 6233 = 23*271
f(69) = 391 = 17*23
f(70) = 6277 = 6277
f(71) = 787 = 787
f(72) = 6313 = 59*107
f(73) = 791 = 7*113
f(74) = 6341 = 17*373
f(75) = 397 = 397
f(76) = 6361 = 6361
f(77) = 199 = 199
f(78) = 6373 = 6373
f(79) = 797 = 797
f(80) = 6377 = 7*911
f(81) = 797 = 797
f(82) = 6373 = 6373
f(83) = 199 = 199
f(84) = 6361 = 6361
f(85) = 397 = 397
f(86) = 6341 = 17*373
f(87) = 791 = 7*113
f(88) = 6313 = 59*107
f(89) = 787 = 787
f(90) = 6277 = 6277
f(91) = 391 = 17*23
f(92) = 6233 = 23*271
f(93) = 97 = 97
f(94) = 6181 = 7*883
f(95) = 769 = 769
f(96) = 6121 = 6121
f(97) = 761 = 761
f(98) = 6053 = 6053
f(99) = 47 = 47
f(100) = 5977 = 43*139

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-160x+23

f(0)=23
f(1)=17
f(2)=293
f(3)=7
f(4)=601
f(5)=47
f(6)=53
f(7)=131
f(8)=1193
f(9)=167
f(10)=211
f(11)=101
f(12)=1753
f(13)=59
f(14)=43
f(15)=269
f(16)=2281
f(17)=1
f(18)=149
f(19)=83
f(20)=2777
f(21)=181
f(22)=1
f(23)=1
f(24)=463
f(25)=419
f(26)=3461
f(27)=223
f(28)=3673
f(29)=1
f(30)=3877
f(31)=71
f(32)=4073
f(33)=521
f(34)=4261
f(35)=1
f(36)=4441
f(37)=283
f(38)=659
f(39)=587
f(40)=281
f(41)=607
f(42)=4933
f(43)=313
f(44)=5081
f(45)=1
f(46)=227
f(47)=661
f(48)=1
f(49)=677
f(50)=5477
f(51)=173
f(52)=1
f(53)=353
f(54)=5701
f(55)=719
f(56)=5801
f(57)=1
f(58)=1
f(59)=1
f(60)=139
f(61)=1
f(62)=6053
f(63)=761
f(64)=6121
f(65)=769
f(66)=883
f(67)=97
f(68)=271
f(69)=1
f(70)=6277
f(71)=787
f(72)=107
f(73)=113
f(74)=373
f(75)=397
f(76)=6361
f(77)=199
f(78)=6373
f(79)=797
f(80)=911
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-160x+23 could be written as f(y)= y^2-6377 with x=y+80

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-80
f'(x)>2x-161 with x > 80

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

23, 17, 293, 7, 601, 47, 53, 131, 1193, 167, 211, 101, 1753, 59, 43, 269, 2281, 1, 149, 83, 2777, 181, 1, 1, 463, 419, 3461, 223, 3673, 1, 3877, 71, 4073, 521, 4261, 1, 4441, 283, 659, 587, 281, 607, 4933, 313, 5081, 1, 227, 661, 1, 677, 5477, 173, 1, 353, 5701, 719, 5801, 1, 1, 1, 139, 1, 6053, 761, 6121, 769, 883, 97, 271, 1, 6277, 787, 107, 113, 373, 397, 6361, 199, 6373, 797, 911, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 347, 1, 1, 1, 1019, 1, 1367, 193, 1723, 1, 2087, 1, 2459, 331, 1, 379, 461, 1, 3623, 239, 4027, 1, 1, 1, 1, 317, 311, 1, 1, 743, 881, 1, 6619, 1, 7079, 457, 7547, 1, 1, 1033, 1, 547, 8999, 1, 1, 1, 10007, 1283, 619, 337, 11047, 1, 11579, 1481, 12119, 1549, 1, 809, 1889, 1, 811, 1759, 1, 1831, 14939, 1, 15527, 1, 701, 2053, 389, 2129, 2477, 1103, 17959, 571, 18587, 1, 409, 349, 19867, 631, 1, 1303, 21179, 2689, 3121, 1, 1, 1429, 1009, 1, 23899, 433, 1447, 3119, 25307, 401, 491, 1, 3821, 3389, 27479, 1, 28219, 1787, 1, 1, 29723, 1, 709, 1, 31259, 1, 1, 2027, 1931, 4153, 33623, 4253, 1, 1, 1, 557, 1, 1, 36887, 4663, 1, 1, 38567, 2437, 39419, 1, 857, 727, 1789, 1, 42023, 1327, 1, 5419, 6257, 5531, 44699, 1, 773, 2879, 46523, 839, 2791, 1, 479, 1, 1, 1, 1, 6343, 1, 1, 2269, 823, 1, 1, 54139, 6829, 55127, 1, 56123, 3539, 8161, 1801, 1237, 7331, 59159, 7459, 1, 1, 61223, 1, 877, 1, 2753, 1, 541, 4057, 65447, 1031, 66523, 1, 67607, 1217, 68699, 1, 1, 4397, 1, 8933, 10289, 1, 1, 1, 74279, 2339, 1423, 1, 3329, 9643, 77723, 2447, 78887, 4967, 11437, 593, 81239, 1, 1, 5189, 4919, 1, 84827, 1, 887, 10831, 1229, 1373, 12641, 5569, 1, 1, 5351, 1, 92219, 829, 93479, 1, 94747, 11923, 733, 1, 13901, 3061, 2293, 6203, 1, 12569, 101207, 1, 102523, 6449, 919, 1, 1, 1, 15217, 13399, 107867, 1, 1, 6869, 110587, 1987, 111959, 14081, 1, 7127, 2441, 3607, 1, 859, 1, 14779, 1433, 3739, 5233, 1, 121787, 15313, 827, 15493, 2113, 1, 1, 991, 127579, 1, 7591, 16223, 130523, 1, 1307, 8297, 133499, 1, 134999, 1, 19501, 1, 1, 4337, 139547, 17539, 141079, 1, 142619, 4481, 144167, 9059, 145723, 18313, 1, 1, 148859, 1, 150439, 1, 152027, 2729, 153623, 1, 1, 1, 1, 1, 22637, 1, 160087, 20113, 3761, 10159, 163367, 1, 1, 20731, 166679, 20939, 168347, 1, 1, 1, 171707, 21569, 1, 947, 1, 1571, 176807, 1, 1069, 1319, 180247, 22639, 25997, 2857, 1, 1, 185467, 23293, 187223, 3359, 4021, 11867, 190759, 1, 192539, 24179, 1, 1061, 4561, 1, 197927, 1, 199739, 3583, 3803, 25309, 203387, 1, 205223, 3221, 29581, 25999, 3541, 1543, 1609, 1, 1, 1907, 12619, 1171, 1, 1, 1, 1, 1, 6911, 222107, 27883, 3797, 28123, 13291, 1013, 1259, 14303, 229819, 1697, 1021, 1, 1, 14669, 1117, 1, 10333, 1297, 5573, 4297, 1, 1, 243623, 15289, 245627, 30829, 2081, 31081, 249659, 15667, 1, 1, 1, 4549, 255767, 32099, 1, 8089, 15287, 1, 1627, 1, 3181, 1949, 1, 1, 268199, 1, 270299, 1, 272407, 34183, 1, 2153, 39521, 1, 1871, 34981, 1, 1, 16651, 1, 12401, 1, 287387, 1, 289559, 1, 1, 9151, 1699, 18439, 17419, 1, 298327, 5347, 1109, 1, 302759, 1187, 2699, 1, 43889, 38543, 5839, 1, 13553, 19553, 313979, 1, 1, 1, 318523, 19979, 1, 10061, 1, 40531, 2341, 40819, 327707, 1, 1, 2957, 1, 1, 19687, 41981, 14653, 1, 48481, 1, 4813, 42863, 7321, 43159, 1741, 1, 348839, 1, 5953, 44053, 1777, 2609, 1, 1, 6763, 11239, 21227, 45259, 1, 1, 15901, 11467, 1, 23087, 370619, 1, 1, 1, 22091, 23549, 378023, 2963, 8849, 1, 382999, 1, 1, 6043, 1, 24329, 1, 48973, 1, 2143, 3697, 1459, 398119, 1783, 3967, 1, 23719, 1, 4889, 12721, 58337, 25603, 1, 1, 413527, 51853, 3889, 3727, 24631, 6563, 421339, 2297, 18433, 1, 1, 3343, 429223, 1, 431867, 1, 1483, 1, 4507, 27407, 1, 1, 1, 1, 63601, 55819, 26347, 1, 450599, 1, 19709, 1, 456023, 57173, 458747, 1, 461479, 1, 1, 58199, 6577, 58543, 469723, 1, 4871, 4231, 1, 59581, 478039, 59929, 480827, 30139, 1, 1, 21149, 1, 489239, 61331, 492059, 2203, 1, 31019, 9391, 1451, 500567, 1, 71917, 1, 8581, 7933, 509147, 63823, 30119, 1, 2309, 2017, 1, 1, 520699, 65269, 1, 65633, 1693, 32999, 7457, 1, 532379, 9533, 535319, 3947, 538267, 1, 1, 1, 1, 68209, 1, 68581, 550139, 1499, 24049, 1, 556123, 1621, 1, 70079, 1, 8807, 80737, 1, 568187, 1, 571223, 71593, 1, 1, 3457, 18089, 580379, 72739, 583447, 1, 3643, 1, 589607, 36947, 1, 1, 1, 10667, 1, 37529, 12809, 9431, 605147, 1, 1, 76231, 611419, 4789, 36151, 1, 617723, 11059, 620887, 1, 1, 39103, 1, 1, 1, 1, 633623, 1, 1, 1, 640039, 1, 2273, 1, 7789, 81013, 38219, 40709, 93281, 2557, 4721, 82231, 1, 3593, 1, 1, 666023, 41729, 39371, 83869, 1, 1, 96557, 1, 679207, 21277, 9613, 85523, 4603, 12277, 11681, 21589, 4003, 1, 695867, 1, 1, 87613, 702587, 44017, 1, 11057, 3919, 12697, 6661, 89303, 716123, 1, 8669, 45077, 1, 1, 42727, 91009, 729787, 1, 7559, 1, 32029, 4013, 6917, 1973, 743579, 23291, 106721, 1, 1, 94033, 2803, 5557, 1, 6779, 3943, 1, 44971, 95783, 1, 96223, 110221, 1, 775079, 2111, 1, 97549, 1, 13999, 46219, 1, 2789, 1, 4583, 5843, 113777, 1, 2417, 25057, 803623, 1, 2579, 14447, 810839, 101581, 4877, 3001, 35569, 1, 117389, 1, 1, 103399, 3929, 6491, 832679, 7451, 836347, 104773,

6. Sequence of the polynom (only primes)

23, 17, 293, 7, 601, 47, 53, 131, 1193, 167, 211, 101, 1753, 59, 43, 269, 2281, 149, 83, 2777, 181, 463, 419, 3461, 223, 3673, 3877, 71, 4073, 521, 4261, 4441, 283, 659, 587, 281, 607, 4933, 313, 5081, 227, 661, 677, 5477, 173, 353, 5701, 719, 5801, 139, 6053, 761, 6121, 769, 883, 97, 271, 6277, 787, 107, 113, 373, 397, 6361, 199, 6373, 797, 911, 347, 1019, 1367, 193, 1723, 2087, 2459, 331, 379, 461, 3623, 239, 4027, 317, 311, 743, 881, 6619, 7079, 457, 7547, 1033, 547, 8999, 10007, 1283, 619, 337, 11047, 11579, 1481, 12119, 1549, 809, 1889, 811, 1759, 1831, 14939, 15527, 701, 2053, 389, 2129, 2477, 1103, 17959, 571, 18587, 409, 349, 19867, 631, 1303, 21179, 2689, 3121, 1429, 1009, 23899, 433, 1447, 3119, 25307, 401, 491, 3821, 3389, 27479, 28219, 1787, 29723, 709, 31259, 2027, 1931, 4153, 33623, 4253, 557, 36887, 4663, 38567, 2437, 39419, 857, 727, 1789, 42023, 1327, 5419, 6257, 5531, 44699, 773, 2879, 46523, 839, 2791, 479, 6343, 2269, 823, 54139, 6829, 55127, 56123, 3539, 8161, 1801, 1237, 7331, 59159, 7459, 61223, 877, 2753, 541, 4057, 65447, 1031, 66523, 67607, 1217, 68699, 4397, 8933, 10289, 74279, 2339, 1423, 3329, 9643, 77723, 2447, 78887, 4967, 11437, 593, 81239, 5189, 4919, 84827, 887, 10831, 1229, 1373, 12641, 5569, 5351, 92219, 829, 93479, 94747, 11923, 733, 13901, 3061, 2293, 6203, 12569, 101207, 102523, 6449, 919, 15217, 13399, 107867, 6869, 110587, 1987, 111959, 14081, 7127, 2441, 3607, 859, 14779, 1433, 3739, 5233, 121787, 15313, 827, 15493, 2113, 991, 127579, 7591, 16223, 130523, 1307, 8297, 133499, 134999, 19501, 4337, 139547, 17539, 141079, 142619, 4481, 144167, 9059, 145723, 18313, 148859, 150439, 152027, 2729, 153623, 22637, 160087, 20113, 3761, 10159, 163367, 20731, 166679, 20939, 168347, 171707, 21569, 947, 1571, 176807, 1069, 1319, 180247, 22639, 25997, 2857, 185467, 23293, 187223, 3359, 4021, 11867, 190759, 192539, 24179, 1061, 4561, 197927, 199739, 3583, 3803, 25309, 203387, 205223, 3221, 29581, 25999, 3541, 1543, 1609, 1907, 12619, 1171, 6911, 222107, 27883, 3797, 28123, 13291, 1013, 1259, 14303, 229819, 1697, 1021, 14669, 1117, 10333, 1297, 5573, 4297, 243623, 15289, 245627, 30829, 2081, 31081, 249659, 15667, 4549, 255767, 32099, 8089, 15287, 1627, 3181, 1949, 268199, 270299, 272407, 34183, 2153, 39521, 1871, 34981, 16651, 12401, 287387, 289559, 9151, 1699, 18439, 17419, 298327, 5347, 1109, 302759, 1187, 2699, 43889, 38543, 5839, 13553, 19553, 313979, 318523, 19979, 10061, 40531, 2341, 40819, 327707, 2957, 19687, 41981, 14653, 48481, 4813, 42863, 7321, 43159, 1741, 348839, 5953, 44053, 1777, 2609, 6763, 11239, 21227, 45259, 15901, 11467, 23087, 370619, 22091, 23549, 378023, 2963, 8849, 382999, 6043, 24329, 48973, 2143, 3697, 1459, 398119, 1783, 3967, 23719, 4889, 12721, 58337, 25603, 413527, 51853, 3889, 3727, 24631, 6563, 421339, 2297, 18433, 3343, 429223, 431867, 1483, 4507, 27407, 63601, 55819, 26347, 450599, 19709, 456023, 57173, 458747, 461479, 58199, 6577, 58543, 469723, 4871, 4231, 59581, 478039, 59929, 480827, 30139, 21149, 489239, 61331, 492059, 2203, 31019, 9391, 1451, 500567, 71917, 8581, 7933, 509147, 63823, 30119, 2309, 2017, 520699, 65269, 65633, 1693, 32999, 7457, 532379, 9533, 535319, 3947, 538267, 68209, 68581, 550139, 1499, 24049, 556123, 1621, 70079, 8807, 80737, 568187, 571223, 71593, 3457, 18089, 580379, 72739, 583447, 3643, 589607, 36947, 10667, 37529, 12809, 9431, 605147, 76231, 611419, 4789, 36151, 617723, 11059, 620887, 39103, 633623, 640039, 2273, 7789, 81013, 38219, 40709, 93281, 2557, 4721, 82231, 3593, 666023, 41729, 39371, 83869, 96557, 679207, 21277, 9613, 85523, 4603, 12277, 11681, 21589, 4003, 695867, 87613, 702587, 44017, 11057, 3919, 12697, 6661, 89303, 716123, 8669, 45077, 42727, 91009, 729787, 7559, 32029, 4013, 6917, 1973, 743579, 23291, 106721, 94033, 2803, 5557, 6779, 3943, 44971, 95783, 96223, 110221, 775079, 2111, 97549, 13999, 46219, 2789, 4583, 5843, 113777, 2417, 25057, 803623, 2579, 14447, 810839, 101581, 4877, 3001, 35569, 117389, 103399, 3929, 6491, 832679, 7451, 836347, 104773,

7. Distribution of the primes

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

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)
11011471.1000000.4000001.1000000.0000000.0000000.000000
21006523420.6500000.2300000.6500005.9090915.7500006.000000
31.0005901754150.5900000.1750000.5900009.0769237.6086969.880953
410.0006.6911.3785.3130.6691000.1378000.66910011.3406787.87428612.802409
5100.00068.33410.43557.8990.6833400.1043500.68334010.2128237.57256910.897610
61.000.000686.46485.428601.0360.6864640.0854280.68646410.0457168.18668010.380767
710.000.0006.877.622719.1976.158.4250.6877620.0719200.68776210.0189118.41875110.246349
8100.000.00068.834.1756.236.58862.597.5870.6883420.0623660.68834210.0084278.67159910.164545
91.000.000.000688.824.87455.007.577633.817.2970.6888250.0550080.68882510.0070198.82014010.125267
1010.000.000.0006.892.225.358492.255.7186.399.969.6400.6892230.0492260.68922310.0057738.94887210.097500


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
389451.1250000.5000000.6250001.8000001.3333332.500000
416176111.0625000.3750000.6875001.8888891.5000002.200000
5322911180.9062500.3437500.5625001.7058821.8333331.636364
6645320330.8281250.3125000.5156251.8275861.8181821.833333
71286523420.5078120.1796880.3281251.2264151.1500001.272727
825611746710.4570310.1796880.2773441.8000002.0000001.690476
95122741011730.5351560.1972660.3378912.3418802.1956522.436620
101.0246081784300.5937500.1738280.4199222.2189781.7623762.485549
112.0481.3023239790.6357420.1577150.4780272.1414471.8146072.276744
124.0962.6826242.0580.6547850.1523440.5024412.0599081.9318892.102145
138.1925.4561.1514.3050.6660160.1405030.5255132.0343031.8445512.091837
1416.38411.0162.1048.9120.6723630.1284180.5439452.0190621.8279762.070151
1532.76822.2553.83918.4160.6791690.1171570.5620122.0202431.8246202.066427
1665.53644.6567.13937.5170.6813960.1089320.5724642.0065601.8595992.037196
17131.07289.60613.35776.2490.6836400.1019060.5817342.0065841.8709902.032385
18262.144179.64725.061154.5860.6852990.0956000.5896992.0048551.8762452.027384
19524.288359.75047.213312.5370.6861690.0900520.5961172.0025381.8839232.021768
201.048.576719.92389.174630.7490.6865720.0850430.6015292.0011761.8887592.018158
212.097.1521.440.775168.7071.272.0680.6870150.0804460.6065692.0012901.8918862.016758
224.194.3042.883.450320.9482.562.5020.6874680.0765200.6109482.0013191.9023992.014438
238.388.6085.768.823610.6325.158.1910.6876970.0727930.6149042.0006671.9025892.012951
2416.777.21611.541.3921.167.14410.374.2480.6879210.0695670.6183532.0006491.9113712.011218
2533.554.43223.088.9422.233.39620.855.5460.6881040.0665600.6215442.0005341.9135562.010319
2667.108.86446.187.7854.284.64041.903.1450.6882520.0638460.6244062.0004291.9184422.009209
27134.217.72892.395.5598.229.20684.166.3530.6884010.0613120.6270882.0004331.9206302.008593
28268.435.456184.834.38615.830.363169.004.0230.6885620.0589730.6295892.0004681.9236812.007976
29536.870.912369.747.02430.499.905339.247.1190.6887070.0568100.6318972.0004231.9266712.007332
301.073.741.824739.635.97558.850.304680.785.6710.6888400.0548090.6340312.0003841.9295242.006755
312.147.483.6481.479.544.733113.689.4761.365.855.2570.6889670.0529410.6360262.0003691.9318422.006293
324.294.967.2962.959.612.447219.893.9722.739.718.4750.6890880.0511980.6378902.0003541.9341632.005863
338.589.934.5925.920.173.684425.798.6505.494.375.0340.6891990.0495690.6396292.0003211.9363822.005452
3417.179.869.18411.842.210.841825.295.41211.016.915.4290.6893070.0480390.6412692.0003151.9382292.005126


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
122020011
243121011
384132011
4166334011
53211567031
66420101011081
7128231310120101
825646202612131011
9512101326912421037
101.0241785712112801076
112.0483231092141215310148
124.0966242064181230910293
138.1921.1513777741256510564
1416.3842.1046841.420121.029101.053
1532.7683.8391.2842.555121.877101.940
1665.5367.1392.3784.761123.542103.575
17131.07213.3574.4818.876126.627106.708
18262.14425.0618.39116.6701212.5671012.472
19524.28847.21315.82331.3901223.6371023.554
201.048.57689.17429.71559.4591244.6001044.552
212.097.152168.70756.175112.5321284.3391084.346
224.194.304320.948106.892214.05612160.38310160.543
238.388.608610.632203.451407.18112304.90710305.703
2416.777.2161.167.144388.856778.28812583.20810583.914
2533.554.4322.233.396744.3271.489.069121.116.674101.116.700
2667.108.8644.284.6401.427.9252.856.715122.142.043102.142.575
27134.217.7288.229.2062.743.3995.485.807124.114.530104.114.654
28268.435.45615.830.3635.277.14510.553.218127.915.922107.914.419
29536.870.91230.499.90510.167.02820.332.8771215.250.0141015.249.869
301.073.741.82458.850.30419.615.08139.235.2231229.427.8611029.422.421
312.147.483.648113.689.47637.890.96475.798.5121256.843.3401056.846.114
324.294.967.296219.893.97273.288.443146.605.52912109.949.43210109.944.518
338.589.934.592425.798.650141.931.395283.867.25512212.902.18310212.896.445
3417.179.869.184825.295.412275.093.495550.201.91712412.652.79010412.642.600


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
121011000
242111001
385141112
41611381433
532186121656
66433112261188
71284218247131111
825671363517191718
9512173848946404344
101.024430229201112101115102
112.048979508471263217253246
124.0962.0581.087971556491524487
138.1924.3052.2442.0611.1599991.1201.027
1416.3848.9124.6114.3012.3592.0762.3422.135
1532.76818.4169.5088.9084.8294.3384.8404.409
1665.53637.51719.44918.0689.7818.9009.8388.998
17131.07276.24939.24337.00619.78418.19520.00618.264
18262.144154.58679.50275.08439.88637.14240.36337.195
19524.288312.537160.302152.23580.60675.22781.14475.560
201.048.576630.749322.800307.949162.780152.134163.308152.527
212.097.1521.272.068650.237621.831328.063307.495328.404308.106
224.194.3042.562.5021.308.0351.254.467660.217621.744659.583620.958
238.388.6085.158.1912.630.2492.527.9421.326.6671.253.3991.325.4561.252.669
2416.777.21610.374.2485.285.5225.088.7262.663.3502.523.2702.663.4582.524.170
2533.554.43220.855.54610.613.93010.241.6165.346.8255.080.8695.347.2695.080.583
2667.108.86441.903.14521.312.53720.590.60810.730.48010.220.80910.730.52310.221.333
27134.217.72884.166.35342.770.88641.395.46721.529.43820.551.06221.528.61520.557.238
28268.435.456169.004.02385.826.49483.177.52943.185.24541.318.10043.185.73341.314.945
29536.870.912339.247.119172.164.511167.082.60886.605.06183.020.04386.597.54883.024.467
301.073.741.824680.785.671345.269.582335.516.089173.644.718166.745.273173.640.717166.754.963
312.147.483.6481.365.855.257692.341.683673.513.574348.112.065334.810.701348.123.352334.809.139
324.294.967.2962.739.718.4751.388.073.2351.351.645.240697.763.206672.112.996697.766.758672.075.515
338.589.934.5925.494.375.0342.782.406.1872.711.968.8471.398.411.2761.348.786.1671.398.392.1181.348.785.473
3417.179.869.18411.016.915.4295.576.633.8115.440.281.6182.802.229.6112.706.257.5312.802.227.8672.706.200.420


8. Check for existing Integer Sequences by OEIS

Found in Database : 23, 17, 293, 7, 601, 47, 53, 131, 1193, 167, 211, 101, 1753, 59, 43, 269, 2281, 1, 149, 83,
Found in Database : 23, 17, 293, 7, 601, 47, 53, 131, 1193, 167, 211, 101, 1753, 59, 43, 269, 2281, 149, 83, 2777, 181, 463, 419, 3461, 223, 3673, 3877, 71, 4073, 521, 4261, 4441, 283, 659, 587,
Found in Database : 7, 17, 23, 43, 47, 53, 59, 71, 83, 97, 101, 107, 113, 131, 139, 149,