Inhaltsverzeichnis

Development of
Algorithmic Constructions

12:32:42
Deutsch
19.Apr 2024

Polynom = x^2-57x-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) = 73 = 73
f(2) = 127 = 127
f(3) = 179 = 179
f(4) = 229 = 229
f(5) = 277 = 277
f(6) = 323 = 17*19
f(7) = 367 = 367
f(8) = 409 = 409
f(9) = 449 = 449
f(10) = 487 = 487
f(11) = 523 = 523
f(12) = 557 = 557
f(13) = 589 = 19*31
f(14) = 619 = 619
f(15) = 647 = 647
f(16) = 673 = 673
f(17) = 697 = 17*41
f(18) = 719 = 719
f(19) = 739 = 739
f(20) = 757 = 757
f(21) = 773 = 773
f(22) = 787 = 787
f(23) = 799 = 17*47
f(24) = 809 = 809
f(25) = 817 = 19*43
f(26) = 823 = 823
f(27) = 827 = 827
f(28) = 829 = 829
f(29) = 829 = 829
f(30) = 827 = 827
f(31) = 823 = 823
f(32) = 817 = 19*43
f(33) = 809 = 809
f(34) = 799 = 17*47
f(35) = 787 = 787
f(36) = 773 = 773
f(37) = 757 = 757
f(38) = 739 = 739
f(39) = 719 = 719
f(40) = 697 = 17*41
f(41) = 673 = 673
f(42) = 647 = 647
f(43) = 619 = 619
f(44) = 589 = 19*31
f(45) = 557 = 557
f(46) = 523 = 523
f(47) = 487 = 487
f(48) = 449 = 449
f(49) = 409 = 409
f(50) = 367 = 367
f(51) = 323 = 17*19
f(52) = 277 = 277
f(53) = 229 = 229
f(54) = 179 = 179
f(55) = 127 = 127
f(56) = 73 = 73
f(57) = 17 = 17
f(58) = 41 = 41
f(59) = 101 = 101
f(60) = 163 = 163
f(61) = 227 = 227
f(62) = 293 = 293
f(63) = 361 = 19*19
f(64) = 431 = 431
f(65) = 503 = 503
f(66) = 577 = 577
f(67) = 653 = 653
f(68) = 731 = 17*43
f(69) = 811 = 811
f(70) = 893 = 19*47
f(71) = 977 = 977
f(72) = 1063 = 1063
f(73) = 1151 = 1151
f(74) = 1241 = 17*73
f(75) = 1333 = 31*43
f(76) = 1427 = 1427
f(77) = 1523 = 1523
f(78) = 1621 = 1621
f(79) = 1721 = 1721
f(80) = 1823 = 1823
f(81) = 1927 = 41*47
f(82) = 2033 = 19*107
f(83) = 2141 = 2141
f(84) = 2251 = 2251
f(85) = 2363 = 17*139
f(86) = 2477 = 2477
f(87) = 2593 = 2593
f(88) = 2711 = 2711
f(89) = 2831 = 19*149
f(90) = 2953 = 2953
f(91) = 3077 = 17*181
f(92) = 3203 = 3203
f(93) = 3331 = 3331
f(94) = 3461 = 3461
f(95) = 3593 = 3593
f(96) = 3727 = 3727
f(97) = 3863 = 3863
f(98) = 4001 = 4001
f(99) = 4141 = 41*101
f(100) = 4283 = 4283

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-57x-17

f(0)=17
f(1)=73
f(2)=127
f(3)=179
f(4)=229
f(5)=277
f(6)=19
f(7)=367
f(8)=409
f(9)=449
f(10)=487
f(11)=523
f(12)=557
f(13)=31
f(14)=619
f(15)=647
f(16)=673
f(17)=41
f(18)=719
f(19)=739
f(20)=757
f(21)=773
f(22)=787
f(23)=47
f(24)=809
f(25)=43
f(26)=823
f(27)=827
f(28)=829
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=101
f(60)=163
f(61)=227
f(62)=293
f(63)=1
f(64)=431
f(65)=503
f(66)=577
f(67)=653
f(68)=1
f(69)=811
f(70)=1
f(71)=977
f(72)=1063
f(73)=1151
f(74)=1
f(75)=1
f(76)=1427
f(77)=1523
f(78)=1621
f(79)=1721
f(80)=1823
f(81)=1
f(82)=107
f(83)=2141
f(84)=2251
f(85)=139
f(86)=2477
f(87)=2593
f(88)=2711
f(89)=149
f(90)=2953
f(91)=181
f(92)=3203
f(93)=3331
f(94)=3461
f(95)=3593
f(96)=3727
f(97)=3863
f(98)=4001
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-57x-17 could be written as f(y)= y^2-829.25 with x=y+28.5

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-28.5
f'(x)>2x-58 with x > 29

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, 73, 127, 179, 229, 277, 19, 367, 409, 449, 487, 523, 557, 31, 619, 647, 673, 41, 719, 739, 757, 773, 787, 47, 809, 43, 823, 827, 829, 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, 101, 163, 227, 293, 1, 431, 503, 577, 653, 1, 811, 1, 977, 1063, 1151, 1, 1, 1427, 1523, 1621, 1721, 1823, 1, 107, 2141, 2251, 139, 2477, 2593, 2711, 149, 2953, 181, 3203, 3331, 3461, 3593, 3727, 3863, 4001, 1, 4283, 233, 269, 4721, 4871, 5023, 167, 5333, 1, 5651, 5813, 1, 6143, 6311, 6481, 6653, 6827, 1, 1, 433, 397, 7727, 193, 8101, 8291, 499, 8677, 467, 1, 1, 9473, 9677, 9883, 10091, 10301, 10513, 631, 353, 11161, 599, 283, 11827, 709, 12281, 12511, 12743, 683, 1, 13451, 13691, 13933, 14177, 14423, 863, 347, 15173, 15427, 15683, 839, 953, 1, 389, 16993, 421, 373, 937, 18077, 18353, 601, 18911, 1129, 19477, 19763, 20051, 20341, 439, 1231, 1117, 21521, 21821, 22123, 547, 1, 23041, 1229, 23663, 23977, 1429, 24611, 1, 25253, 25577, 25903, 1543, 26561, 26893, 1433, 641, 27901, 911, 1, 28927, 401, 1559, 1, 30323, 30677, 31033, 31391, 31751, 1889, 691, 32843, 33211, 33581, 1787, 34327, 34703, 35081, 35461, 491, 2131, 1, 1, 1, 37783, 38177, 2269, 38971, 39371, 1283, 40177, 40583, 1, 2179, 41813, 42227, 42643, 1, 43481, 1021, 2333, 44753, 45181, 2683, 1123, 46477, 1091, 47351, 47791, 1, 48677, 49123, 2609, 50021, 2969, 1, 51383, 1103, 52301, 2777, 1, 53693, 1321, 54631, 55103, 1, 56053, 56531, 1213, 57493, 57977, 1, 1, 59441, 821, 60427, 60923, 3613, 3259, 62423, 62927, 1, 1487, 64451, 1, 1597, 65993, 1, 3943, 1571, 3583, 2213, 947, 69661, 4129, 661, 71263, 3779, 72341, 72883, 727, 73973, 74521, 1831, 1609, 4481, 76733, 77291, 613, 4127, 78977, 4679, 80111, 80681, 1, 1741, 4337, 82981, 83561, 84143, 1, 85313, 1, 86491, 87083, 2039, 2153, 1, 1, 90073, 90677, 91283, 2137, 1, 93113, 4933, 94343, 94961, 95581, 5659, 96827, 97453, 98081, 98711, 2423, 5881, 100613, 1, 101891, 102533, 103177, 1, 104471, 3391, 1, 106427, 6299, 107741, 108401, 109063, 1, 1093, 1, 111731, 112403, 1549, 5987, 2791, 2677, 115793, 1, 117163, 117851, 1, 119233, 2789, 120623, 121321, 122021, 7219, 123427, 124133, 983, 125551, 4073, 1, 857, 128411, 929, 129853, 7681, 131303, 6949, 132761, 133493, 134227, 1, 135701, 2903, 137183, 137927, 1373, 1303, 140171, 7417, 141677, 142433, 8423, 3511, 3079, 145477, 1, 147011, 8693, 997, 4817, 1, 150881, 3527, 152443, 2099, 1, 1, 1, 9199, 157177, 3853, 158771, 159571, 160373, 1, 161983, 162791, 163601, 164413, 1301, 166043, 166861, 2297, 1009, 169327, 10009, 8999, 171811, 172643, 3691, 5623, 10303, 175991, 1, 177677, 1069, 991, 180221, 4211, 181927, 3889, 1, 10853, 185363, 186227, 1, 1861, 188831, 11159, 190577, 191453, 4691, 10169, 194093, 194977, 195863, 196751, 197641, 198533, 11731, 200323, 6491, 202121, 203023, 10733, 12049, 1, 206651, 207563, 1279, 209393, 11069, 211231, 1, 5197, 214003, 1, 2957, 1, 217727, 1, 5107, 12973, 11657, 1, 1607, 2221, 4793, 5261, 227177, 12007, 1187, 1, 1, 1013, 3191, 233911, 1217, 1039, 13931, 1, 238781, 12619, 240743, 241727, 242713, 243701, 244691, 245683, 12983, 1, 1789, 249671, 250673, 251677, 6163, 14923, 1, 255713, 1723, 1, 13619, 259781, 1, 6089, 262853, 263881, 15583, 13997, 266977, 268013, 6257, 1657, 1, 5791, 1, 274271, 275321, 276373, 277427, 14657, 279541, 1, 281663, 16631, 283793, 2243, 1, 287003, 288077, 1, 1, 1, 292393, 9467, 294563, 7211, 296741, 297833, 15733, 300023, 17713, 302221, 303323, 1, 305533, 16139, 1, 4231, 309977, 6619, 312211, 313331, 314453, 1, 316703, 317831, 1, 1, 321227, 1, 6883, 324641, 325783, 19231, 1, 1, 3271, 331523, 1201, 1999, 334991, 336151, 337313, 338477, 19979, 340811, 1, 343153, 344327, 3229, 20393, 2083, 349043, 18433, 351413, 352601, 1, 354983, 1, 8311, 358571, 21163, 360973, 362177, 8863, 1, 1, 21589, 368227, 2909, 370661, 1, 1, 2693, 375553, 1, 378011, 8069, 22381, 381713, 1307, 2357, 385433, 386677, 1, 389171, 390421, 1, 392927, 1, 5417, 20879, 397963, 399227, 1, 23633, 13001, 4003, 405577, 2927, 408131, 24083, 9551, 21683, 413263, 10111, 1, 417133, 418427, 1, 22159, 422321, 24919, 9041, 426233, 427541, 428851, 2887, 1493, 432793, 434111, 1, 1, 1913, 9349, 440731, 442061, 14303, 10847, 1381, 447401, 448741, 450083, 2339, 452773, 26713, 455471, 4523, 1619, 2381, 460891, 24329, 463613, 1, 2861, 1, 1, 470453, 1, 473203, 474581, 2659, 1, 478727, 480113, 481501, 4513, 484283, 15667, 487073, 1, 489871, 491273, 1, 494083, 495491, 496901, 26227, 1, 1, 1, 10723, 2207, 1, 2239, 509681, 511111, 512543, 513977, 27127, 30403, 518291, 519733, 521177, 522623, 524071, 1627, 12853, 12289, 17093, 1, 532801, 1, 535727, 1997, 12527, 4253, 31859, 1, 1, 546031, 1, 3067, 32381, 551963, 29129, 3323, 11839, 557927, 1, 13681, 562421, 4057, 565427, 33349, 568441, 1553, 1583, 1, 574493, 1, 577531, 579053, 580577, 30637, 583631, 1, 586693, 14347, 589763, 591301, 1, 2551, 595927, 597473, 599021, 1, 35419, 1, 605233, 606791, 1, 609913, 32183, 3761, 614611, 616181, 3413, 2143, 4889, 622481, 1, 625643, 627227, 1, 33179, 631991, 633583, 1, 636773, 638371, 1, 33767, 6011, 644783, 1, 4349, 649613, 2351, 15923, 1, 38593, 657703, 659327, 1, 1877, 664211, 665843, 667477, 669113, 1933, 1, 1, 1, 677323, 678971, 1, 1, 40231, 1, 1, 9437, 16843, 36433, 4657, 695561, 1, 698903, 700577, 1, 37049, 15013, 707293, 3917, 710663, 41903, 2437, 4391, 717427, 9851, 17581, 722521, 1, 23417, 727633, 2633, 43003, 17041, 734477, 38747, 3167, 739631, 43609, 5851, 17321, 746531, 3877, 749993, 751727, 753463, 4219, 39839, 3931, 1, 1, 763921, 3373, 767423, 40483, 1, 772691, 2879, 2081, 777977, 25153, 781511, 1973, 785053, 16741, 788603, 2447, 1, 3467, 795727, 1, 799301, 47123, 42257, 1867, 17159, 18797, 810071, 1, 813677, 11171, 817291, 819101, 1, 822727, 43397, 7723, 2129, 830003, 1, 20333, 26951, 1, 6037, 1873, 842813, 844651, 4729, 11621, 850177, 50119, 5113, 855721, 857573, 45233, 1, 50773, 865001, 21143, 868727, 870593, 1, 874331, 876203, 878077, 879953, 8731, 1, 1, 20639, 889363, 891251, 1, 1, 896927, 898823, 20947, 2557, 904523, 906427, 47807, 1, 1, 2111, 53881, 917893, 919811, 3257, 923653, 925577, 54559, 929431, 49019, 933293, 5167, 1, 1, 941041,

6. Sequence of the polynom (only primes)

17, 73, 127, 179, 229, 277, 19, 367, 409, 449, 487, 523, 557, 31, 619, 647, 673, 41, 719, 739, 757, 773, 787, 47, 809, 43, 823, 827, 829, 101, 163, 227, 293, 431, 503, 577, 653, 811, 977, 1063, 1151, 1427, 1523, 1621, 1721, 1823, 107, 2141, 2251, 139, 2477, 2593, 2711, 149, 2953, 181, 3203, 3331, 3461, 3593, 3727, 3863, 4001, 4283, 233, 269, 4721, 4871, 5023, 167, 5333, 5651, 5813, 6143, 6311, 6481, 6653, 6827, 433, 397, 7727, 193, 8101, 8291, 499, 8677, 467, 9473, 9677, 9883, 10091, 10301, 10513, 631, 353, 11161, 599, 283, 11827, 709, 12281, 12511, 12743, 683, 13451, 13691, 13933, 14177, 14423, 863, 347, 15173, 15427, 15683, 839, 953, 389, 16993, 421, 373, 937, 18077, 18353, 601, 18911, 1129, 19477, 19763, 20051, 20341, 439, 1231, 1117, 21521, 21821, 22123, 547, 23041, 1229, 23663, 23977, 1429, 24611, 25253, 25577, 25903, 1543, 26561, 26893, 1433, 641, 27901, 911, 28927, 401, 1559, 30323, 30677, 31033, 31391, 31751, 1889, 691, 32843, 33211, 33581, 1787, 34327, 34703, 35081, 35461, 491, 2131, 37783, 38177, 2269, 38971, 39371, 1283, 40177, 40583, 2179, 41813, 42227, 42643, 43481, 1021, 2333, 44753, 45181, 2683, 1123, 46477, 1091, 47351, 47791, 48677, 49123, 2609, 50021, 2969, 51383, 1103, 52301, 2777, 53693, 1321, 54631, 55103, 56053, 56531, 1213, 57493, 57977, 59441, 821, 60427, 60923, 3613, 3259, 62423, 62927, 1487, 64451, 1597, 65993, 3943, 1571, 3583, 2213, 947, 69661, 4129, 661, 71263, 3779, 72341, 72883, 727, 73973, 74521, 1831, 1609, 4481, 76733, 77291, 613, 4127, 78977, 4679, 80111, 80681, 1741, 4337, 82981, 83561, 84143, 85313, 86491, 87083, 2039, 2153, 90073, 90677, 91283, 2137, 93113, 4933, 94343, 94961, 95581, 5659, 96827, 97453, 98081, 98711, 2423, 5881, 100613, 101891, 102533, 103177, 104471, 3391, 106427, 6299, 107741, 108401, 109063, 1093, 111731, 112403, 1549, 5987, 2791, 2677, 115793, 117163, 117851, 119233, 2789, 120623, 121321, 122021, 7219, 123427, 124133, 983, 125551, 4073, 857, 128411, 929, 129853, 7681, 131303, 6949, 132761, 133493, 134227, 135701, 2903, 137183, 137927, 1373, 1303, 140171, 7417, 141677, 142433, 8423, 3511, 3079, 145477, 147011, 8693, 997, 4817, 150881, 3527, 152443, 2099, 9199, 157177, 3853, 158771, 159571, 160373, 161983, 162791, 163601, 164413, 1301, 166043, 166861, 2297, 1009, 169327, 10009, 8999, 171811, 172643, 3691, 5623, 10303, 175991, 177677, 1069, 991, 180221, 4211, 181927, 3889, 10853, 185363, 186227, 1861, 188831, 11159, 190577, 191453, 4691, 10169, 194093, 194977, 195863, 196751, 197641, 198533, 11731, 200323, 6491, 202121, 203023, 10733, 12049, 206651, 207563, 1279, 209393, 11069, 211231, 5197, 214003, 2957, 217727, 5107, 12973, 11657, 1607, 2221, 4793, 5261, 227177, 12007, 1187, 1013, 3191, 233911, 1217, 1039, 13931, 238781, 12619, 240743, 241727, 242713, 243701, 244691, 245683, 12983, 1789, 249671, 250673, 251677, 6163, 14923, 255713, 1723, 13619, 259781, 6089, 262853, 263881, 15583, 13997, 266977, 268013, 6257, 1657, 5791, 274271, 275321, 276373, 277427, 14657, 279541, 281663, 16631, 283793, 2243, 287003, 288077, 292393, 9467, 294563, 7211, 296741, 297833, 15733, 300023, 17713, 302221, 303323, 305533, 16139, 4231, 309977, 6619, 312211, 313331, 314453, 316703, 317831, 321227, 6883, 324641, 325783, 19231, 3271, 331523, 1201, 1999, 334991, 336151, 337313, 338477, 19979, 340811, 343153, 344327, 3229, 20393, 2083, 349043, 18433, 351413, 352601, 354983, 8311, 358571, 21163, 360973, 362177, 8863, 21589, 368227, 2909, 370661, 2693, 375553, 378011, 8069, 22381, 381713, 1307, 2357, 385433, 386677, 389171, 390421, 392927, 5417, 20879, 397963, 399227, 23633, 13001, 4003, 405577, 2927, 408131, 24083, 9551, 21683, 413263, 10111, 417133, 418427, 22159, 422321, 24919, 9041, 426233, 427541, 428851, 2887, 1493, 432793, 434111, 1913, 9349, 440731, 442061, 14303, 10847, 1381, 447401, 448741, 450083, 2339, 452773, 26713, 455471, 4523, 1619, 2381, 460891, 24329, 463613, 2861, 470453, 473203, 474581, 2659, 478727, 480113, 481501, 4513, 484283, 15667, 487073, 489871, 491273, 494083, 495491, 496901, 26227, 10723, 2207, 2239, 509681, 511111, 512543, 513977, 27127, 30403, 518291, 519733, 521177, 522623, 524071, 1627, 12853, 12289, 17093, 532801, 535727, 1997, 12527, 4253, 31859, 546031, 3067, 32381, 551963, 29129, 3323, 11839, 557927, 13681, 562421, 4057, 565427, 33349, 568441, 1553, 1583, 574493, 577531, 579053, 580577, 30637, 583631, 586693, 14347, 589763, 591301, 2551, 595927, 597473, 599021, 35419, 605233, 606791, 609913, 32183, 3761, 614611, 616181, 3413, 2143, 4889, 622481, 625643, 627227, 33179, 631991, 633583, 636773, 638371, 33767, 6011, 644783, 4349, 649613, 2351, 15923, 38593, 657703, 659327, 1877, 664211, 665843, 667477, 669113, 1933, 677323, 678971, 40231, 9437, 16843, 36433, 4657, 695561, 698903, 700577, 37049, 15013, 707293, 3917, 710663, 41903, 2437, 4391, 717427, 9851, 17581, 722521, 23417, 727633, 2633, 43003, 17041, 734477, 38747, 3167, 739631, 43609, 5851, 17321, 746531, 3877, 749993, 751727, 753463, 4219, 39839, 3931, 763921, 3373, 767423, 40483, 772691, 2879, 2081, 777977, 25153, 781511, 1973, 785053, 16741, 788603, 2447, 3467, 795727, 799301, 47123, 42257, 1867, 17159, 18797, 810071, 813677, 11171, 817291, 819101, 822727, 43397, 7723, 2129, 830003, 20333, 26951, 6037, 1873, 842813, 844651, 4729, 11621, 850177, 50119, 5113, 855721, 857573, 45233, 50773, 865001, 21143, 868727, 870593, 874331, 876203, 878077, 879953, 8731, 20639, 889363, 891251, 896927, 898823, 20947, 2557, 904523, 906427, 47807, 2111, 53881, 917893, 919811, 3257, 923653, 925577, 54559, 929431, 49019, 933293, 5167, 941041,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-57x-17 and
the reducible primes which appear as divisor for the first time
p | x^2-57x-17 and p < x^2-57x-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)
110111011.1000001.0000001.1000000.0000000.0000000.000000
2100595630.5900000.5600000.5900005.3636365.6000003.000000
31.0007964693270.7960000.4690000.79600013.4915268.375000109.000000
410.0007.9783.3584.6200.7978000.3358000.79780010.0226147.15991414.128440
5100.00078.09326.01352.0800.7809300.2601300.7809309.7885447.74657511.272727
61.000.000764.764213.307551.4570.7647640.2133070.7647649.7929918.20001510.588652
710.000.0007.540.6051.803.8135.736.7920.7540610.1803810.7540619.8600428.45641710.402972
8100.000.00074.620.52615.626.74158.993.7850.7462050.1562670.7462059.8958278.66317210.283410
91.000.000.000740.111.217137.891.063602.220.1540.7401110.1378910.7401119.9183338.82404410.208197
1010.000.000.0007.352.683.3901.234.096.8666.118.586.5240.7352680.1234100.7352689.9345668.94979710.160049


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
389811.1250001.0000000.1250001.8000001.600000inf
416171611.0625001.0000000.0625001.8888892.0000001.000000
532282530.8750000.7812500.0937501.6470591.5625003.000000
664322930.5000000.4531250.0468751.1428571.1600001.000000
7128807190.6250000.5546880.0703122.5000002.4482763.000000
8256193142510.7539060.5546880.1992192.4125002.0000005.666667
95124082611470.7968750.5097660.2871092.1139901.8380282.882353
101.0248164763400.7968750.4648440.3320312.0000001.8237552.312925
112.0481.6358637720.7983400.4213870.3769532.0036761.8130252.270588
124.0963.2961.5471.7490.8046880.3776860.4270022.0159021.7925842.265544
138.1926.5472.8513.6960.7991940.3480220.4511721.9863471.8429222.113208
1416.38413.0245.1827.8420.7949220.3162840.4786381.9893081.8176082.121753
1532.76825.8849.60616.2780.7899170.2931520.4967651.9874081.8537242.075746
1665.53651.37117.83633.5350.7838590.2721560.5117031.9846621.8567562.060143
17131.072102.03533.27068.7650.7784650.2538300.5246351.9862371.8653292.050544
18262.144202.68662.521140.1650.7731860.2384990.5346871.9864361.8792002.038319
19524.288402.918117.934284.9840.7685050.2249410.5435641.9878931.8863102.033204
201.048.576801.697222.871578.8260.7645580.2125460.5520111.9897271.8897942.031082
212.097.1521.596.024422.4131.173.6110.7610440.2014220.5596211.9908071.8953252.027571
224.194.3043.178.504803.1032.375.4010.7578140.1914750.5663401.9915141.9012272.024010
238.388.6086.331.7391.530.2924.801.4470.7548020.1824250.5723771.9920501.9054742.021321
2416.777.21612.619.4922.924.0469.695.4460.7521800.1742870.5778941.9930531.9107762.019276
2533.554.43225.155.0045.597.27519.557.7290.7496780.1668120.5828661.9933451.9142232.017208
2667.108.86450.159.34010.733.82339.425.5170.7474320.1599460.5874861.9940101.9176872.015854
27134.217.728100.036.20320.623.98079.412.2230.7453280.1536610.5916671.9943681.9214012.014234
28268.435.456199.557.78139.681.465159.876.3160.7434110.1478250.5955861.9948561.9240452.013246
29536.870.912398.152.97376.458.863321.694.1100.7416180.1424160.5992021.9951761.9268162.012144
301.073.741.824794.507.440147.527.383646.980.0570.7399430.1373960.6025471.9954831.9295002.011165
312.147.483.6481.585.663.623285.030.6681.300.632.9550.7383820.1327280.6056541.9957821.9320532.010314
324.294.967.2963.165.066.462551.298.7402.613.767.7220.7369240.1283590.6085651.9960521.9341742.009612
338.589.934.5926.318.373.9191.067.480.1315.250.893.7880.7355560.1242710.6112841.9962851.9363012.008937
3417.179.869.18412.614.701.6802.069.086.14110.545.615.5390.7342720.1204370.6138361.9965111.9382902.008347


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
123212001
245322111
388623122
416161155344
532251696676
6642917126887
712871304116181819
8256142598334373734
95122619716462706762
101.024476171305116125122113
112.048863295568215214213221
124.0961.5475171.030386380384397
138.1922.8519601.891728715693715
1416.3845.1821.7353.4471.3171.3101.2731.282
1532.7689.6063.1916.4152.4502.3942.3682.394
1665.53617.8365.94411.8924.5064.4354.4474.448
17131.07233.27011.04822.2228.3608.3118.2858.314
18262.14462.52120.84241.67915.73615.61715.59115.577
19524.288117.93439.42478.51029.41229.59029.52329.409
201.048.576222.87174.592148.27955.58855.94955.74255.592
212.097.152422.413141.055281.358105.405105.813105.796105.399
224.194.304803.103268.077535.026200.378201.011201.055200.659
238.388.6081.530.292510.5231.019.769382.092382.699382.578382.923
2416.777.2162.924.046975.3151.948.731730.649731.178730.535731.684
2533.554.4325.597.2751.866.4713.730.8041.399.2531.398.6941.399.8151.399.513
2667.108.86410.733.8233.577.6827.156.1412.682.2772.684.0192.684.1142.683.413
27134.217.72820.623.9806.873.34213.750.6385.155.2225.155.5065.157.6445.155.608
28268.435.45639.681.46513.225.11426.456.3519.920.7819.919.3349.921.6629.919.688
29536.870.91276.458.86325.482.82550.976.03819.115.51919.115.98819.116.07819.111.278
301.073.741.824147.527.38349.174.49098.352.89336.886.29436.880.02236.883.86236.877.205
312.147.483.648285.030.66895.009.577190.021.09171.265.57871.256.57971.261.21271.247.299
324.294.967.296551.298.740183.767.534367.531.206137.838.195137.825.776137.825.528137.809.241
338.589.934.5921.067.480.131355.834.101711.646.030266.871.410266.882.407266.863.819266.862.495
3417.179.869.1842.069.086.141689.691.0801.379.395.061517.285.486517.274.300517.270.126517.256.229


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
381100100
4161100100
5323121101
6643121101
71289453321
825651252613161210
9512147747336324039
101.02434016717380868292
112.048772375397171198204199
124.0961.749850899424449434442
138.1923.6961.8071.889914933907942
1416.3847.8423.9363.9061.9321.9681.9681.974
1532.76816.2788.1538.1254.0434.0384.0924.105
1665.53633.53516.77416.7618.4058.3128.3718.447
17131.07268.76534.41834.34717.18317.21417.08417.284
18262.144140.16570.12470.04135.00735.11335.01535.030
19524.288284.984142.668142.31671.20071.40671.26971.109
201.048.576578.826289.989288.837144.655144.951144.581144.639
212.097.1521.173.611588.218585.393293.533293.518293.246293.314
224.194.3042.375.4011.190.2461.185.155594.250594.435593.443593.273
238.388.6084.801.4472.405.4212.396.0261.200.2871.201.0981.200.2711.199.791
2416.777.2169.695.4464.854.4904.840.9562.424.6872.423.5762.423.3192.423.864
2533.554.43219.557.7299.792.9029.764.8274.890.0224.888.9954.886.9394.891.773
2667.108.86439.425.51719.739.42019.686.0979.855.5529.857.9689.854.5269.857.471
27134.217.72879.412.22339.761.43139.650.79219.852.80919.854.42819.850.86719.854.119
28268.435.456159.876.31680.041.35979.834.95739.969.71439.969.50139.967.46139.969.640
29536.870.912321.694.110161.043.557160.650.55380.421.38980.416.48980.420.26680.435.966
301.073.741.824646.980.057323.869.038323.111.019161.744.155161.737.845161.743.831161.754.226
312.147.483.6481.300.632.955651.025.850649.607.105325.153.601325.153.619325.159.859325.165.876
324.294.967.2962.613.767.7221.308.261.6131.305.506.109653.444.336653.437.132653.432.780653.453.474
338.589.934.5925.250.893.7882.628.054.0132.622.839.7751.312.689.0361.312.743.8721.312.718.5131.312.742.367
3417.179.869.18410.545.615.5395.277.806.4005.267.809.1392.636.340.0992.636.458.8892.636.423.0592.636.393.492


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 73, 127, 179, 229, 277, 19, 367, 409, 449, 487, 523, 557, 31, 619, 647, 673, 41, 719, 739,
Found in Database : 17, 73, 127, 179, 229, 277, 19, 367, 409, 449, 487, 523, 557, 31, 619, 647, 673, 41, 719, 739, 757, 773, 787, 47, 809, 43, 823, 827, 829,
Found in Database : 17, 19, 31, 41, 43, 47, 73, 101, 107, 127, 139, 149,