Inhaltsverzeichnis

Development of
Algorithmic Constructions

13:23:26
Deutsch
20.Apr 2024

Polynom = x^2-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) = 1 = 1
f(2) = 13 = 13
f(3) = 1 = 1
f(4) = 1 = 1
f(5) = 1 = 1
f(6) = 19 = 19
f(7) = 1 = 1
f(8) = 47 = 47
f(9) = 1 = 1
f(10) = 83 = 83
f(11) = 13 = 13
f(12) = 127 = 127
f(13) = 19 = 19
f(14) = 179 = 179
f(15) = 13 = 13
f(16) = 239 = 239
f(17) = 17 = 17
f(18) = 307 = 307
f(19) = 43 = 43
f(20) = 383 = 383
f(21) = 53 = 53
f(22) = 467 = 467
f(23) = 1 = 1
f(24) = 559 = 13*43
f(25) = 19 = 19
f(26) = 659 = 659
f(27) = 89 = 89
f(28) = 767 = 13*59
f(29) = 103 = 103
f(30) = 883 = 883
f(31) = 59 = 59
f(32) = 1007 = 19*53
f(33) = 67 = 67
f(34) = 1139 = 17*67
f(35) = 151 = 151
f(36) = 1279 = 1279
f(37) = 169 = 13*13
f(38) = 1427 = 1427
f(39) = 47 = 47
f(40) = 1583 = 1583
f(41) = 13 = 13
f(42) = 1747 = 1747
f(43) = 229 = 229
f(44) = 1919 = 19*101
f(45) = 251 = 251
f(46) = 2099 = 2099
f(47) = 137 = 137
f(48) = 2287 = 2287
f(49) = 149 = 149
f(50) = 2483 = 13*191
f(51) = 323 = 17*19
f(52) = 2687 = 2687
f(53) = 349 = 349
f(54) = 2899 = 13*223
f(55) = 47 = 47
f(56) = 3119 = 3119
f(57) = 101 = 101
f(58) = 3347 = 3347
f(59) = 433 = 433
f(60) = 3583 = 3583
f(61) = 463 = 463
f(62) = 3827 = 43*89
f(63) = 247 = 13*19
f(64) = 4079 = 4079
f(65) = 263 = 263
f(66) = 4339 = 4339
f(67) = 559 = 13*43
f(68) = 4607 = 17*271
f(69) = 593 = 593
f(70) = 4883 = 19*257
f(71) = 157 = 157
f(72) = 5167 = 5167
f(73) = 83 = 83
f(74) = 5459 = 53*103
f(75) = 701 = 701
f(76) = 5759 = 13*443
f(77) = 739 = 739
f(78) = 6067 = 6067
f(79) = 389 = 389
f(80) = 6383 = 13*491
f(81) = 409 = 409
f(82) = 6707 = 19*353
f(83) = 859 = 859
f(84) = 7039 = 7039
f(85) = 901 = 17*53
f(86) = 7379 = 47*157
f(87) = 59 = 59
f(88) = 7727 = 7727
f(89) = 247 = 13*19
f(90) = 8083 = 59*137
f(91) = 1033 = 1033
f(92) = 8447 = 8447
f(93) = 1079 = 13*83
f(94) = 8819 = 8819
f(95) = 563 = 563
f(96) = 9199 = 9199
f(97) = 587 = 587
f(98) = 9587 = 9587
f(99) = 1223 = 1223
f(100) = 9983 = 67*149

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

f(0)=17
f(1)=1
f(2)=13
f(3)=1
f(4)=1
f(5)=1
f(6)=19
f(7)=1
f(8)=47
f(9)=1
f(10)=83
f(11)=1
f(12)=127
f(13)=1
f(14)=179
f(15)=1
f(16)=239
f(17)=1
f(18)=307
f(19)=43
f(20)=383
f(21)=53
f(22)=467
f(23)=1
f(24)=1
f(25)=1
f(26)=659
f(27)=89
f(28)=59
f(29)=103
f(30)=883
f(31)=1
f(32)=1
f(33)=67
f(34)=1
f(35)=151
f(36)=1279
f(37)=1
f(38)=1427
f(39)=1
f(40)=1583
f(41)=1
f(42)=1747
f(43)=229
f(44)=101
f(45)=251
f(46)=2099
f(47)=137
f(48)=2287
f(49)=149
f(50)=191
f(51)=1
f(52)=2687
f(53)=349
f(54)=223
f(55)=1
f(56)=3119
f(57)=1
f(58)=3347
f(59)=433
f(60)=3583
f(61)=463
f(62)=1
f(63)=1
f(64)=4079
f(65)=263
f(66)=4339
f(67)=1
f(68)=271
f(69)=593
f(70)=257
f(71)=157
f(72)=5167
f(73)=1
f(74)=1
f(75)=701
f(76)=443
f(77)=739
f(78)=6067
f(79)=389
f(80)=491
f(81)=409
f(82)=353
f(83)=859
f(84)=7039
f(85)=1
f(86)=1
f(87)=1
f(88)=7727
f(89)=1
f(90)=1
f(91)=1033
f(92)=8447
f(93)=1
f(94)=8819
f(95)=563
f(96)=9199
f(97)=587
f(98)=9587
f(99)=1223

b) Substitution of the polynom
The polynom f(x)=x^2-17 could be written as f(y)= y^2-17 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 > 4

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, 1, 13, 1, 1, 1, 19, 1, 47, 1, 83, 1, 127, 1, 179, 1, 239, 1, 307, 43, 383, 53, 467, 1, 1, 1, 659, 89, 59, 103, 883, 1, 1, 67, 1, 151, 1279, 1, 1427, 1, 1583, 1, 1747, 229, 101, 251, 2099, 137, 2287, 149, 191, 1, 2687, 349, 223, 1, 3119, 1, 3347, 433, 3583, 463, 1, 1, 4079, 263, 4339, 1, 271, 593, 257, 157, 5167, 1, 1, 701, 443, 739, 6067, 389, 491, 409, 353, 859, 7039, 1, 1, 1, 7727, 1, 1, 1033, 8447, 1, 8819, 563, 9199, 587, 9587, 1223, 1, 1, 1, 331, 10799, 1, 863, 1429, 613, 1483, 281, 769, 12527, 797, 12979, 1, 1, 1709, 13907, 1, 757, 457, 14867, 1889, 15359, 1951, 15859, 1, 1259, 1039, 16883, 2143, 1, 1, 17939, 569, 1087, 293, 359, 1, 19583, 1, 20147, 1277, 20719, 1, 1, 2699, 509, 1, 22483, 1, 23087, 1, 1823, 3001, 1, 3079, 1, 1579, 25583, 1619, 26227, 3319, 26879, 1, 27539, 1, 421, 1, 1699, 1, 29567, 3739, 30259, 1913, 373, 1, 31667, 4003, 1, 4093, 33107, 523, 1, 1069, 1, 1, 35327, 4463, 36083, 1, 36847, 1, 37619, 4751, 1, 1, 1, 1237, 39983, 631, 40787, 1, 2447, 1, 1, 2677, 733, 2729, 3391, 5563, 44927, 5669, 45779, 1, 46639, 1471, 47507, 461, 48383, 1, 2593, 1, 50159, 3163, 51059, 1, 1, 6553, 52883, 1667, 4139, 1, 1, 1, 4283, 7019, 3331, 1, 647, 1, 1, 1, 1123, 577, 599, 953, 61487, 1, 62483, 7873, 63487, 1, 64499, 1, 65519, 4127, 5119, 1, 3557, 8513, 5279, 2161, 1181, 1097, 557, 1, 71807, 9043, 72883, 1, 1, 4657, 1597, 727, 76159, 1, 77267, 1, 761, 2467, 1, 10009, 6203, 10151, 1543, 5147, 6379, 1, 1789, 1, 85247, 10729, 971, 2719, 1, 1, 4673, 11173, 89983, 1, 1361, 5737, 92399, 5813, 5507, 11779, 94847, 11933, 1, 1511, 97327, 3061, 7583, 12401, 99839, 661, 101107, 6359, 2381, 1, 1249, 1, 104959, 1, 1801, 1, 1, 1, 108883, 13693, 1, 13859, 111539, 7013, 1, 1, 1109, 1, 1, 14533, 1409, 919, 1, 3719, 119699, 1, 6373, 1171, 2311, 7699, 123887, 1, 125299, 829, 126719, 937, 128147, 4027, 1283, 1, 10079, 1, 967, 16651, 10303, 1, 1, 1, 136883, 17203, 773, 17389, 1, 1, 141359, 4441, 142867, 1381, 144383, 18143, 2473, 1, 3137, 1, 7841, 18719, 11579, 18913, 152083, 1, 1, 1, 155219, 19501, 156799, 19699, 1063, 9949, 1019, 1, 1, 1, 163199, 1, 3833, 1, 9791, 5227, 168083, 1, 8933, 21319, 13183, 1, 173039, 10867, 1, 21943, 176383, 22153, 178067, 5591, 9461, 1, 181459, 1753, 183167, 23003, 1, 1, 977, 11717, 1, 1, 2837, 23869, 191827, 3011, 14891, 1, 11491, 1291, 1, 1, 198899, 12487, 1987, 1, 10657, 25423, 1, 1973, 4793, 6469, 3923, 1, 1531, 1549, 211583, 1, 1, 13397, 215279, 13513, 16703, 27259, 1, 1447, 1307, 1733, 2503, 6991, 1, 28201, 13327, 28439, 4861, 1103, 230383, 1, 232307, 2243, 234239, 29401, 2293, 7411, 1, 1, 1, 30133, 1, 1787, 1021, 15313, 1, 1, 4679, 31123, 1, 1, 3761, 1, 253999, 1, 256019, 1, 3109, 1, 15299, 16319, 262127, 16447, 264179, 33151, 266239, 33409, 20639, 1, 2129, 4241, 20959, 1, 1, 1, 14561, 1, 278767, 17489, 280883, 2711, 283007, 35509, 285139, 1, 287279, 9011, 15233, 36313, 6781, 36583, 1871, 18427, 1, 1, 298099, 1, 23099, 1, 302483, 1, 304687, 2389, 306899, 38501, 6577, 1, 311347, 1, 313583, 1, 1, 39619, 16741, 39901, 320339, 5023, 322607, 1, 1, 1, 6961, 41039, 25343, 20663, 1, 20807, 1, 41903, 1, 42193, 338707, 1, 1327, 5347, 343379, 3313, 345727, 1, 348083, 1, 350447, 21977, 352819, 1, 1, 44549, 357587, 2803, 27691, 11287, 19073, 1, 6883, 45751, 367219, 23027, 369647, 1783, 1373, 46663, 22031, 3613, 19841, 1, 379439, 1487, 6473, 1, 384383, 1, 29759, 1, 1, 24413, 1, 49139, 394367, 2909, 396883, 6221, 1301, 1, 401939, 3877, 6037, 1, 2971, 1, 21557, 25679, 412147, 51679, 1811, 1, 24547, 1, 32299, 6581, 1, 52973, 1721, 53299, 5153, 26813, 430319, 1, 1, 2857, 435583, 4201, 1, 1, 10253, 1, 9437, 55609, 8419, 1, 448883, 1481, 1607, 28307, 1, 56951, 456959, 1, 1861, 14407, 1, 3623, 465107, 58309, 1, 1, 470579, 2269, 473327, 29669, 25057, 4591, 4649, 60029, 481619, 7547, 3251, 1, 487187, 1, 37691, 1, 2753, 1, 1, 31063, 1, 1453, 1997, 3307, 9511, 15797, 11789, 1, 1, 63901, 26981, 4943, 515507, 32309, 3433, 1, 521267, 1, 1993, 65701, 40543, 4129, 27893, 16607, 1, 3929, 3911, 1, 538739, 1777, 9181, 1, 544627, 1, 547583, 68633, 1879, 1, 11777, 1, 1, 3671, 32911, 70123, 1, 1, 43499, 35437, 29921, 1657, 43963, 1, 574547, 9001, 12289, 18097, 580627, 1, 5779, 1, 30881, 36767, 589807, 2843, 8849, 1, 595967, 3931, 1, 1, 1, 9433, 46559, 75853, 608383, 76243, 2767, 38317, 614639, 2027, 1613, 77419, 1759, 77813, 4133, 1, 33013, 1, 4231, 1, 633599, 79399, 1, 2347, 639983, 40099, 643187, 80599, 2617, 81001, 649619, 1, 3863, 5113, 1, 4327, 659327, 82619, 3469, 41513, 1, 3209, 669107, 83843, 8101, 6481, 1, 1, 678959, 21269, 682259, 1, 7703, 85903, 2789, 43159, 1, 2551, 53503, 87151, 16253, 1, 1, 21997, 8501, 1, 37313, 6833, 712319, 1, 715699, 3449, 1, 2371, 42499, 90523, 7187, 1, 1, 5711, 1, 1, 736147, 92233, 56891, 4877, 743027, 1, 746479, 1, 749939, 5527, 2087, 1, 1, 1, 760367, 1, 763859, 95701, 767359, 1, 770867, 1, 1, 1, 4603, 97459, 1, 2083, 60383, 1, 788527, 24697, 2393, 99233, 795647, 99679, 799219, 3851, 802799, 50287, 7829, 1, 809983, 1, 1, 1, 12197, 1, 43201, 102829, 63419, 1, 1, 51869, 1, 1, 835379, 104651, 14221, 1, 2609, 3299, 846383, 2039, 1, 1, 853759, 1, 857459, 1, 861167, 53939, 864883, 108343, 18481, 2053, 67103, 1, 876079, 1, 67679, 1, 3697, 1, 1, 1, 46901, 55813, 4013, 8623, 19121, 112573, 902483, 1, 1, 1, 910099, 114001, 1, 114479, 3571, 1, 70891, 57719, 2089, 6101, 71483, 2707, 9239, 29221, 937007, 1, 21881, 1, 1, 9103, 948659, 1, 952559, 1, 1, 2549, 960383, 120293, 50753, 7549, 968239, 30319, 1, 1, 976127, 122263, 75391, 61379, 984047, 61627, 1, 2633, 991999, 124249, 995987, 2399,

6. Sequence of the polynom (only primes)

17, 13, 19, 47, 83, 127, 179, 239, 307, 43, 383, 53, 467, 659, 89, 59, 103, 883, 67, 151, 1279, 1427, 1583, 1747, 229, 101, 251, 2099, 137, 2287, 149, 191, 2687, 349, 223, 3119, 3347, 433, 3583, 463, 4079, 263, 4339, 271, 593, 257, 157, 5167, 701, 443, 739, 6067, 389, 491, 409, 353, 859, 7039, 7727, 1033, 8447, 8819, 563, 9199, 587, 9587, 1223, 331, 10799, 863, 1429, 613, 1483, 281, 769, 12527, 797, 12979, 1709, 13907, 757, 457, 14867, 1889, 15359, 1951, 15859, 1259, 1039, 16883, 2143, 17939, 569, 1087, 293, 359, 19583, 20147, 1277, 20719, 2699, 509, 22483, 23087, 1823, 3001, 3079, 1579, 25583, 1619, 26227, 3319, 26879, 27539, 421, 1699, 29567, 3739, 30259, 1913, 373, 31667, 4003, 4093, 33107, 523, 1069, 35327, 4463, 36083, 36847, 37619, 4751, 1237, 39983, 631, 40787, 2447, 2677, 733, 2729, 3391, 5563, 44927, 5669, 45779, 46639, 1471, 47507, 461, 48383, 2593, 50159, 3163, 51059, 6553, 52883, 1667, 4139, 4283, 7019, 3331, 647, 1123, 577, 599, 953, 61487, 62483, 7873, 63487, 64499, 65519, 4127, 5119, 3557, 8513, 5279, 2161, 1181, 1097, 557, 71807, 9043, 72883, 4657, 1597, 727, 76159, 77267, 761, 2467, 10009, 6203, 10151, 1543, 5147, 6379, 1789, 85247, 10729, 971, 2719, 4673, 11173, 89983, 1361, 5737, 92399, 5813, 5507, 11779, 94847, 11933, 1511, 97327, 3061, 7583, 12401, 99839, 661, 101107, 6359, 2381, 1249, 104959, 1801, 108883, 13693, 13859, 111539, 7013, 1109, 14533, 1409, 919, 3719, 119699, 6373, 1171, 2311, 7699, 123887, 125299, 829, 126719, 937, 128147, 4027, 1283, 10079, 967, 16651, 10303, 136883, 17203, 773, 17389, 141359, 4441, 142867, 1381, 144383, 18143, 2473, 3137, 7841, 18719, 11579, 18913, 152083, 155219, 19501, 156799, 19699, 1063, 9949, 1019, 163199, 3833, 9791, 5227, 168083, 8933, 21319, 13183, 173039, 10867, 21943, 176383, 22153, 178067, 5591, 9461, 181459, 1753, 183167, 23003, 977, 11717, 2837, 23869, 191827, 3011, 14891, 11491, 1291, 198899, 12487, 1987, 10657, 25423, 1973, 4793, 6469, 3923, 1531, 1549, 211583, 13397, 215279, 13513, 16703, 27259, 1447, 1307, 1733, 2503, 6991, 28201, 13327, 28439, 4861, 1103, 230383, 232307, 2243, 234239, 29401, 2293, 7411, 30133, 1787, 1021, 15313, 4679, 31123, 3761, 253999, 256019, 3109, 15299, 16319, 262127, 16447, 264179, 33151, 266239, 33409, 20639, 2129, 4241, 20959, 14561, 278767, 17489, 280883, 2711, 283007, 35509, 285139, 287279, 9011, 15233, 36313, 6781, 36583, 1871, 18427, 298099, 23099, 302483, 304687, 2389, 306899, 38501, 6577, 311347, 313583, 39619, 16741, 39901, 320339, 5023, 322607, 6961, 41039, 25343, 20663, 20807, 41903, 42193, 338707, 1327, 5347, 343379, 3313, 345727, 348083, 350447, 21977, 352819, 44549, 357587, 2803, 27691, 11287, 19073, 6883, 45751, 367219, 23027, 369647, 1783, 1373, 46663, 22031, 3613, 19841, 379439, 1487, 6473, 384383, 29759, 24413, 49139, 394367, 2909, 396883, 6221, 1301, 401939, 3877, 6037, 2971, 21557, 25679, 412147, 51679, 1811, 24547, 32299, 6581, 52973, 1721, 53299, 5153, 26813, 430319, 2857, 435583, 4201, 10253, 9437, 55609, 8419, 448883, 1481, 1607, 28307, 56951, 456959, 1861, 14407, 3623, 465107, 58309, 470579, 2269, 473327, 29669, 25057, 4591, 4649, 60029, 481619, 7547, 3251, 487187, 37691, 2753, 31063, 1453, 1997, 3307, 9511, 15797, 11789, 63901, 26981, 4943, 515507, 32309, 3433, 521267, 1993, 65701, 40543, 4129, 27893, 16607, 3929, 3911, 538739, 1777, 9181, 544627, 547583, 68633, 1879, 11777, 3671, 32911, 70123, 43499, 35437, 29921, 1657, 43963, 574547, 9001, 12289, 18097, 580627, 5779, 30881, 36767, 589807, 2843, 8849, 595967, 3931, 9433, 46559, 75853, 608383, 76243, 2767, 38317, 614639, 2027, 1613, 77419, 1759, 77813, 4133, 33013, 4231, 633599, 79399, 2347, 639983, 40099, 643187, 80599, 2617, 81001, 649619, 3863, 5113, 4327, 659327, 82619, 3469, 41513, 3209, 669107, 83843, 8101, 6481, 678959, 21269, 682259, 7703, 85903, 2789, 43159, 2551, 53503, 87151, 16253, 21997, 8501, 37313, 6833, 712319, 715699, 3449, 2371, 42499, 90523, 7187, 5711, 736147, 92233, 56891, 4877, 743027, 746479, 749939, 5527, 2087, 760367, 763859, 95701, 767359, 770867, 4603, 97459, 2083, 60383, 788527, 24697, 2393, 99233, 795647, 99679, 799219, 3851, 802799, 50287, 7829, 809983, 12197, 43201, 102829, 63419, 51869, 835379, 104651, 14221, 2609, 3299, 846383, 2039, 853759, 857459, 861167, 53939, 864883, 108343, 18481, 2053, 67103, 876079, 67679, 3697, 46901, 55813, 4013, 8623, 19121, 112573, 902483, 910099, 114001, 114479, 3571, 70891, 57719, 2089, 6101, 71483, 2707, 9239, 29221, 937007, 21881, 9103, 948659, 952559, 2549, 960383, 120293, 50753, 7549, 968239, 30319, 976127, 122263, 75391, 61379, 984047, 61627, 2633, 991999, 124249, 995987, 2399,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2x-17 and
the reducible primes which appear as divisor for the first time
p | x^2x-17 and p < x^2x-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)
1105500.5000000.5000000.5000000.0000000.0000000.000000
2100675890.6700000.5800000.67000013.40000011.600000inf
31.0007004472530.7000000.4470000.70000010.4477627.70689728.111111
410.0007.0143.2263.7880.7014000.3226000.70140010.0200007.21700214.972332
5100.00070.16024.42445.7360.7016000.2442400.70160010.0028517.57098612.073917
61.000.000699.710197.556502.1540.6997100.1975560.6997109.9730628.08860110.979403
710.000.0006.985.4451.650.7045.334.7410.6985450.1650700.6985459.9833438.35562610.623715
8100.000.00069.765.03414.202.14155.562.8930.6976500.1420210.6976509.9872008.60368710.415294
91.000.000.000697.003.610124.645.820572.357.7900.6970040.1246460.6970049.9907298.77655110.301080
1010.000.000.0006.965.138.1831.110.745.5295.854.392.6540.6965140.1110750.6965149.9929738.91121310.228555


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
242200.5000000.5000000.0000001.0000001.000000-nan
384400.5000000.5000000.0000002.0000002.000000-nan
4168800.5000000.5000000.0000002.0000002.000000-nan
532181710.5625000.5312500.0312502.2500002.125000inf
664413740.6406250.5781250.0625002.2777782.1764714.000000
71288874140.6875000.5781250.1093752.1463422.0000003.500000
8256173140330.6757810.5468750.1289061.9659091.8918922.357143
95123542481060.6914060.4843750.2070312.0462431.7714293.212121
101.0247174572600.7001950.4462890.2539062.0254241.8427422.452830
112.0481.4318345970.6987300.4072270.2915041.9958161.8249452.296154
124.0962.8761.5041.3720.7021480.3671880.3349612.0097831.8033572.298157
138.1925.7492.7233.0260.7017820.3323970.3693851.9989571.8105052.205539
1416.38411.5064.9486.5580.7022710.3020020.4002692.0013921.8171142.167217
1532.76823.0179.11413.9030.7024230.2781370.4242862.0004351.8419562.120006
1665.53645.98016.75029.2300.7015990.2555850.4460141.9976541.8378322.102424
17131.07291.90631.20260.7040.7011870.2380520.4631351.9988261.8628062.076771
18262.144183.63858.228125.4100.7005230.2221220.4784011.9981071.8661622.065927
19524.288367.113109.324257.7890.7002120.2085190.4916931.9991121.8775162.055570
201.048.576733.630206.238527.3920.6996440.1966840.5029601.9983761.8864842.045828
212.097.1521.466.280389.7441.076.5360.6991770.1858440.5133321.9986641.8897782.041245
224.194.3042.931.368737.8342.193.5340.6988930.1759130.5229791.9991871.8931252.037585
238.388.6085.860.3491.402.4334.457.9160.6986080.1671830.5314251.9991861.9007432.032299
2416.777.21611.715.7442.670.3249.045.4200.6983130.1591640.5391491.9991551.9040652.029069
2533.554.43223.421.7945.103.02118.318.7730.6980240.1520820.5459421.9991731.9110122.025199
2667.108.86446.828.2179.767.79237.060.4250.6977950.1455510.5522431.9993441.9141192.023084
27134.217.72893.625.80718.727.74374.898.0640.6975670.1395330.5580341.9993461.9172962.020972
28268.435.456187.192.04335.973.768151.218.2750.6973450.1340130.5633321.9993641.9208812.018988
29536.870.912374.284.03369.204.231305.079.8020.6971580.1289030.5682551.9994651.9237422.017480
301.073.741.824748.382.479133.334.763615.047.7160.6969850.1241780.5728081.9995041.9266852.016022
312.147.483.6481.496.414.986257.250.7281.239.164.2580.6968230.1197920.5770311.9995321.9293602.014745
324.294.967.2962.992.207.777496.918.5252.495.289.2520.6966780.1156980.5809801.9995841.9316512.013687
338.589.934.5925.983.254.983961.023.2185.022.231.7650.6965430.1118780.5846651.9996121.9339652.012685
3417.179.869.18411.964.313.6101.860.706.63310.103.606.9770.6964150.1083070.5881071.9996331.9361722.011776
3534.359.738.36823.924.632.7333.606.282.82020.318.349.9130.6962980.1049570.5913421.9996661.9381252.010999
3668.719.476.73647.841.729.3876.996.135.12740.845.594.2600.6961890.1018070.5943821.9996851.9399852.010281


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
122111010
242111010
384221111
4168351313
532177102825
664371720414514
712874353910281125
8256140617917561849
951224811912932923490
101.0244572142435616366172
112.048834378456105294117318
124.0961.504685819197541215551
138.1922.7231.2351.4883539683811.021
1416.3844.9482.2232.7256631.7876811.817
1532.7689.1144.0965.0181.2213.3321.2213.340
1665.53616.7507.5789.1722.2356.1362.2576.122
17131.07231.20214.08617.1164.14711.5034.20711.345
18262.14458.22826.31931.9097.73221.4207.77121.305
19524.288109.32449.34359.98114.48340.08614.53540.220
201.048.576206.23892.899113.33927.18975.80427.29375.952
212.097.152389.744175.315214.42951.355143.35251.424143.613
224.194.304737.834331.515406.31996.961271.68197.083272.109
238.388.6081.402.433629.470772.963183.668517.045184.085517.635
2416.777.2162.670.3241.197.9261.472.398349.035984.882349.842986.565
2533.554.4325.103.0212.287.8632.815.158666.3451.883.837667.1161.885.723
2667.108.8649.767.7924.380.0485.387.7441.272.9803.609.2531.275.0283.610.531
27134.217.72818.727.7438.394.18610.333.5572.437.3876.924.8072.437.9236.927.626
28268.435.45635.973.76816.119.16919.854.5994.676.64113.312.0754.672.59813.312.454
29536.870.91269.204.23131.002.06238.202.1698.981.87425.624.8278.978.38425.619.146
301.073.741.824133.334.76359.712.14173.622.62217.280.59249.392.43917.276.62649.385.106
312.147.483.648257.250.728115.170.982142.079.74633.301.11995.334.56833.296.51795.318.524
324.294.967.296496.918.525222.411.684274.506.84164.247.843184.215.21764.242.981184.212.484
338.589.934.592961.023.218430.028.315530.994.903124.127.882356.397.952124.111.233356.386.151
3417.179.869.1841.860.706.633832.433.9541.028.272.679240.063.841690.291.526240.049.676690.301.590
3534.359.738.3683.606.282.8201.613.049.4201.993.233.400464.820.1001.338.342.305464.827.7021.338.292.713
3668.719.476.7366.996.135.1273.128.678.6633.867.456.464900.914.4012.597.156.039900.930.1722.597.134.515


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
5321010100
6644130112
7128144103434
825633141959811
9512106485821272929
101.02426011614465596868
112.048597293304140144162151
124.0961.372673699343322361346
138.1923.0261.4691.557768743791724
1416.3846.5583.2243.3341.6781.6351.6621.583
1532.76813.9036.8857.0183.4973.4463.5443.416
1665.53629.23014.54114.6897.3337.2357.4437.219
17131.07260.70430.23830.46615.20915.03415.46015.001
18262.144125.41062.49162.91931.47031.06331.82031.057
19524.288257.789128.719129.07064.69463.92265.24063.933
201.048.576527.392262.971264.421132.486130.928133.006130.972
212.097.1521.076.536536.781539.755271.013267.797270.754266.972
224.194.3042.193.5341.093.1051.100.429551.699546.071550.966544.798
238.388.6084.457.9162.222.2152.235.7011.119.5341.110.0881.120.0191.108.275
2416.777.2169.045.4204.508.7694.536.6512.271.5852.252.4562.271.8932.249.486
2533.554.43218.318.7739.131.3009.187.4734.599.2924.560.1304.601.1324.558.219
2667.108.86437.060.42518.475.83318.584.5929.302.5359.227.4759.305.5939.224.822
27134.217.72874.898.06437.349.06237.549.00218.797.94418.647.45218.800.42818.652.240
28268.435.456151.218.27575.420.93675.797.33937.945.73337.659.03837.948.13437.665.370
29536.870.912305.079.802152.160.811152.918.99176.538.78875.992.35176.542.27876.006.385
301.073.741.824615.047.716306.787.614308.260.102154.281.407153.235.924154.283.664153.246.721
312.147.483.6481.239.164.258618.160.652621.003.606310.790.003308.788.517310.799.903308.785.835
324.294.967.2962.495.289.2521.244.882.5361.250.406.716625.723.075621.918.238625.751.848621.896.091
338.589.934.5925.022.231.7652.505.712.8292.516.518.9361.259.216.0931.251.893.4411.259.267.6551.251.854.576
3417.179.869.18410.103.606.9775.041.320.2385.062.286.7392.532.885.0502.518.923.6412.532.952.5102.518.845.776
3534.359.738.36820.318.349.91310.138.845.08910.179.504.8245.093.037.1995.066.147.1205.093.172.0975.065.993.497
3668.719.476.73640.845.594.26020.383.350.42120.462.243.83910.237.335.03110.185.435.68310.237.495.09010.185.328.456


8. Check for existing Integer Sequences by OEIS

Found in Database : 17, 1, 13, 1, 1, 1, 19, 1, 47, 1, 83, 1, 127, 1, 179, 1, 239, 1, 307, 43,
Found in Database : 17, 13, 19, 47, 83, 127, 179, 239, 307, 43, 383, 53, 467, 659, 89, 59, 103, 883, 67, 151, 1279, 1427,
Found in Database : 13, 17, 19, 43, 47, 53, 59, 67, 83, 89, 101, 103, 127, 137, 149,