Inhaltsverzeichnis

Development of
Algorithmic Constructions

16:24:28
Deutsch
20.Apr 2024

Polynom = x^2-41x+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) = 23 = 23
f(2) = 61 = 61
f(3) = 97 = 97
f(4) = 131 = 131
f(5) = 163 = 163
f(6) = 193 = 193
f(7) = 221 = 13*17
f(8) = 247 = 13*19
f(9) = 271 = 271
f(10) = 293 = 293
f(11) = 313 = 313
f(12) = 331 = 331
f(13) = 347 = 347
f(14) = 361 = 19*19
f(15) = 373 = 373
f(16) = 383 = 383
f(17) = 391 = 17*23
f(18) = 397 = 397
f(19) = 401 = 401
f(20) = 403 = 13*31
f(21) = 403 = 13*31
f(22) = 401 = 401
f(23) = 397 = 397
f(24) = 391 = 17*23
f(25) = 383 = 383
f(26) = 373 = 373
f(27) = 361 = 19*19
f(28) = 347 = 347
f(29) = 331 = 331
f(30) = 313 = 313
f(31) = 293 = 293
f(32) = 271 = 271
f(33) = 247 = 13*19
f(34) = 221 = 13*17
f(35) = 193 = 193
f(36) = 163 = 163
f(37) = 131 = 131
f(38) = 97 = 97
f(39) = 61 = 61
f(40) = 23 = 23
f(41) = 17 = 17
f(42) = 59 = 59
f(43) = 103 = 103
f(44) = 149 = 149
f(45) = 197 = 197
f(46) = 247 = 13*19
f(47) = 299 = 13*23
f(48) = 353 = 353
f(49) = 409 = 409
f(50) = 467 = 467
f(51) = 527 = 17*31
f(52) = 589 = 19*31
f(53) = 653 = 653
f(54) = 719 = 719
f(55) = 787 = 787
f(56) = 857 = 857
f(57) = 929 = 929
f(58) = 1003 = 17*59
f(59) = 1079 = 13*83
f(60) = 1157 = 13*89
f(61) = 1237 = 1237
f(62) = 1319 = 1319
f(63) = 1403 = 23*61
f(64) = 1489 = 1489
f(65) = 1577 = 19*83
f(66) = 1667 = 1667
f(67) = 1759 = 1759
f(68) = 1853 = 17*109
f(69) = 1949 = 1949
f(70) = 2047 = 23*89
f(71) = 2147 = 19*113
f(72) = 2249 = 13*173
f(73) = 2353 = 13*181
f(74) = 2459 = 2459
f(75) = 2567 = 17*151
f(76) = 2677 = 2677
f(77) = 2789 = 2789
f(78) = 2903 = 2903
f(79) = 3019 = 3019
f(80) = 3137 = 3137
f(81) = 3257 = 3257
f(82) = 3379 = 31*109
f(83) = 3503 = 31*113
f(84) = 3629 = 19*191
f(85) = 3757 = 13*17*17
f(86) = 3887 = 13*13*23
f(87) = 4019 = 4019
f(88) = 4153 = 4153
f(89) = 4289 = 4289
f(90) = 4427 = 19*233
f(91) = 4567 = 4567
f(92) = 4709 = 17*277
f(93) = 4853 = 23*211
f(94) = 4999 = 4999
f(95) = 5147 = 5147
f(96) = 5297 = 5297
f(97) = 5449 = 5449
f(98) = 5603 = 13*431
f(99) = 5759 = 13*443
f(100) = 5917 = 61*97

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

f(0)=17
f(1)=23
f(2)=61
f(3)=97
f(4)=131
f(5)=163
f(6)=193
f(7)=13
f(8)=19
f(9)=271
f(10)=293
f(11)=313
f(12)=331
f(13)=347
f(14)=1
f(15)=373
f(16)=383
f(17)=1
f(18)=397
f(19)=401
f(20)=31
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
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)=59
f(43)=103
f(44)=149
f(45)=197
f(46)=1
f(47)=1
f(48)=353
f(49)=409
f(50)=467
f(51)=1
f(52)=1
f(53)=653
f(54)=719
f(55)=787
f(56)=857
f(57)=929
f(58)=1
f(59)=83
f(60)=89
f(61)=1237
f(62)=1319
f(63)=1
f(64)=1489
f(65)=1
f(66)=1667
f(67)=1759
f(68)=109
f(69)=1949
f(70)=1
f(71)=113
f(72)=173
f(73)=181
f(74)=2459
f(75)=151
f(76)=2677
f(77)=2789
f(78)=2903
f(79)=3019
f(80)=3137
f(81)=3257
f(82)=1
f(83)=1
f(84)=191
f(85)=1
f(86)=1
f(87)=4019
f(88)=4153
f(89)=4289
f(90)=233
f(91)=4567
f(92)=277
f(93)=211
f(94)=4999
f(95)=5147
f(96)=5297
f(97)=5449
f(98)=431
f(99)=443

b) Substitution of the polynom
The polynom f(x)=x^2-41x+17 could be written as f(y)= y^2-403.25 with x=y+20.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-20.5
f'(x)>2x-42 with x > 20

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, 23, 61, 97, 131, 163, 193, 13, 19, 271, 293, 313, 331, 347, 1, 373, 383, 1, 397, 401, 31, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 59, 103, 149, 197, 1, 1, 353, 409, 467, 1, 1, 653, 719, 787, 857, 929, 1, 83, 89, 1237, 1319, 1, 1489, 1, 1667, 1759, 109, 1949, 1, 113, 173, 181, 2459, 151, 2677, 2789, 2903, 3019, 3137, 3257, 1, 1, 191, 1, 1, 4019, 4153, 4289, 233, 4567, 277, 211, 4999, 5147, 5297, 5449, 431, 443, 1, 1, 367, 337, 6569, 6737, 6907, 7079, 7253, 1, 7607, 599, 613, 263, 269, 8527, 379, 1, 9103, 547, 9497, 9697, 521, 10103, 1, 809, 631, 10939, 587, 11369, 11587, 11807, 523, 12253, 12479, 1, 761, 1013, 1031, 593, 13877, 743, 1, 859, 479, 487, 1, 821, 1, 1, 1259, 1279, 16889, 1009, 17419, 769, 17957, 18229, 18503, 1, 1, 317, 853, 1531, 1553, 20477, 1093, 21059, 1, 21649, 1291, 22247, 22549, 22853, 23159, 757, 1, 1, 1061, 1301, 25037, 25357, 25679, 26003, 1, 1, 26987, 1607, 27653, 2153, 2179, 1, 29009, 1, 1747, 30047, 1, 1, 1637, 1, 31817, 1399, 2503, 2531, 1, 33637, 1097, 1109, 1511, 35129, 35507, 2111, 36269, 36653, 37039, 2879, 2909, 2011, 38603, 661, 39397, 2341, 659, 2137, 1783, 499, 1, 42239, 1, 3313, 43487, 1, 457, 44753, 45179, 773, 2423, 1499, 1, 47339, 47777, 3709, 1, 49103, 49549, 1, 827, 2213, 577, 503, 52267, 52727, 53189, 53653, 1, 1, 55057, 55529, 56003, 56479, 56957, 3023, 3407, 58403, 58889, 59377, 1, 4643, 1, 1979, 2689, 62347, 3697, 63353, 3361, 1, 64877, 2843, 1117, 3907, 1, 5189, 67979, 1123, 69029, 69557, 643, 70619, 71153, 4217, 72227, 72767, 73309, 1, 1, 1, 4441, 673, 76603, 1, 1, 78277, 78839, 1, 1, 80537, 1, 1, 991, 733, 83407, 83987, 4451, 5009, 1033, 1, 3779, 87509, 4637, 6823, 6869, 89897, 90499, 1, 1, 92317, 92927, 1051, 94153, 977, 1, 1, 7433, 7481, 97879, 98507, 99137, 1, 100403, 1, 5981, 102317, 691, 1, 1709, 8069, 1, 6247, 106853, 107509, 5693, 108827, 1063, 1867, 110819, 111487, 5903, 6637, 8731, 8783, 1, 3727, 1, 116903, 6917, 118277, 118967, 119659, 1973, 1, 1, 9419, 9473, 123853, 1, 1, 1, 839, 127403, 128119, 128837, 7621, 130279, 1, 10133, 1, 133187, 133919, 1, 135389, 1, 1, 1, 4463, 7321, 1283, 2383, 1, 1, 1, 143617, 1, 145139, 145903, 146669, 2417, 148207, 7841, 1, 1381, 1, 11699, 2591, 8087, 154439, 1, 1753, 1, 911, 1049, 1, 829, 1423, 1, 1, 9601, 1, 164839, 165653, 2729, 1277, 7309, 1, 169753, 170579, 947, 13249, 13313, 7561, 887, 1, 176417, 10427, 178103, 1201, 9463, 180647, 181499, 182353, 1, 14159, 9733, 185789, 186653, 1, 1, 189257, 190129, 1, 11287, 192757, 8419, 1151, 15031, 10331, 1, 1, 198959, 199853, 1, 10613, 3433, 203449, 204353, 2473, 15859, 937, 9043, 1, 209819, 2539, 211657, 212579, 1, 9323, 6947, 6977, 217219, 1, 1, 3607, 1483, 221909, 13109, 1373, 1, 225697, 226649, 227603, 228559, 1, 17729, 1, 1, 2141, 2633, 235307, 10273, 12487, 238229, 14071, 1327, 241169, 2351, 1, 1, 7907, 1, 2267, 248099, 249097, 13163, 251099, 1, 253109, 1559, 255127, 1, 1, 1, 1, 260207, 261229, 262253, 1, 2339, 265337, 266369, 267403, 268439, 1091, 20809, 1, 272603, 16097, 274697, 1, 8929, 8963, 278909, 279967, 1, 282089, 1, 21863, 285287, 1229, 3463, 2801, 15241, 290657, 1, 292819, 3541, 294989, 15583, 22859, 22943, 17609, 13063, 1997, 302647, 303749, 5167, 1129, 307067, 13399, 309289, 1, 1, 24049, 1487, 314879, 316003, 16691, 1, 319387, 1627, 5273, 5471, 323927, 1879, 1, 1, 3691, 19391, 1, 17471, 333103, 14533, 335417, 336577, 19867, 17837, 3821, 26249, 26339, 343579, 344753, 11159, 11197, 348287, 1, 3217, 1823, 15349, 1, 1213, 27431, 1619, 3701, 360197, 1, 1, 363809, 365017, 366227, 3371, 368653, 21757, 371087, 2203, 1, 374753, 375979, 19853, 1, 1, 16561, 1453, 1, 1, 385859, 1, 29873, 1303, 1, 392099, 1, 6469, 1699, 397127, 1481, 23509, 21101, 1, 1289, 1, 31231, 3109, 21503, 1, 411119, 1427, 413689, 414977, 1, 417559, 18211, 420149, 1907, 1, 13679, 1, 1, 427967, 429277, 430589, 431903, 1, 25561, 435857, 4507, 1, 1471, 441157, 442487, 26107, 2731, 1, 447827, 1, 1, 5077, 453199, 454547, 35069, 2069, 24137, 1, 461317, 462677, 14969, 15013, 27457, 468137, 1, 1, 472253, 36433, 1, 25073, 477769, 479153, 1, 1, 483317, 1, 486103, 4733, 488897, 1, 1, 1, 1, 1, 2357, 498739, 500153, 6043, 1, 29671, 1, 16363, 1, 39239, 1, 22303, 30259, 515839, 517277, 518717, 3491, 521603, 523049, 524497, 525947, 527399, 2393, 1, 9013, 533227, 1, 23311, 1523, 1669, 540557, 1, 543503, 544979, 1, 1, 3251, 550903, 1, 1, 9413, 556859, 29387, 559849, 561347, 9227, 1, 1, 2297, 43759, 24799, 1697, 2971, 5927, 2081, 577957, 1, 25261, 2957, 584057, 585587, 2377, 45281, 1, 4517, 1549, 2819, 31387, 597899, 1, 19387, 3329, 1, 1, 3593, 46829, 610339, 611903, 613469, 1, 1, 3203, 619753, 10531, 1, 624487, 1, 48281, 1, 630827, 37201, 1597, 635603, 637199, 3919, 1, 1, 1, 1609, 1, 1, 1613, 1, 28403, 4337, 1, 10789, 1, 3823, 663007, 1811, 666269, 667903, 51503, 3037, 672817, 1, 676103, 35671, 1, 681047, 682699, 3583, 686009, 2129, 4229, 2311, 53281, 694319, 1, 11437, 1, 22613, 702679, 704357, 7933, 6263, 37337, 711089, 54829, 54959, 1, 1, 37871, 1, 8123, 4799, 4013, 1, 31729, 7541, 733189, 56531, 56663, 1, 1, 39041, 3191, 1, 746957, 748687, 750419, 1, 1, 755627, 1, 58393, 12473, 762599, 9209, 766097, 1, 33461, 771359, 773117, 2399, 2953, 778403, 60013, 60149, 783707, 41341, 46309, 789029, 2699, 8171, 4159, 1, 34693, 799727, 801517, 1, 3643, 26029, 1, 1, 812299, 2939, 1, 1, 43133, 13921, 823153, 1, 63599, 4903, 1, 832253, 1, 49171, 837737, 1, 5647, 44381, 7753, 846917, 49927, 1, 2851, 44963, 856147, 1, 859853, 2557, 1, 27917, 3001, 869153, 1, 1, 67289, 67433, 46237, 51787, 1, 1, 886019, 887903, 46831, 891677, 893567, 38933, 1, 1, 1, 4679, 10903, 9349, 908759, 8059, 53681, 48131, 1, 918319, 3499, 1, 2293, 1, 1987, 2099, 1, 8263, 935653, 937589, 40849, 941467, 943409, 55609, 947299, 73019, 3851, 953149, 955103, 957059,

6. Sequence of the polynom (only primes)

17, 23, 61, 97, 131, 163, 193, 13, 19, 271, 293, 313, 331, 347, 373, 383, 397, 401, 31, 59, 103, 149, 197, 353, 409, 467, 653, 719, 787, 857, 929, 83, 89, 1237, 1319, 1489, 1667, 1759, 109, 1949, 113, 173, 181, 2459, 151, 2677, 2789, 2903, 3019, 3137, 3257, 191, 4019, 4153, 4289, 233, 4567, 277, 211, 4999, 5147, 5297, 5449, 431, 443, 367, 337, 6569, 6737, 6907, 7079, 7253, 7607, 599, 613, 263, 269, 8527, 379, 9103, 547, 9497, 9697, 521, 10103, 809, 631, 10939, 587, 11369, 11587, 11807, 523, 12253, 12479, 761, 1013, 1031, 593, 13877, 743, 859, 479, 487, 821, 1259, 1279, 16889, 1009, 17419, 769, 17957, 18229, 18503, 317, 853, 1531, 1553, 20477, 1093, 21059, 21649, 1291, 22247, 22549, 22853, 23159, 757, 1061, 1301, 25037, 25357, 25679, 26003, 26987, 1607, 27653, 2153, 2179, 29009, 1747, 30047, 1637, 31817, 1399, 2503, 2531, 33637, 1097, 1109, 1511, 35129, 35507, 2111, 36269, 36653, 37039, 2879, 2909, 2011, 38603, 661, 39397, 2341, 659, 2137, 1783, 499, 42239, 3313, 43487, 457, 44753, 45179, 773, 2423, 1499, 47339, 47777, 3709, 49103, 49549, 827, 2213, 577, 503, 52267, 52727, 53189, 53653, 55057, 55529, 56003, 56479, 56957, 3023, 3407, 58403, 58889, 59377, 4643, 1979, 2689, 62347, 3697, 63353, 3361, 64877, 2843, 1117, 3907, 5189, 67979, 1123, 69029, 69557, 643, 70619, 71153, 4217, 72227, 72767, 73309, 4441, 673, 76603, 78277, 78839, 80537, 991, 733, 83407, 83987, 4451, 5009, 1033, 3779, 87509, 4637, 6823, 6869, 89897, 90499, 92317, 92927, 1051, 94153, 977, 7433, 7481, 97879, 98507, 99137, 100403, 5981, 102317, 691, 1709, 8069, 6247, 106853, 107509, 5693, 108827, 1063, 1867, 110819, 111487, 5903, 6637, 8731, 8783, 3727, 116903, 6917, 118277, 118967, 119659, 1973, 9419, 9473, 123853, 839, 127403, 128119, 128837, 7621, 130279, 10133, 133187, 133919, 135389, 4463, 7321, 1283, 2383, 143617, 145139, 145903, 146669, 2417, 148207, 7841, 1381, 11699, 2591, 8087, 154439, 1753, 911, 1049, 829, 1423, 9601, 164839, 165653, 2729, 1277, 7309, 169753, 170579, 947, 13249, 13313, 7561, 887, 176417, 10427, 178103, 1201, 9463, 180647, 181499, 182353, 14159, 9733, 185789, 186653, 189257, 190129, 11287, 192757, 8419, 1151, 15031, 10331, 198959, 199853, 10613, 3433, 203449, 204353, 2473, 15859, 937, 9043, 209819, 2539, 211657, 212579, 9323, 6947, 6977, 217219, 3607, 1483, 221909, 13109, 1373, 225697, 226649, 227603, 228559, 17729, 2141, 2633, 235307, 10273, 12487, 238229, 14071, 1327, 241169, 2351, 7907, 2267, 248099, 249097, 13163, 251099, 253109, 1559, 255127, 260207, 261229, 262253, 2339, 265337, 266369, 267403, 268439, 1091, 20809, 272603, 16097, 274697, 8929, 8963, 278909, 279967, 282089, 21863, 285287, 1229, 3463, 2801, 15241, 290657, 292819, 3541, 294989, 15583, 22859, 22943, 17609, 13063, 1997, 302647, 303749, 5167, 1129, 307067, 13399, 309289, 24049, 1487, 314879, 316003, 16691, 319387, 1627, 5273, 5471, 323927, 1879, 3691, 19391, 17471, 333103, 14533, 335417, 336577, 19867, 17837, 3821, 26249, 26339, 343579, 344753, 11159, 11197, 348287, 3217, 1823, 15349, 1213, 27431, 1619, 3701, 360197, 363809, 365017, 366227, 3371, 368653, 21757, 371087, 2203, 374753, 375979, 19853, 16561, 1453, 385859, 29873, 1303, 392099, 6469, 1699, 397127, 1481, 23509, 21101, 1289, 31231, 3109, 21503, 411119, 1427, 413689, 414977, 417559, 18211, 420149, 1907, 13679, 427967, 429277, 430589, 431903, 25561, 435857, 4507, 1471, 441157, 442487, 26107, 2731, 447827, 5077, 453199, 454547, 35069, 2069, 24137, 461317, 462677, 14969, 15013, 27457, 468137, 472253, 36433, 25073, 477769, 479153, 483317, 486103, 4733, 488897, 2357, 498739, 500153, 6043, 29671, 16363, 39239, 22303, 30259, 515839, 517277, 518717, 3491, 521603, 523049, 524497, 525947, 527399, 2393, 9013, 533227, 23311, 1523, 1669, 540557, 543503, 544979, 3251, 550903, 9413, 556859, 29387, 559849, 561347, 9227, 2297, 43759, 24799, 1697, 2971, 5927, 2081, 577957, 25261, 2957, 584057, 585587, 2377, 45281, 4517, 1549, 2819, 31387, 597899, 19387, 3329, 3593, 46829, 610339, 611903, 613469, 3203, 619753, 10531, 624487, 48281, 630827, 37201, 1597, 635603, 637199, 3919, 1609, 1613, 28403, 4337, 10789, 3823, 663007, 1811, 666269, 667903, 51503, 3037, 672817, 676103, 35671, 681047, 682699, 3583, 686009, 2129, 4229, 2311, 53281, 694319, 11437, 22613, 702679, 704357, 7933, 6263, 37337, 711089, 54829, 54959, 37871, 8123, 4799, 4013, 31729, 7541, 733189, 56531, 56663, 39041, 3191, 746957, 748687, 750419, 755627, 58393, 12473, 762599, 9209, 766097, 33461, 771359, 773117, 2399, 2953, 778403, 60013, 60149, 783707, 41341, 46309, 789029, 2699, 8171, 4159, 34693, 799727, 801517, 3643, 26029, 812299, 2939, 43133, 13921, 823153, 63599, 4903, 832253, 49171, 837737, 5647, 44381, 7753, 846917, 49927, 2851, 44963, 856147, 859853, 2557, 27917, 3001, 869153, 67289, 67433, 46237, 51787, 886019, 887903, 46831, 891677, 893567, 38933, 4679, 10903, 9349, 908759, 8059, 53681, 48131, 918319, 3499, 2293, 1987, 2099, 8263, 935653, 937589, 40849, 941467, 943409, 55609, 947299, 73019, 3851, 953149, 955103, 957059,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-41x+17 and
the reducible primes which appear as divisor for the first time
p | x^2-41x+17 and p < x^2-41x+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)
11010911.0000000.9000000.1000000.0000000.0000000.000000
21005848100.5800000.4800000.1000005.8000005.33333310.000000
31.0007283453830.7280000.3450000.38300012.5517247.18750038.299999
410.0007.4102.4654.9450.7410000.2465000.49450010.1785727.14492812.911227
5100.00073.39919.16654.2330.7339900.1916600.5423309.9053987.77525410.967239
61.000.000727.564156.844570.7200.7275640.1568440.5707209.9124518.18345010.523482
710.000.0007.225.1811.324.9785.900.2030.7225180.1324980.5900209.9306478.44774410.338175
8100.000.00071.866.62011.478.47060.388.1500.7186660.1147850.6038829.9466898.66314010.234928
91.000.000.000715.705.060101.283.526614.421.5340.7157050.1012840.6144219.9587978.82378310.174538
1010.000.000.0007.133.487.590906.471.6696.227.015.9210.7133490.0906470.6227029.9670778.94984310.134762


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
388711.0000000.8750000.1250001.6000001.400000inf
416151410.9375000.8750000.0625001.8750002.0000001.000000
532171610.5312500.5000000.0312501.1333331.1428571.000000
664313010.4843750.4687500.0156251.8235291.8750001.000000
71288260220.6406250.4687500.1718752.6451612.00000022.000000
8256182108740.7109380.4218750.2890622.2195121.8000003.363636
95123721961760.7265620.3828120.3437502.0439561.8148152.378378
101.0247453523930.7275390.3437500.3837892.0026881.7959182.232955
112.0481.5186378810.7412110.3110350.4301762.0375841.8096592.241730
124.0963.0321.1501.8820.7402340.2807620.4594731.9973651.8053382.136209
138.1926.0662.0773.9890.7404790.2535400.4869382.0006601.8060872.119554
1416.38412.1213.8118.3100.7398070.2326050.5072021.9981871.8348582.083229
1532.76824.1867.02717.1590.7380980.2144470.5236511.9953801.8438732.064862
1665.53648.18513.09635.0890.7352450.1998290.5354161.9922681.8636692.044933
17131.07296.12224.51271.6100.7333530.1870120.5463411.9948531.8717162.040811
18262.144191.58945.985145.6040.7308540.1754190.5554351.9931861.8760202.033291
19524.288382.26286.489295.7730.7291070.1649650.5641421.9952191.8808092.031352
201.048.576762.792163.837598.9550.7274550.1562470.5712081.9954691.8943102.025050
212.097.1521.522.084310.4101.211.6740.7257860.1480150.5777711.9954121.8946272.022980
224.194.3043.038.012589.8602.448.1520.7243190.1406340.5836851.9959561.9002612.020471
238.388.6086.063.6131.124.5544.939.0590.7228390.1340570.5887821.9959151.9064762.017464
2416.777.21612.106.1142.147.1889.958.9260.7215810.1279820.5935981.9965181.9093692.016361
2533.554.43224.172.4364.111.17620.061.2600.7203950.1225230.5978721.9967131.9146792.014400
2667.108.86448.269.1037.886.28140.382.8220.7192660.1175150.6017511.9968661.9182542.012975
27134.217.72896.401.67915.147.99881.253.6810.7182480.1128610.6053871.9971721.9208042.012085
28268.435.456192.551.01929.146.307163.404.7120.7173080.1085780.6087301.9973821.9241032.011044
29536.870.912384.628.77156.159.964328.468.8070.7164270.1046060.6118211.9975421.9268292.010155
301.073.741.824768.391.392108.360.554660.030.8380.7156200.1009190.6147021.9977481.9294982.009417
312.147.483.6481.535.149.730209.352.4701.325.797.2600.7148600.0974870.6173721.9978751.9319992.008690
324.294.967.2963.067.265.353404.929.2742.662.336.0790.7141530.0942800.6198731.9980241.9341992.008102
338.589.934.5926.128.818.473784.089.2735.344.729.2000.7134880.0912800.6222081.9981381.9363612.007534
3417.179.869.18412.246.910.6821.519.796.14810.727.114.5340.7128640.0884640.6244001.9982501.9382952.007046


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
123121011
245232111
387433211
41614864433
53216975443
66430141610686
712860263420131215
8256108406829232927
95121967012650475247
101.02435212223087868891
112.048637208429158163160156
124.0961.150392758298294283275
138.1922.0776961.381532507529509
1416.3843.8111.2592.552976932963940
1532.7687.0272.3444.6831.7491.7501.7811.747
1665.53613.0964.3488.7483.2813.2183.2933.304
17131.07224.5128.17516.3376.1786.0856.0776.172
18262.14445.98515.39630.58911.56411.44411.42911.548
19524.28886.48928.77857.71121.73621.67721.42021.656
201.048.576163.83754.324109.51341.08340.97940.74141.034
212.097.152310.410103.098207.31277.40677.70077.43177.873
224.194.304589.860196.338393.522147.298147.489147.423147.650
238.388.6081.124.554374.311750.243281.254280.826281.444281.030
2416.777.2162.147.188714.9641.432.224537.031536.586536.741536.830
2533.554.4324.111.1761.369.4792.741.6971.028.0221.027.6211.027.5461.027.987
2667.108.8647.886.2812.628.0035.258.2781.972.7501.970.8361.970.9521.971.743
27134.217.72815.147.9985.047.98010.100.0183.787.2513.786.4673.786.4943.787.786
28268.435.45629.146.3079.714.37619.431.9317.287.9937.286.5387.283.6707.288.106
29536.870.91256.159.96418.720.97937.438.98514.043.16014.040.13314.036.84014.039.831
301.073.741.824108.360.55436.121.92772.238.62727.094.56927.089.07327.087.60327.089.309
312.147.483.648209.352.47069.790.869139.561.60152.345.70652.335.10852.336.15552.335.501
324.294.967.296404.929.274134.985.836269.943.438101.233.617101.232.122101.232.495101.231.040
338.589.934.592784.089.273261.377.970522.711.303196.018.476196.018.288196.027.151196.025.358
3417.179.869.1841.519.796.148506.614.0111.013.182.137379.943.744379.946.740379.953.956379.951.708


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
5321100100
6641100100
71282211114657
825674353914192021
9512176839343444247
101.0243931872069210299100
112.048881417464207234219221
124.0961.882921961453486475468
138.1923.9891.9752.0149671.0101.0101.002
1416.3848.3104.0924.2182.0422.0832.0892.096
1532.76817.1598.5318.6284.2184.3274.3174.297
1665.53635.08917.33417.7558.6108.7638.8848.832
17131.07271.61035.38836.22217.63417.93918.02118.016
18262.144145.60471.94173.66336.17536.31436.68236.433
19524.288295.773146.430149.34373.89773.80973.88474.183
201.048.576598.955296.732302.223149.392149.663149.853150.047
212.097.1521.211.674600.936610.738302.382303.142302.815303.335
224.194.3042.448.1521.214.5231.233.629611.395612.167612.414612.176
238.388.6084.939.0592.451.8862.487.1731.234.7341.235.5381.234.0601.234.727
2416.777.2169.958.9264.945.7115.013.2152.488.7892.488.9202.489.7842.491.433
2533.554.43220.061.2609.967.09110.094.1695.014.3685.014.4775.015.4675.016.948
2667.108.86440.382.82220.070.17920.312.64310.095.11210.093.03510.096.57510.098.100
27134.217.72881.253.68140.390.35140.863.33020.312.03320.314.21620.314.19520.313.237
28268.435.456163.404.71281.244.36082.160.35240.848.59540.851.26940.854.21740.850.631
29536.870.912328.468.807163.356.479165.112.32882.109.66182.116.62182.119.53182.122.994
301.073.741.824660.030.838328.328.634331.702.204165.006.655165.002.220165.007.297165.014.666
312.147.483.6481.325.797.260659.642.437666.154.823331.459.678331.438.119331.453.594331.445.869
324.294.967.2962.662.336.0791.324.891.0481.337.445.031665.591.152665.584.416665.586.324665.574.187
338.589.934.5925.344.729.2002.660.176.4672.684.552.7331.336.191.9361.336.219.6261.336.165.2761.336.152.362
3417.179.869.18410.727.114.5345.339.923.8295.387.190.7052.681.776.7372.681.797.7552.681.757.8312.681.782.211


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 23, 61, 97, 131, 163, 193, 13, 19, 271, 293, 313, 331, 347, 1, 373, 383, 1, 397, 401,
Found in Database : 17, 23, 61, 97, 131, 163, 193, 13, 19, 271, 293, 313, 331, 347, 373, 383, 397, 401, 31,
Found in Database : 13, 17, 19, 23, 31, 59, 61, 83, 89, 97, 103, 109, 113, 131, 149,