Inhaltsverzeichnis

Development of
Algorithmic Constructions

12:04:00
Deutsch
19.Apr 2024

Polynom = x^2-56x+151

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) = 151 = 151
f(1) = 3 = 3
f(2) = 43 = 43
f(3) = 1 = 1
f(4) = 57 = 3*19
f(5) = 13 = 13
f(6) = 149 = 149
f(7) = 3 = 3
f(8) = 233 = 233
f(9) = 17 = 17
f(10) = 309 = 3*103
f(11) = 43 = 43
f(12) = 377 = 13*29
f(13) = 51 = 3*17
f(14) = 437 = 19*23
f(15) = 29 = 29
f(16) = 489 = 3*163
f(17) = 1 = 1
f(18) = 533 = 13*41
f(19) = 69 = 3*23
f(20) = 569 = 569
f(21) = 73 = 73
f(22) = 597 = 3*199
f(23) = 19 = 19
f(24) = 617 = 617
f(25) = 39 = 3*13
f(26) = 629 = 17*37
f(27) = 79 = 79
f(28) = 633 = 3*211
f(29) = 79 = 79
f(30) = 629 = 17*37
f(31) = 39 = 3*13
f(32) = 617 = 617
f(33) = 19 = 19
f(34) = 597 = 3*199
f(35) = 73 = 73
f(36) = 569 = 569
f(37) = 69 = 3*23
f(38) = 533 = 13*41
f(39) = 1 = 1
f(40) = 489 = 3*163
f(41) = 29 = 29
f(42) = 437 = 19*23
f(43) = 51 = 3*17
f(44) = 377 = 13*29
f(45) = 43 = 43
f(46) = 309 = 3*103
f(47) = 17 = 17
f(48) = 233 = 233
f(49) = 3 = 3
f(50) = 149 = 149
f(51) = 13 = 13
f(52) = 57 = 3*19
f(53) = 1 = 1
f(54) = 43 = 43
f(55) = 3 = 3
f(56) = 151 = 151
f(57) = 13 = 13
f(58) = 267 = 3*89
f(59) = 41 = 41
f(60) = 391 = 17*23
f(61) = 57 = 3*19
f(62) = 523 = 523
f(63) = 37 = 37
f(64) = 663 = 3*13*17
f(65) = 23 = 23
f(66) = 811 = 811
f(67) = 111 = 3*37
f(68) = 967 = 967
f(69) = 131 = 131
f(70) = 1131 = 3*13*29
f(71) = 19 = 19
f(72) = 1303 = 1303
f(73) = 87 = 3*29
f(74) = 1483 = 1483
f(75) = 197 = 197
f(76) = 1671 = 3*557
f(77) = 221 = 13*17
f(78) = 1867 = 1867
f(79) = 123 = 3*41
f(80) = 2071 = 19*109
f(81) = 17 = 17
f(82) = 2283 = 3*761
f(83) = 299 = 13*23
f(84) = 2503 = 2503
f(85) = 327 = 3*109
f(86) = 2731 = 2731
f(87) = 89 = 89
f(88) = 2967 = 3*23*43
f(89) = 193 = 193
f(90) = 3211 = 13*13*19
f(91) = 417 = 3*139
f(92) = 3463 = 3463
f(93) = 449 = 449
f(94) = 3723 = 3*17*73
f(95) = 241 = 241
f(96) = 3991 = 13*307
f(97) = 129 = 3*43
f(98) = 4267 = 17*251
f(99) = 551 = 19*29
f(100) = 4551 = 3*37*41

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-56x+151

f(0)=151
f(1)=3
f(2)=43
f(3)=1
f(4)=19
f(5)=13
f(6)=149
f(7)=1
f(8)=233
f(9)=17
f(10)=103
f(11)=1
f(12)=29
f(13)=1
f(14)=23
f(15)=1
f(16)=163
f(17)=1
f(18)=41
f(19)=1
f(20)=569
f(21)=73
f(22)=199
f(23)=1
f(24)=617
f(25)=1
f(26)=37
f(27)=79
f(28)=211
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)=89
f(59)=1
f(60)=1
f(61)=1
f(62)=523
f(63)=1
f(64)=1
f(65)=1
f(66)=811
f(67)=1
f(68)=967
f(69)=131
f(70)=1
f(71)=1
f(72)=1303
f(73)=1
f(74)=1483
f(75)=197
f(76)=557
f(77)=1
f(78)=1867
f(79)=1
f(80)=109
f(81)=1
f(82)=761
f(83)=1
f(84)=2503
f(85)=1
f(86)=2731
f(87)=1
f(88)=1
f(89)=193
f(90)=1
f(91)=139
f(92)=3463
f(93)=449
f(94)=1
f(95)=241
f(96)=307
f(97)=1
f(98)=251
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-56x+151 could be written as f(y)= y^2-633 with x=y+28

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
f'(x)>2x-57 with x > 25

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

151, 3, 43, 1, 19, 13, 149, 1, 233, 17, 103, 1, 29, 1, 23, 1, 163, 1, 41, 1, 569, 73, 199, 1, 617, 1, 37, 79, 211, 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, 89, 1, 1, 1, 523, 1, 1, 1, 811, 1, 967, 131, 1, 1, 1303, 1, 1483, 197, 557, 1, 1867, 1, 109, 1, 761, 1, 2503, 1, 2731, 1, 1, 193, 1, 139, 3463, 449, 1, 241, 307, 1, 251, 1, 1, 587, 167, 1, 1, 331, 1, 701, 1, 1, 6091, 1, 2141, 1, 6763, 1, 547, 911, 1, 239, 191, 1, 631, 1049, 2861, 1097, 8971, 1, 1, 1, 3257, 1, 599, 433, 461, 1, 3677, 1, 11467, 487, 277, 1, 317, 787, 12823, 1, 13291, 1, 353, 1, 14251, 1, 641, 937, 5081, 1, 829, 1, 16267, 1033, 1, 1, 1019, 733, 17863, 2267, 1, 1, 1459, 401, 19531, 2477, 6701, 2549, 1, 1, 1, 337, 1, 1, 977, 1, 563, 1, 7901, 1, 839, 1, 24967, 1, 8537, 1621, 26263, 1, 1, 3407, 541, 3491, 1229, 1, 1, 1831, 1, 1, 1597, 1279, 31051, 1, 10589, 1, 32491, 1, 33223, 1, 11321, 1, 1, 1, 1223, 4481, 929, 1, 37003, 1, 37783, 1193, 1, 4871, 39367, 1657, 1, 1, 719, 1, 2459, 1759, 479, 5381, 14489, 1, 607, 1, 2377, 1, 1, 5807, 3607, 1, 1291, 1, 16217, 1, 1, 2083, 691, 3181, 17117, 1619, 52267, 1, 1237, 1, 18041, 853, 1, 1, 709, 1, 1117, 1, 3049, 1217, 1, 1, 19961, 7547, 2099, 2557, 4759, 1949, 1103, 1, 1, 2683, 1583, 1, 21977, 4153, 1, 1, 2957, 659, 23021, 8699, 70123, 1, 71191, 4483, 1, 1, 73351, 3079, 1, 1, 1, 1, 76651, 3217, 4093, 9791, 26297, 1, 1861, 1, 81163, 601, 27437, 797, 1, 1, 84631, 2663, 773, 10799, 6691, 1, 2383, 1, 29789, 5623, 6967, 1, 5399, 11549, 1069, 5851, 1, 1, 95467, 12011, 32237, 1, 1, 1, 99223, 1, 1, 12641, 683, 1, 7927, 6481, 34781, 1, 1187, 1, 1, 13451, 1, 1, 3779, 2297, 110923, 1, 1627, 743, 1, 2381, 114967, 1, 2281, 14627, 117703, 4933, 119083, 1, 3089, 7573, 121867, 5107, 941, 15497, 1, 1, 6637, 1321, 1747, 1, 42989, 1, 130411, 1, 4547, 8287, 2339, 1289, 3643, 5647, 3169, 8563, 1, 1, 10711, 1, 1, 769, 47417, 1, 11059, 3011, 6317, 18257, 1, 971, 1667, 1, 149911, 1, 1741, 19031, 1, 1, 1, 1, 1, 9811, 157771, 6607, 1, 20021, 53657, 10111, 1, 1, 1, 20627, 1, 1, 9851, 1753, 169111, 1, 56921, 1, 172423, 7219, 174091, 1, 1429, 5519, 1, 1, 179143, 1, 4637, 1, 7937, 3821, 1789, 1, 1, 23357, 1433, 3929, 189463, 1487, 63737, 1847, 11351, 1, 1, 6113, 3853, 1, 1, 1, 6899, 25121, 67289, 1, 15667, 2131, 205483, 25799, 1607, 1531, 16087, 1, 210967, 1, 70937, 26717, 214663, 1, 216523, 13591, 72797, 1, 11593, 1, 222151, 1, 1, 1, 225943, 1, 1031, 1, 1, 1, 5651, 1, 17971, 7331, 1, 29567, 2179, 1, 5569, 1, 3499, 1, 243403, 1, 245383, 1, 82457, 1, 249367, 1, 6131, 31547, 1, 31799, 8807, 2671, 1, 1, 6653, 32561, 15383, 10939, 1, 1, 2393, 1, 1, 11197, 1, 33851, 90617, 1, 273943, 1, 276043, 1823, 92717, 2053, 21559, 5861, 282391, 1, 94841, 1231, 22051, 1, 1, 9059, 96989, 18253, 1, 1, 1499, 37049, 1, 18661, 299671, 1, 301867, 37871, 1283, 1, 3877, 1601, 1249, 1, 103577, 2293, 312967, 1, 24247, 1163, 1, 1, 13901, 1, 321991, 1, 108089, 10169, 1301, 6827, 2207, 1, 1, 1, 333451, 6971, 19751, 10529, 8669, 42407, 1, 1, 1, 2687, 8849, 1, 9391, 1, 349831, 1, 1, 1699, 12227, 1, 1, 44771, 1, 3467, 3319, 1, 364183, 1, 122201, 1999, 28387, 15427, 21851, 23293, 5419, 1, 1, 15733, 378823, 47507, 1, 1, 383767, 1, 1, 48437, 129581, 1, 1637, 1, 9157, 1543, 5743, 1, 1, 1, 30871, 1, 1307, 25321, 2063, 16987, 1, 2699, 137177, 25801, 24359, 4327, 10163, 4019, 8221, 52571, 5779, 1, 424471, 1, 4909, 53549, 1783, 17959, 18797, 27103, 1, 1, 10177, 18289, 1, 1, 1, 13883, 12043, 9311, 23593, 1, 1, 4349, 453643, 9479, 19841, 14303, 9001, 1, 15923, 1, 1, 1, 155741, 29287, 36151, 1, 472711, 3119, 158489, 29803, 36787, 1, 481003, 3547, 1, 60647, 25609, 1, 489367, 1, 164057, 1, 21521, 1, 4567, 1, 8783, 1, 6373, 1, 1, 63467, 3947, 3989, 30119, 1, 39607, 1, 172589, 64901, 22637, 1, 523543, 1, 175481, 1, 12911, 1, 532267, 1, 178397, 1973, 538123, 22483, 28477, 1, 1, 1, 546967, 1, 1, 68927, 14177, 1, 1721, 2903, 1, 35023, 1, 5417, 564871, 23599, 567883, 1873, 190301, 1, 4129, 23977, 576967, 1, 193337, 1, 44851, 1, 586123, 1, 8539, 1801, 1571, 1, 595351, 1, 10499, 2027, 601543, 1933, 604651, 1, 1, 38083, 610891, 1, 1901, 76949, 205721, 38671, 620311, 1, 1, 1, 208877, 4133, 629803, 6577, 1, 2333, 212057, 2749, 14869, 1, 3229, 1, 215261, 20231, 6301, 27109, 2729, 6287, 1, 10267, 1, 13757, 1693, 1, 1, 83357, 39323, 1, 6163, 5261, 1, 1, 678343, 1, 1931, 1, 7873, 3301, 16787, 1, 691591, 1, 5387, 1, 698263, 1, 701611, 87911, 234989, 4649, 1, 1, 3373, 44587, 238361, 89597, 3251, 1, 37993, 1, 14221, 1, 25127, 2341, 3833, 3163, 245177, 23039, 1, 1, 2203, 1, 248621, 1, 749323, 15647, 1, 1, 3191, 2311, 5099, 31729, 58711, 11953, 1951, 1, 5101, 1, 773767, 7457, 15241, 1, 780823, 1, 1, 7559, 1, 98711, 21391, 8263, 19391, 49801, 20477, 100049, 802183, 1, 42409, 2969, 20753, 25349, 1, 1997, 4231, 102299, 11887, 1, 823831, 1, 5953, 4507, 1, 8009, 1, 1, 1, 1, 280697, 105491, 1, 35317, 1, 1, 2609, 53437, 3469, 1, 5153, 1, 288089, 54133, 867991, 1, 1, 109199, 15359, 6451, 4463, 1, 882967, 1907, 4049, 1, 30707, 1, 68791, 1, 299357, 1, 53051, 37657, 1, 2767, 1, 1, 12511, 1, 7001, 8837, 8297, 115361, 924811, 1, 1, 2237, 1, 6871, 936391, 39097, 32423, 1,

6. Sequence of the polynom (only primes)

151, 3, 43, 19, 13, 149, 233, 17, 103, 29, 23, 163, 41, 569, 73, 199, 617, 37, 79, 211, 89, 523, 811, 967, 131, 1303, 1483, 197, 557, 1867, 109, 761, 2503, 2731, 193, 139, 3463, 449, 241, 307, 251, 587, 167, 331, 701, 6091, 2141, 6763, 547, 911, 239, 191, 631, 1049, 2861, 1097, 8971, 3257, 599, 433, 461, 3677, 11467, 487, 277, 317, 787, 12823, 13291, 353, 14251, 641, 937, 5081, 829, 16267, 1033, 1019, 733, 17863, 2267, 1459, 401, 19531, 2477, 6701, 2549, 337, 977, 563, 7901, 839, 24967, 8537, 1621, 26263, 3407, 541, 3491, 1229, 1831, 1597, 1279, 31051, 10589, 32491, 33223, 11321, 1223, 4481, 929, 37003, 37783, 1193, 4871, 39367, 1657, 719, 2459, 1759, 479, 5381, 14489, 607, 2377, 5807, 3607, 1291, 16217, 2083, 691, 3181, 17117, 1619, 52267, 1237, 18041, 853, 709, 1117, 3049, 1217, 19961, 7547, 2099, 2557, 4759, 1949, 1103, 2683, 1583, 21977, 4153, 2957, 659, 23021, 8699, 70123, 71191, 4483, 73351, 3079, 76651, 3217, 4093, 9791, 26297, 1861, 81163, 601, 27437, 797, 84631, 2663, 773, 10799, 6691, 2383, 29789, 5623, 6967, 5399, 11549, 1069, 5851, 95467, 12011, 32237, 99223, 12641, 683, 7927, 6481, 34781, 1187, 13451, 3779, 2297, 110923, 1627, 743, 2381, 114967, 2281, 14627, 117703, 4933, 119083, 3089, 7573, 121867, 5107, 941, 15497, 6637, 1321, 1747, 42989, 130411, 4547, 8287, 2339, 1289, 3643, 5647, 3169, 8563, 10711, 769, 47417, 11059, 3011, 6317, 18257, 971, 1667, 149911, 1741, 19031, 9811, 157771, 6607, 20021, 53657, 10111, 20627, 9851, 1753, 169111, 56921, 172423, 7219, 174091, 1429, 5519, 179143, 4637, 7937, 3821, 1789, 23357, 1433, 3929, 189463, 1487, 63737, 1847, 11351, 6113, 3853, 6899, 25121, 67289, 15667, 2131, 205483, 25799, 1607, 1531, 16087, 210967, 70937, 26717, 214663, 216523, 13591, 72797, 11593, 222151, 225943, 1031, 5651, 17971, 7331, 29567, 2179, 5569, 3499, 243403, 245383, 82457, 249367, 6131, 31547, 31799, 8807, 2671, 6653, 32561, 15383, 10939, 2393, 11197, 33851, 90617, 273943, 276043, 1823, 92717, 2053, 21559, 5861, 282391, 94841, 1231, 22051, 9059, 96989, 18253, 1499, 37049, 18661, 299671, 301867, 37871, 1283, 3877, 1601, 1249, 103577, 2293, 312967, 24247, 1163, 13901, 321991, 108089, 10169, 1301, 6827, 2207, 333451, 6971, 19751, 10529, 8669, 42407, 2687, 8849, 9391, 349831, 1699, 12227, 44771, 3467, 3319, 364183, 122201, 1999, 28387, 15427, 21851, 23293, 5419, 15733, 378823, 47507, 383767, 48437, 129581, 1637, 9157, 1543, 5743, 30871, 1307, 25321, 2063, 16987, 2699, 137177, 25801, 24359, 4327, 10163, 4019, 8221, 52571, 5779, 424471, 4909, 53549, 1783, 17959, 18797, 27103, 10177, 18289, 13883, 12043, 9311, 23593, 4349, 453643, 9479, 19841, 14303, 9001, 15923, 155741, 29287, 36151, 472711, 3119, 158489, 29803, 36787, 481003, 3547, 60647, 25609, 489367, 164057, 21521, 4567, 8783, 6373, 63467, 3947, 3989, 30119, 39607, 172589, 64901, 22637, 523543, 175481, 12911, 532267, 178397, 1973, 538123, 22483, 28477, 546967, 68927, 14177, 1721, 2903, 35023, 5417, 564871, 23599, 567883, 1873, 190301, 4129, 23977, 576967, 193337, 44851, 586123, 8539, 1801, 1571, 595351, 10499, 2027, 601543, 1933, 604651, 38083, 610891, 1901, 76949, 205721, 38671, 620311, 208877, 4133, 629803, 6577, 2333, 212057, 2749, 14869, 3229, 215261, 20231, 6301, 27109, 2729, 6287, 10267, 13757, 1693, 83357, 39323, 6163, 5261, 678343, 1931, 7873, 3301, 16787, 691591, 5387, 698263, 701611, 87911, 234989, 4649, 3373, 44587, 238361, 89597, 3251, 37993, 14221, 25127, 2341, 3833, 3163, 245177, 23039, 2203, 248621, 749323, 15647, 3191, 2311, 5099, 31729, 58711, 11953, 1951, 5101, 773767, 7457, 15241, 780823, 7559, 98711, 21391, 8263, 19391, 49801, 20477, 100049, 802183, 42409, 2969, 20753, 25349, 1997, 4231, 102299, 11887, 823831, 5953, 4507, 8009, 280697, 105491, 35317, 2609, 53437, 3469, 5153, 288089, 54133, 867991, 109199, 15359, 6451, 4463, 882967, 1907, 4049, 30707, 68791, 299357, 53051, 37657, 2767, 12511, 7001, 8837, 8297, 115361, 924811, 2237, 6871, 936391, 39097, 32423,

7. Distribution of the primes

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

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)
1108440.8000000.4000000.8000000.0000000.0000000.000000
21003415190.3400000.1500000.3400004.2500003.7500004.750000
31.0005881084800.5880000.1080000.58800017.2941177.20000025.263159
410.0006.4437735.6700.6443000.0773000.64430010.9574837.15740711.812500
5100.00065.7136.19959.5140.6571300.0619900.65713010.1991318.01940510.496296
61.000.000664.30250.415613.8870.6643020.0504150.66430210.1091418.13276310.315001
710.000.0006.683.388427.9716.255.4170.6683390.0427970.66833910.0607678.48896110.189851
8100.000.00067.148.8963.709.97463.438.9220.6714890.0371000.67148910.0471348.66875110.141438
91.000.000.000673.881.23532.755.708641.125.5270.6738810.0327560.67388110.0356268.82909410.106186
1010.000.000.0006.758.117.799293.084.0056.465.033.7940.6758120.0293080.67581210.0286488.94757010.083881


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
244221.0000000.5000000.5000001.3333331.0000002.000000
387430.8750000.5000000.3750001.7500002.0000001.500000
41610460.6250000.2500000.3750001.4285711.0000002.000000
532176110.5312500.1875000.3437501.7000001.5000001.833333
664187110.2812500.1093750.1718751.0588241.1666671.000000
71284818300.3750000.1406250.2343752.6666672.5714292.727273
825612233890.4765620.1289060.3476562.5416671.8333332.966667
9512279612180.5449220.1191410.4257812.2868851.8484852.449438
101.0246071124950.5927730.1093750.4833982.1756271.8360662.270642
112.0481.2591951.0640.6147460.0952150.5195312.0741351.7410712.149495
124.0962.6013472.2540.6350100.0847170.5502932.0659251.7794872.118421
138.1925.2596484.6110.6419680.0791020.5628662.0219151.8674352.045696
1416.38410.6231.2079.4160.6483760.0736690.5747072.0199661.8626542.042073
1532.76821.3592.28519.0740.6518250.0697330.5820922.0106371.8931232.025701
1665.53642.9684.24638.7220.6556400.0647890.5908512.0117051.8582062.030093
17131.07286.2517.98078.2710.6580430.0608830.5971602.0073311.8794162.021357
18262.144173.28514.820158.4650.6610300.0565340.6044962.0090781.8571432.024569
19524.288347.55927.901319.6580.6629160.0532170.6096992.0057071.8826592.017215
201.048.576696.83752.574644.2630.6645560.0501380.6144172.0049461.8843052.015476
212.097.1521.396.29099.8961.296.3940.6658030.0476340.6181692.0037541.9001032.012213
224.194.3042.797.599190.2752.607.3240.6670000.0453650.6216342.0035951.9047312.011213
238.388.6085.604.493363.2595.241.2340.6681080.0433040.6248042.0033231.9091262.010197
2416.777.21611.226.810694.13510.532.6750.6691700.0413740.6277962.0031801.9108542.009579
2533.554.43222.485.7001.328.70121.156.9990.6701260.0395980.6305282.0028571.9141822.008702
2667.108.86445.031.0342.547.71942.483.3150.6710150.0379640.6330512.0026521.9174512.008003
27134.217.72890.170.0784.897.35985.272.7190.6718190.0364880.6353312.0023991.9222522.007205
28268.435.456180.546.4429.424.374171.122.0680.6725880.0351090.6374792.0022881.9243792.006762
29536.870.912361.466.81418.160.836343.305.9780.6732840.0338270.6394572.0020711.9270072.006205
301.073.741.824723.648.67135.044.489688.604.1820.6739500.0326380.6413132.0019781.9296742.005803
312.147.483.6481.448.626.47467.692.2431.380.934.2310.6745690.0315220.6430482.0018371.9316092.005411
324.294.967.2962.899.761.943130.925.1992.768.836.7440.6751530.0304830.6446702.0017321.9341242.005046
338.589.934.5925.804.193.718253.516.2115.550.677.5070.6756970.0295130.6461842.0016111.9363442.004696
3417.179.869.18411.617.181.919491.380.63011.125.801.2890.6762090.0286020.6476072.0015151.9382612.004404


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
122200101
242200101
384221111
4164221111
5326243111
6647343211
7128181443915
825633294317112
951261574330127
101.0241121084348160
112.04819519143841107
124.096347343431681175
138.192648644433141330
1416.3841.2071.203436121591
1532.7682.2852.281431.16711.114
1665.5364.2464.242432.14912.093
17131.0727.9807.976434.02513.951
18262.14414.82014.816437.44417.372
19524.28827.90127.8974313.917113.980
201.048.57652.57452.5704326.328126.242
212.097.15299.89699.8924349.852150.040
224.194.304190.275190.2714395.031195.240
238.388.608363.259363.25543181.4621181.793
2416.777.216694.135694.13143347.2431346.888
2533.554.4321.328.7011.328.69743664.6771664.020
2667.108.8642.547.7192.547.715431.274.66911.273.046
27134.217.7284.897.3594.897.355432.449.49112.447.864
28268.435.4569.424.3749.424.370434.712.66914.711.701
29536.870.91218.160.83618.160.832439.078.80719.082.025
301.073.741.82435.044.48935.044.4854317.521.819117.522.666
312.147.483.64867.692.24367.692.2394333.847.063133.845.176
324.294.967.296130.925.199130.925.1954365.462.202165.462.993
338.589.934.592253.516.211253.516.20743126.762.4041126.753.803
3417.179.869.184491.380.630491.380.62643245.687.6501245.692.976


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
121000100
242100200
383200210
4166410321
53211822423
66411822423
71283014158976
825689365226192420
95122188912857545948
101.024495204290128115133119
112.0481.064464599273244290257
124.0962.2549981.255591519615529
138.1924.6112.0982.5121.2021.0961.2361.077
1416.3849.4164.2655.1502.4772.2142.4962.229
1532.76819.0748.76910.3044.9964.5085.0644.506
1665.53638.72217.89420.82710.0799.20910.1989.236
17131.07278.27136.58041.69020.33418.66820.37818.891
18262.144158.46574.22484.24041.08838.05241.20238.123
19524.288319.658150.757168.90082.86977.12282.73076.937
201.048.576644.263303.996340.266166.542155.632166.345155.744
212.097.1521.296.394614.679681.714334.635313.640334.667313.452
224.194.3042.607.3241.239.7941.367.529671.620631.916671.824631.964
238.388.6085.241.2342.500.0702.741.1631.348.4491.272.6321.347.5901.272.563
2416.777.21610.532.6755.035.6185.497.0562.705.3192.560.8762.705.0312.561.449
2533.554.43221.156.99910.135.39611.021.6025.424.8185.153.9315.426.0515.152.199
2667.108.86442.483.31520.397.21522.086.09910.882.47810.358.41810.881.84710.360.572
27134.217.72885.272.71941.016.33544.256.38321.823.83620.809.44421.816.69320.822.746
28268.435.456171.122.06882.449.71088.672.35743.748.93341.808.29443.743.41841.821.423
29536.870.912343.305.978165.665.013177.640.96487.682.88583.970.28987.674.54783.978.257
301.073.741.824688.604.182332.780.113355.824.068175.713.863168.578.496175.724.118168.587.705
312.147.483.6481.380.934.231668.205.678712.728.552352.123.823338.345.285352.117.903338.347.220
324.294.967.2962.768.836.7441.341.416.0461.427.420.697705.536.271678.880.927705.518.618678.900.928
338.589.934.5925.550.677.5072.692.141.7452.858.535.7611.413.450.4661.361.894.4621.413.407.6761.361.924.903
3417.179.869.18411.125.801.2895.401.745.4415.724.055.8472.831.346.6292.731.598.7032.831.232.8172.731.623.140


8. Check for existing Integer Sequences by OEIS

Found in Database : 151, 3, 43, 1, 19, 13, 149, 1, 233, 17, 103, 1, 29, 1, 23, 1, 163, 1, 41, 1,
Found in Database : 151, 3, 43, 19, 13, 149, 233, 17, 103, 29, 23, 163, 41, 569, 73, 199, 617, 37, 79, 211,
Found in Database : 3, 13, 17, 19, 23, 29, 37, 41, 43, 73, 79, 89, 103, 109, 131, 139, 149,