Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:14:11
Deutsch
19.Apr 2024

Polynom = x^2+108x-149

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) = 149 = 149
f(1) = 5 = 5
f(2) = 71 = 71
f(3) = 23 = 23
f(4) = 299 = 13*23
f(5) = 13 = 13
f(6) = 535 = 5*107
f(7) = 41 = 41
f(8) = 779 = 19*41
f(9) = 113 = 113
f(10) = 1031 = 1031
f(11) = 145 = 5*29
f(12) = 1291 = 1291
f(13) = 89 = 89
f(14) = 1559 = 1559
f(15) = 53 = 53
f(16) = 1835 = 5*367
f(17) = 247 = 13*19
f(18) = 2119 = 13*163
f(19) = 283 = 283
f(20) = 2411 = 2411
f(21) = 5 = 5
f(22) = 2711 = 2711
f(23) = 179 = 179
f(24) = 3019 = 3019
f(25) = 397 = 397
f(26) = 3335 = 5*23*29
f(27) = 437 = 19*23
f(28) = 3659 = 3659
f(29) = 239 = 239
f(30) = 3991 = 13*307
f(31) = 65 = 5*13
f(32) = 4331 = 61*71
f(33) = 563 = 563
f(34) = 4679 = 4679
f(35) = 607 = 607
f(36) = 5035 = 5*19*53
f(37) = 163 = 163
f(38) = 5399 = 5399
f(39) = 349 = 349
f(40) = 5771 = 29*199
f(41) = 745 = 5*149
f(42) = 6151 = 6151
f(43) = 793 = 13*61
f(44) = 6539 = 13*503
f(45) = 421 = 421
f(46) = 6935 = 5*19*73
f(47) = 223 = 223
f(48) = 7339 = 41*179
f(49) = 943 = 23*41
f(50) = 7751 = 23*337
f(51) = 995 = 5*199
f(52) = 8171 = 8171
f(53) = 131 = 131
f(54) = 8599 = 8599
f(55) = 551 = 19*29
f(56) = 9035 = 5*13*139
f(57) = 1157 = 13*89
f(58) = 9479 = 9479
f(59) = 1213 = 1213
f(60) = 9931 = 9931
f(61) = 635 = 5*127
f(62) = 10391 = 10391
f(63) = 83 = 83
f(64) = 10859 = 10859
f(65) = 1387 = 19*73
f(66) = 11335 = 5*2267
f(67) = 1447 = 1447
f(68) = 11819 = 53*223
f(69) = 377 = 13*29
f(70) = 12311 = 13*947
f(71) = 785 = 5*157
f(72) = 12811 = 23*557
f(73) = 1633 = 23*71
f(74) = 13319 = 19*701
f(75) = 1697 = 1697
f(76) = 13835 = 5*2767
f(77) = 881 = 881
f(78) = 14359 = 83*173
f(79) = 457 = 457
f(80) = 14891 = 14891
f(81) = 1895 = 5*379
f(82) = 15431 = 13*1187
f(83) = 1963 = 13*151
f(84) = 15979 = 19*29*29
f(85) = 127 = 127
f(86) = 16535 = 5*3307
f(87) = 1051 = 1051
f(88) = 17099 = 17099
f(89) = 2173 = 41*53
f(90) = 17671 = 41*431
f(91) = 2245 = 5*449
f(92) = 18251 = 18251
f(93) = 1159 = 19*61
f(94) = 18839 = 18839
f(95) = 299 = 13*23
f(96) = 19435 = 5*13*13*23
f(97) = 2467 = 2467
f(98) = 20039 = 29*691
f(99) = 2543 = 2543
f(100) = 20651 = 107*193

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+108x-149

f(0)=149
f(1)=5
f(2)=71
f(3)=23
f(4)=13
f(5)=1
f(6)=107
f(7)=41
f(8)=19
f(9)=113
f(10)=1031
f(11)=29
f(12)=1291
f(13)=89
f(14)=1559
f(15)=53
f(16)=367
f(17)=1
f(18)=163
f(19)=283
f(20)=2411
f(21)=1
f(22)=2711
f(23)=179
f(24)=3019
f(25)=397
f(26)=1
f(27)=1
f(28)=3659
f(29)=239
f(30)=307
f(31)=1
f(32)=61
f(33)=563
f(34)=4679
f(35)=607
f(36)=1
f(37)=1
f(38)=5399
f(39)=349
f(40)=199
f(41)=1
f(42)=6151
f(43)=1
f(44)=503
f(45)=421
f(46)=73
f(47)=223
f(48)=1
f(49)=1
f(50)=337
f(51)=1
f(52)=8171
f(53)=131
f(54)=8599
f(55)=1
f(56)=139
f(57)=1
f(58)=9479
f(59)=1213
f(60)=9931
f(61)=127
f(62)=10391
f(63)=83
f(64)=10859
f(65)=1
f(66)=2267
f(67)=1447
f(68)=1
f(69)=1
f(70)=947
f(71)=157
f(72)=557
f(73)=1
f(74)=701
f(75)=1697
f(76)=2767
f(77)=881
f(78)=173
f(79)=457
f(80)=14891
f(81)=379
f(82)=1187
f(83)=151
f(84)=1
f(85)=1
f(86)=3307
f(87)=1051
f(88)=17099
f(89)=1
f(90)=431
f(91)=449
f(92)=18251
f(93)=1
f(94)=18839
f(95)=1
f(96)=1
f(97)=2467
f(98)=691
f(99)=2543

b) Substitution of the polynom
The polynom f(x)=x^2+108x-149 could be written as f(y)= y^2-3065 with x=y-54

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+54
f'(x)>2x+107

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

149, 5, 71, 23, 13, 1, 107, 41, 19, 113, 1031, 29, 1291, 89, 1559, 53, 367, 1, 163, 283, 2411, 1, 2711, 179, 3019, 397, 1, 1, 3659, 239, 307, 1, 61, 563, 4679, 607, 1, 1, 5399, 349, 199, 1, 6151, 1, 503, 421, 73, 223, 1, 1, 337, 1, 8171, 131, 8599, 1, 139, 1, 9479, 1213, 9931, 127, 10391, 83, 10859, 1, 2267, 1447, 1, 1, 947, 157, 557, 1, 701, 1697, 2767, 881, 173, 457, 14891, 379, 1187, 151, 1, 1, 3307, 1051, 17099, 1, 431, 449, 18251, 1, 18839, 1, 1, 2467, 691, 2543, 193, 1, 1, 1, 359, 2777, 4507, 2857, 1783, 1, 23831, 1, 1289, 1, 181, 3187, 5167, 409, 1153, 1, 27211, 1, 1, 3533, 28619, 1811, 5867, 1, 30059, 3803, 751, 1, 31531, 997, 191, 1, 6607, 4177, 463, 4273, 1, 1, 1, 1117, 509, 4567, 1, 1, 2903, 1, 2029, 487, 39371, 4973, 659, 5077, 1, 2591, 41879, 661, 1, 1, 43591, 5503, 1933, 1, 9067, 2861, 46219, 1, 47111, 1, 1171, 233, 1, 1543, 9967, 6287, 263, 1, 51691, 1, 52631, 3319, 1, 1, 839, 1, 1, 3499, 1, 1, 787, 7243, 58439, 1, 11887, 1873, 3181, 293, 1, 1549, 1, 7873, 63499, 4001, 12907, 1, 65579, 8263, 2897, 1, 1, 1, 2371, 1, 13967, 1, 70919, 8933, 673, 907, 647, 1151, 74219, 719, 1, 1, 1, 1, 77591, 977, 601, 1, 1, 1, 853, 5101, 6323, 1, 317, 2099, 84551, 1, 1033, 1, 17387, 5471, 1663, 11093, 1, 1, 6967, 1, 2239, 1, 809, 1, 3251, 11863, 95531, 1, 641, 6089, 1, 1, 19867, 12497, 1, 6329, 1, 1, 3559, 12983, 5501, 13147, 347, 1, 8243, 1, 1, 2729, 109831, 727, 1523, 6991, 1, 1, 113899, 14323, 8867, 1, 743, 1, 2879, 1, 23887, 15017, 811, 15193, 122251, 1, 1, 1, 9623, 15727, 25307, 15907, 127979, 2011, 373, 1627, 1, 16453, 1237, 1, 1, 1, 135319, 1063, 136811, 1, 138311, 17383, 1571, 1, 1229, 1, 383, 1381, 1, 1, 145931, 1, 1061, 1, 1, 1, 2063, 1, 8009, 1, 11827, 1, 953, 1, 31387, 19717, 1, 433, 8429, 1, 161771, 20323, 3083, 1579, 2539, 1, 166679, 1, 168331, 4229, 169991, 1, 171659, 10781, 34667, 5443, 13463, 1, 176711, 1, 7757, 2801, 6211, 11311, 887, 1, 9661, 23053, 185291, 1, 14387, 1, 188779, 1, 1, 1, 1, 6037, 194071, 2437, 1409, 24593, 1, 1, 39887, 1, 3299, 6317, 203051, 5099, 204871, 1, 206699, 1, 1, 1, 16183, 1, 2557, 1, 214091, 1, 215959, 3389, 2293, 1, 1, 27583, 17047, 1, 1, 14029, 1303, 28297, 2393, 28537, 3229, 14389, 3167, 1451, 8039, 2251, 1, 1553, 47407, 3719, 1201, 1, 10477, 1, 1913, 30493, 244939, 1, 1, 1, 2203, 1, 250951, 6299, 252971, 7937, 13421, 16001, 51407, 32257, 1, 1, 1, 1, 263191, 1, 1, 33287, 1, 33547, 269419, 2113, 4451, 3407, 1619, 1, 275719, 1193, 1, 17431, 3373, 4391, 282091, 7079, 284231, 1877, 3923, 1, 1, 1, 1951, 36473, 10099, 7349, 1, 1, 2269, 9323, 59887, 37567, 23203, 1, 7411, 1, 1, 1, 10631, 38677, 1, 1, 312779, 1, 13697, 1, 24407, 1, 1433, 40087, 1, 10093, 324119, 1, 5351, 1, 1721, 41233, 25463, 1597, 1, 10453, 3137, 593, 17789, 1, 14797, 1, 342679, 21491, 1, 3329, 26723, 43573, 1, 1, 2243, 5521, 354539, 1, 71387, 1, 12391, 1, 27827, 1, 364171, 45673, 366599, 1999, 3209, 1, 371479, 613, 2089, 1, 12979, 3631, 1, 5939, 1439, 23911, 20201, 1, 5441, 9689, 1327, 24379, 3463, 3067, 1, 1, 1, 2161, 1669, 1, 9791, 25169, 403979, 1, 81307, 2683, 409099, 1973, 31667, 1, 6791, 1, 416839, 52267, 1, 1, 7963, 26459, 5981, 1, 1429, 1, 429899, 26951, 1, 6779, 435179, 54563, 1, 10979, 3169, 13807, 443159, 2137, 1, 55897, 448519, 1, 15559, 5657, 11071, 1, 19853, 1, 91867, 57587, 35543, 1, 6367, 5827, 467531, 58613, 470279, 1, 1, 1, 1, 1, 478571, 1, 1, 60343, 1, 15173, 97387, 1, 1, 1, 492551, 1, 495371, 1, 2017, 1, 100207, 1, 503879, 761, 506731, 1, 509591, 1, 1, 64237, 103067, 4969, 39863, 32479, 1, 1, 9887, 3457, 4663, 66047, 105967, 16603, 18371, 1, 1, 1, 28349, 1, 541579, 33941, 108907, 1, 547499, 1, 550471, 13799, 29129, 1, 1861, 34871, 1, 70117, 562439, 1, 565451, 1, 568471, 1, 1, 1747, 8839, 1, 4409, 18097, 580631, 1, 8221, 1, 9619, 1, 1, 1607, 592919, 1, 1, 14939, 1, 75083, 1787, 1, 121067, 1, 608459, 76253, 32189, 15329, 47287, 2963, 617879, 9679, 4283, 1, 624199, 1, 27277, 3931, 1, 39509, 633739, 1, 1, 79817, 640139, 2111, 1753, 1, 646571, 81023, 649799, 1, 1, 1, 2657, 3163, 659531, 16529, 28817, 1, 1, 1, 1, 2621, 35401, 1, 3907, 1, 4019, 21277, 682519, 1, 1879, 4523, 13003, 86353, 23879, 8677, 1, 1, 53783, 1, 1, 1, 705899, 1, 709271, 8887, 712651, 89293, 24691, 1, 7573, 3467, 55603, 11321, 6427, 18199, 729671, 91423, 733099, 22963, 7753, 46141, 32173, 1, 1, 1, 746891, 1, 8431, 1, 150767, 94447, 757319, 1, 1, 2383, 2129, 1, 59063, 1, 154267, 2357, 18899, 48539, 778391, 1, 33997, 1, 41341, 98407, 1, 1901, 1, 1, 796171, 19949, 1847, 100193, 42281, 50321, 161387, 1, 810539, 1, 62627, 20399, 1, 1, 1, 2237, 1, 103357, 9311, 103813, 832331, 10427, 1, 1, 4639, 1, 1, 3643, 1, 1, 850711, 10657, 1, 107033, 2707, 8269, 13259, 2347, 37633, 27107, 869291, 1, 45949, 109363, 1, 13729, 2887, 1, 68023, 8521, 6389, 1, 891851, 1, 6011, 1, 6203, 1, 4729, 113143, 1, 1, 70067, 1, 4789, 114577, 183707, 115057, 11113, 1, 1, 5801, 1, 1, 71843, 8999, 3539, 3671, 5261, 58979, 1, 23689, 13007, 5171, 41453, 1, 191467, 1, 73943, 6337, 965191, 24179, 969131, 30347, 1, 1, 195407, 2309, 980999, 1, 75767, 1, 988951, 1, 1, 124367, 8669, 1, 1, 15671, 1, 1, 2341, 9721, 2687, 1, 1, 63691, 1, 7993, 4597, 25679, 1029191, 128903, 1, 32353, 15959, 1, 35911, 1, 1, 26189, 1049611, 65729, 8297, 32993, 2549, 1, 1061959, 1, 82007, 1, 1070231, 2311, 1074379, 1, 11353, 135077, 1082699, 1, 20507, 1, 1, 1, 1095239, 1, 1, 1, 1103639, 69109,

6. Sequence of the polynom (only primes)

149, 5, 71, 23, 13, 107, 41, 19, 113, 1031, 29, 1291, 89, 1559, 53, 367, 163, 283, 2411, 2711, 179, 3019, 397, 3659, 239, 307, 61, 563, 4679, 607, 5399, 349, 199, 6151, 503, 421, 73, 223, 337, 8171, 131, 8599, 139, 9479, 1213, 9931, 127, 10391, 83, 10859, 2267, 1447, 947, 157, 557, 701, 1697, 2767, 881, 173, 457, 14891, 379, 1187, 151, 3307, 1051, 17099, 431, 449, 18251, 18839, 2467, 691, 2543, 193, 359, 2777, 4507, 2857, 1783, 23831, 1289, 181, 3187, 5167, 409, 1153, 27211, 3533, 28619, 1811, 5867, 30059, 3803, 751, 31531, 997, 191, 6607, 4177, 463, 4273, 1117, 509, 4567, 2903, 2029, 487, 39371, 4973, 659, 5077, 2591, 41879, 661, 43591, 5503, 1933, 9067, 2861, 46219, 47111, 1171, 233, 1543, 9967, 6287, 263, 51691, 52631, 3319, 839, 3499, 787, 7243, 58439, 11887, 1873, 3181, 293, 1549, 7873, 63499, 4001, 12907, 65579, 8263, 2897, 2371, 13967, 70919, 8933, 673, 907, 647, 1151, 74219, 719, 77591, 977, 601, 853, 5101, 6323, 317, 2099, 84551, 1033, 17387, 5471, 1663, 11093, 6967, 2239, 809, 3251, 11863, 95531, 641, 6089, 19867, 12497, 6329, 3559, 12983, 5501, 13147, 347, 8243, 2729, 109831, 727, 1523, 6991, 113899, 14323, 8867, 743, 2879, 23887, 15017, 811, 15193, 122251, 9623, 15727, 25307, 15907, 127979, 2011, 373, 1627, 16453, 1237, 135319, 1063, 136811, 138311, 17383, 1571, 1229, 383, 1381, 145931, 1061, 2063, 8009, 11827, 953, 31387, 19717, 433, 8429, 161771, 20323, 3083, 1579, 2539, 166679, 168331, 4229, 169991, 171659, 10781, 34667, 5443, 13463, 176711, 7757, 2801, 6211, 11311, 887, 9661, 23053, 185291, 14387, 188779, 6037, 194071, 2437, 1409, 24593, 39887, 3299, 6317, 203051, 5099, 204871, 206699, 16183, 2557, 214091, 215959, 3389, 2293, 27583, 17047, 14029, 1303, 28297, 2393, 28537, 3229, 14389, 3167, 1451, 8039, 2251, 1553, 47407, 3719, 1201, 10477, 1913, 30493, 244939, 2203, 250951, 6299, 252971, 7937, 13421, 16001, 51407, 32257, 263191, 33287, 33547, 269419, 2113, 4451, 3407, 1619, 275719, 1193, 17431, 3373, 4391, 282091, 7079, 284231, 1877, 3923, 1951, 36473, 10099, 7349, 2269, 9323, 59887, 37567, 23203, 7411, 10631, 38677, 312779, 13697, 24407, 1433, 40087, 10093, 324119, 5351, 1721, 41233, 25463, 1597, 10453, 3137, 593, 17789, 14797, 342679, 21491, 3329, 26723, 43573, 2243, 5521, 354539, 71387, 12391, 27827, 364171, 45673, 366599, 1999, 3209, 371479, 613, 2089, 12979, 3631, 5939, 1439, 23911, 20201, 5441, 9689, 1327, 24379, 3463, 3067, 2161, 1669, 9791, 25169, 403979, 81307, 2683, 409099, 1973, 31667, 6791, 416839, 52267, 7963, 26459, 5981, 1429, 429899, 26951, 6779, 435179, 54563, 10979, 3169, 13807, 443159, 2137, 55897, 448519, 15559, 5657, 11071, 19853, 91867, 57587, 35543, 6367, 5827, 467531, 58613, 470279, 478571, 60343, 15173, 97387, 492551, 495371, 2017, 100207, 503879, 761, 506731, 509591, 64237, 103067, 4969, 39863, 32479, 9887, 3457, 4663, 66047, 105967, 16603, 18371, 28349, 541579, 33941, 108907, 547499, 550471, 13799, 29129, 1861, 34871, 70117, 562439, 565451, 568471, 1747, 8839, 4409, 18097, 580631, 8221, 9619, 1607, 592919, 14939, 75083, 1787, 121067, 608459, 76253, 32189, 15329, 47287, 2963, 617879, 9679, 4283, 624199, 27277, 3931, 39509, 633739, 79817, 640139, 2111, 1753, 646571, 81023, 649799, 2657, 3163, 659531, 16529, 28817, 2621, 35401, 3907, 4019, 21277, 682519, 1879, 4523, 13003, 86353, 23879, 8677, 53783, 705899, 709271, 8887, 712651, 89293, 24691, 7573, 3467, 55603, 11321, 6427, 18199, 729671, 91423, 733099, 22963, 7753, 46141, 32173, 746891, 8431, 150767, 94447, 757319, 2383, 2129, 59063, 154267, 2357, 18899, 48539, 778391, 33997, 41341, 98407, 1901, 796171, 19949, 1847, 100193, 42281, 50321, 161387, 810539, 62627, 20399, 2237, 103357, 9311, 103813, 832331, 10427, 4639, 3643, 850711, 10657, 107033, 2707, 8269, 13259, 2347, 37633, 27107, 869291, 45949, 109363, 13729, 2887, 68023, 8521, 6389, 891851, 6011, 6203, 4729, 113143, 70067, 4789, 114577, 183707, 115057, 11113, 5801, 71843, 8999, 3539, 3671, 5261, 58979, 23689, 13007, 5171, 41453, 191467, 73943, 6337, 965191, 24179, 969131, 30347, 195407, 2309, 980999, 75767, 988951, 124367, 8669, 15671, 2341, 9721, 2687, 63691, 7993, 4597, 25679, 1029191, 128903, 32353, 15959, 35911, 26189, 1049611, 65729, 8297, 32993, 2549, 1061959, 82007, 1070231, 2311, 1074379, 11353, 135077, 1082699, 20507, 1095239, 1103639, 69109,

7. Distribution of the primes

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

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)
11010371.0000000.3000001.0000000.0000000.0000000.000000
21007122490.7100000.2200000.7100007.1000007.3333337.000000
31.0006381385000.6380000.1380000.6380008.9859156.27272710.204082
410.0006.5371.0085.5290.6537000.1008000.65370010.2460817.30434811.058000
5100.00066.3038.01958.2840.6630300.0801900.66303010.1427267.95535710.541509
61.000.000668.24965.586602.6630.6682490.0655860.66824910.0787148.17882510.340111
710.000.0006.717.797553.0246.164.7730.6717800.0553020.67178010.0528358.43204310.229221
8100.000.00067.447.1844.802.94262.644.2420.6744720.0480290.67447210.0400748.68487110.161646
91.000.000.000676.570.96942.376.546634.194.4230.6765710.0423770.67657110.0311228.82303910.123747
1010.000.000.0006.782.351.791379.222.3166.403.129.4750.6782350.0379220.67823510.0245988.94887310.096477


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
245231.2500000.5000000.7500001.6666671.0000003.000000
388261.0000000.2500000.7500001.6000001.0000002.000000
416165111.0000000.3125000.6875002.0000002.5000001.833333
532269170.8125000.2812500.5312501.6250001.8000001.545455
6644718290.7343750.2812500.4531251.8076922.0000001.705882
71288826620.6875000.2031250.4843751.8723401.4444442.137931
8256165411240.6445310.1601560.4843751.8750001.5769232.000000
9512325732520.6347660.1425780.4921881.9696971.7804882.032258
101.0246551395160.6396480.1357420.5039062.0153851.9041102.047619
112.0481.3232561.0670.6459960.1250000.5209962.0198471.8417272.067829
124.0962.6484672.1810.6464840.1140140.5324712.0015121.8242192.044049
138.1925.3418454.4960.6519780.1031490.5488282.0169941.8094222.061440
1416.38410.7521.5649.1880.6562500.0954590.5607912.0131061.8508882.043594
1532.76821.5692.93318.6360.6582340.0895080.5687262.0060451.8753202.028298
1665.53643.3635.50437.8590.6616670.0839840.5776822.0104321.8765772.031498
17131.07287.01010.21076.8000.6638340.0778960.5859382.0065491.8550152.028580
18262.144174.41319.130155.2830.6653330.0729750.5923582.0045171.8736532.021914
19524.288349.61936.181313.4380.6668450.0690100.5978362.0045471.8913222.018495
201.048.576700.88968.456632.4330.6684200.0652850.6031352.0047221.8920432.017729
212.097.1521.404.022129.8031.274.2190.6694900.0618950.6075952.0032021.8961522.014789
224.194.3042.812.522246.2612.566.2610.6705570.0587130.6118442.0031891.8971902.013987
238.388.6085.632.979469.6945.163.2850.6715030.0559920.6155122.0028211.9073022.011987
2416.777.21611.282.044897.09110.384.9530.6724620.0534710.6189912.0028561.9099482.011307
2533.554.43222.592.5221.720.11720.872.4050.6733100.0512630.6220462.0025201.9174392.009870
2667.108.86445.236.1743.299.00141.937.1730.6740720.0491590.6249132.0022631.9178932.009216
27134.217.72890.565.0756.338.02684.227.0490.6747620.0472220.6275402.0020501.9211962.008410
28268.435.456181.311.91412.193.679169.118.2350.6754400.0454250.6300152.0020071.9238922.007885
29536.870.912362.955.58323.498.466339.457.1170.6760570.0437690.6322882.0018301.9271022.007218
301.073.741.824726.525.80745.337.977681.187.8300.6766300.0422240.6344062.0016931.9294022.006698
312.147.483.6481.454.193.95987.586.9831.366.606.9760.6771620.0407860.6363762.0015721.9318682.006212
324.294.967.2962.910.550.872169.408.7832.741.142.0890.6776650.0394440.6382222.0014871.9341782.005801
338.589.934.5925.825.138.581328.025.9235.497.112.6580.6781350.0381870.6399482.0013871.9362982.005410
3417.179.869.18411.657.916.318635.789.43411.022.126.8840.6785800.0370080.6415722.0013111.9382292.005076


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
242020011
382020011
4165140113
5329270414
6641851307110
712826620013112
8256411130020120
9512732647039133
101.0241394990072166
112.0482568417201341121
124.09646715431302361230
138.19284527457104281416
1416.3841.5645151.04907911772
1532.7682.9339891.94401.48211.450
1665.5365.5041.8553.64902.76212.741
17131.07210.2103.4056.80505.12215.087
18262.14419.1306.35212.77809.60519.524
19524.28836.18112.03524.146018.147118.033
201.048.57668.45622.87245.584034.239134.216
212.097.152129.80343.29586.508064.808164.994
224.194.304246.26182.036164.2250123.0601123.200
238.388.608469.694156.611313.0830234.7311234.962
2416.777.216897.091299.058598.0330448.4881448.602
2533.554.4321.720.117574.1381.145.9790860.3031859.813
2667.108.8643.299.0011.100.4072.198.59401.649.38611.649.614
27134.217.7286.338.0262.113.0944.224.93203.169.38413.168.641
28268.435.45612.193.6794.063.6918.129.98806.096.48916.097.189
29536.870.91223.498.4667.832.62615.665.840011.748.679111.749.786
301.073.741.82445.337.97715.111.92530.226.052022.667.348122.670.628
312.147.483.64887.586.98329.193.54858.393.435043.793.434143.793.548
324.294.967.296169.408.78356.469.056112.939.727084.701.537184.707.245
338.589.934.592328.025.923109.332.003218.693.9200164.017.7091164.008.213
3417.179.869.184635.789.434211.918.540423.870.8940317.900.8601317.888.573


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
121010010
243120021
386241221
41611383242
532177103653
6642916134988
712862323013211315
8256124715324342838
951225213311949715874
101.024516267249110143111152
112.0481.067554513243297234293
124.0962.1811.1261.055508586484603
138.1924.4962.3012.1951.0491.2381.0041.205
1416.3849.1884.6914.4972.1612.4802.1002.447
1532.76818.6369.5179.1194.4204.9994.3314.886
1665.53637.85919.35118.5088.92810.0378.88210.012
17131.07276.80039.28337.51718.06420.17318.29220.271
18262.144155.28379.29075.99336.72240.80137.02940.731
19524.288313.438159.861153.57774.55881.92574.93182.024
201.048.576632.433321.908310.525151.637164.932151.100164.764
212.097.1521.274.219647.002627.217306.538330.940305.800330.941
224.194.3042.566.2611.303.7491.262.512618.000665.256617.649665.356
238.388.6085.163.2852.621.6102.541.6751.244.9721.336.1491.245.5251.336.639
2416.777.21610.384.9535.269.1985.115.7552.508.4572.681.9512.511.1052.683.440
2533.554.43220.872.40510.579.84210.292.5635.050.1175.382.6815.055.3095.384.298
2667.108.86441.937.17321.246.70220.690.47110.168.46010.798.64110.170.08210.799.990
27134.217.72884.227.04942.655.37841.571.67120.449.23421.660.95220.452.90521.663.958
28268.435.456169.118.23585.598.04783.520.18841.116.46243.440.27941.118.37843.443.116
29536.870.912339.457.117171.716.592167.740.52582.635.56087.096.86382.632.35287.092.342
301.073.741.824681.187.830344.408.111336.779.719166.008.202174.593.082166.001.558174.584.988
312.147.483.6481.366.606.976690.703.446675.903.530333.348.177349.954.255333.369.481349.935.063
324.294.967.2962.741.142.0891.384.884.8481.356.257.241669.255.017701.319.710669.270.455701.296.907
338.589.934.5925.497.112.6582.776.276.1792.720.836.4791.343.298.6571.405.243.3971.343.321.9501.405.248.654
3417.179.869.18411.022.126.8845.564.648.4555.457.478.4292.695.556.2062.815.530.6462.695.543.6952.815.496.337


8. Check for existing Integer Sequences by OEIS

Found in Database : 149, 5, 71, 23, 13, 1, 107, 41, 19, 113, 1031, 29, 1291, 89, 1559, 53, 367, 1, 163, 283,
Found in Database : 149, 5, 71, 23, 13, 107, 41, 19, 113, 1031, 29, 1291, 89, 1559, 53, 367, 163, 283, 2411, 2711, 179, 3019, 397, 3659, 239, 307, 61, 563, 4679, 607, 5399, 349,
Found in Database : 5, 13, 19, 23, 29, 41, 53, 61, 71, 73, 83, 89, 107, 113, 127, 131, 139, 149,