Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:47:12
Deutsch
19.Apr 2024

Polynom = x^2+82x-3

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) = 3 = 3
f(1) = 5 = 5
f(2) = 165 = 3*5*11
f(3) = 63 = 3*3*7
f(4) = 341 = 11*31
f(5) = 27 = 3*3*3
f(6) = 525 = 3*5*5*7
f(7) = 155 = 5*31
f(8) = 717 = 3*239
f(9) = 51 = 3*17
f(10) = 917 = 7*131
f(11) = 255 = 3*5*17
f(12) = 1125 = 3*3*5*5*5
f(13) = 77 = 7*11
f(14) = 1341 = 3*3*149
f(15) = 363 = 3*11*11
f(16) = 1565 = 5*313
f(17) = 105 = 3*5*7
f(18) = 1797 = 3*599
f(19) = 479 = 479
f(20) = 2037 = 3*7*97
f(21) = 135 = 3*3*3*5
f(22) = 2285 = 5*457
f(23) = 603 = 3*3*67
f(24) = 2541 = 3*7*11*11
f(25) = 167 = 167
f(26) = 2805 = 3*5*11*17
f(27) = 735 = 3*5*7*7
f(28) = 3077 = 17*181
f(29) = 201 = 3*67
f(30) = 3357 = 3*3*373
f(31) = 875 = 5*5*5*7
f(32) = 3645 = 3*3*3*3*3*3*5
f(33) = 237 = 3*79
f(34) = 3941 = 7*563
f(35) = 1023 = 3*11*31
f(36) = 4245 = 3*5*283
f(37) = 275 = 5*5*11
f(38) = 4557 = 3*7*7*31
f(39) = 1179 = 3*3*131
f(40) = 4877 = 4877
f(41) = 315 = 3*3*5*7
f(42) = 5205 = 3*5*347
f(43) = 1343 = 17*79
f(44) = 5541 = 3*1847
f(45) = 357 = 3*7*17
f(46) = 5885 = 5*11*107
f(47) = 1515 = 3*5*101
f(48) = 6237 = 3*3*3*3*7*11
f(49) = 401 = 401
f(50) = 6597 = 3*3*733
f(51) = 1695 = 3*5*113
f(52) = 6965 = 5*7*199
f(53) = 447 = 3*149
f(54) = 7341 = 3*2447
f(55) = 1883 = 7*269
f(56) = 7725 = 3*5*5*103
f(57) = 495 = 3*3*5*11
f(58) = 8117 = 8117
f(59) = 2079 = 3*3*3*7*11
f(60) = 8517 = 3*17*167
f(61) = 545 = 5*109
f(62) = 8925 = 3*5*5*7*17
f(63) = 2283 = 3*761
f(64) = 9341 = 9341
f(65) = 597 = 3*199
f(66) = 9765 = 3*3*5*7*31
f(67) = 2495 = 5*499
f(68) = 10197 = 3*3*11*103
f(69) = 651 = 3*7*31
f(70) = 10637 = 11*967
f(71) = 2715 = 3*5*181
f(72) = 11085 = 3*5*739
f(73) = 707 = 7*101
f(74) = 11541 = 3*3847
f(75) = 2943 = 3*3*3*109
f(76) = 12005 = 5*7*7*7*7
f(77) = 765 = 3*3*5*17
f(78) = 12477 = 3*4159
f(79) = 3179 = 11*17*17
f(80) = 12957 = 3*7*617
f(81) = 825 = 3*5*5*11
f(82) = 13445 = 5*2689
f(83) = 3423 = 3*7*163
f(84) = 13941 = 3*3*1549
f(85) = 887 = 887
f(86) = 14445 = 3*3*3*5*107
f(87) = 3675 = 3*5*5*7*7
f(88) = 14957 = 14957
f(89) = 951 = 3*317
f(90) = 15477 = 3*7*11*67
f(91) = 3935 = 5*787
f(92) = 16005 = 3*5*11*97
f(93) = 1017 = 3*3*113
f(94) = 16541 = 7*17*139
f(95) = 4203 = 3*3*467
f(96) = 17085 = 3*5*17*67
f(97) = 1085 = 5*7*31
f(98) = 17637 = 3*5879
f(99) = 4479 = 3*1493
f(100) = 18197 = 31*587

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+82x-3

f(0)=3
f(1)=5
f(2)=11
f(3)=7
f(4)=31
f(5)=1
f(6)=1
f(7)=1
f(8)=239
f(9)=17
f(10)=131
f(11)=1
f(12)=1
f(13)=1
f(14)=149
f(15)=1
f(16)=313
f(17)=1
f(18)=599
f(19)=479
f(20)=97
f(21)=1
f(22)=457
f(23)=67
f(24)=1
f(25)=167
f(26)=1
f(27)=1
f(28)=181
f(29)=1
f(30)=373
f(31)=1
f(32)=1
f(33)=79
f(34)=563
f(35)=1
f(36)=283
f(37)=1
f(38)=1
f(39)=1
f(40)=4877
f(41)=1
f(42)=347
f(43)=1
f(44)=1847
f(45)=1
f(46)=107
f(47)=101
f(48)=1
f(49)=401
f(50)=733
f(51)=113
f(52)=199
f(53)=1
f(54)=2447
f(55)=269
f(56)=103
f(57)=1
f(58)=8117
f(59)=1
f(60)=1
f(61)=109
f(62)=1
f(63)=761
f(64)=9341
f(65)=1
f(66)=1
f(67)=499
f(68)=1
f(69)=1
f(70)=967
f(71)=1
f(72)=739
f(73)=1
f(74)=3847
f(75)=1
f(76)=1
f(77)=1
f(78)=4159
f(79)=1
f(80)=617
f(81)=1
f(82)=2689
f(83)=163
f(84)=1549
f(85)=887
f(86)=1
f(87)=1
f(88)=14957
f(89)=317
f(90)=1
f(91)=787
f(92)=1
f(93)=1
f(94)=139
f(95)=467
f(96)=1
f(97)=1
f(98)=5879
f(99)=1493

b) Substitution of the polynom
The polynom f(x)=x^2+82x-3 could be written as f(y)= y^2-1684 with x=y-41

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+41
f'(x)>2x+81

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

3, 5, 11, 7, 31, 1, 1, 1, 239, 17, 131, 1, 1, 1, 149, 1, 313, 1, 599, 479, 97, 1, 457, 67, 1, 167, 1, 1, 181, 1, 373, 1, 1, 79, 563, 1, 283, 1, 1, 1, 4877, 1, 347, 1, 1847, 1, 107, 101, 1, 401, 733, 113, 199, 1, 2447, 269, 103, 1, 8117, 1, 1, 109, 1, 761, 9341, 1, 1, 499, 1, 1, 967, 1, 739, 1, 3847, 1, 1, 1, 4159, 1, 617, 1, 2689, 163, 1549, 887, 1, 1, 14957, 317, 1, 787, 1, 1, 139, 467, 1, 1, 5879, 1493, 587, 1, 1, 433, 307, 409, 797, 337, 977, 1301, 7039, 1, 1, 1, 677, 809, 1531, 1, 3371, 1993, 2693, 1, 1, 191, 25541, 1, 1747, 1327, 1, 1, 1621, 1, 1, 1787, 877, 2441, 1, 1, 3373, 1097, 1151, 1, 6361, 383, 10847, 1, 1, 1, 1, 1, 1657, 1759, 2371, 1, 36341, 3061, 1, 1, 1, 1, 5531, 1, 1, 1, 1, 1, 8233, 1, 13999, 241, 1, 1, 8737, 919, 1, 11243, 1009, 1, 601, 229, 1429, 1, 3203, 449, 1, 1, 3323, 503, 2417, 1, 1667, 1, 1, 1, 661, 643, 641, 1, 1087, 1997, 1709, 1, 1, 1607, 19447, 3677, 1, 997, 60317, 1, 757, 281, 277, 1, 653, 1, 613, 811, 21799, 1831, 9491, 1, 1, 1, 1, 1439, 13921, 1, 7853, 4451, 1, 1, 857, 1, 1, 1693, 5003, 1, 76157, 2131, 25759, 1, 5227, 6581, 1033, 1669, 1, 1, 1, 1, 82997, 1, 1, 5297, 28447, 1, 3461, 1, 4177, 22079, 1, 1, 1, 7561, 1, 821, 1, 1553, 8527, 1, 1, 4783, 1, 673, 947, 1, 941, 1, 33359, 1, 1283, 1, 2281, 1, 11549, 2179, 1, 353, 3229, 6701, 1, 1, 21841, 1, 36847, 27803, 7459, 1, 6661, 863, 1, 1, 859, 9721, 16763, 2459, 1583, 853, 40039, 839, 11047, 1, 1, 7727, 1, 1, 25153, 1, 1, 1, 14293, 1, 26017, 991, 1, 1181, 8867, 743, 19211, 1, 45319, 1367, 1, 2879, 1, 1663, 3121, 1, 15773, 1699, 143477, 1, 1381, 3313, 48847, 1, 4231, 827, 1609, 1, 1, 1, 30553, 1, 1559, 38783, 1, 1, 2351, 1, 7577, 1999, 2143, 1, 2423, 1, 1, 1, 1, 3467, 3413, 2801, 1, 10607, 2707, 14281, 1, 1, 1, 1409, 421, 1, 35449, 1, 8521, 1, 12043, 1, 1, 1, 1, 1321, 4129, 3889, 1123, 2243, 12619, 2377, 1, 1777, 1031, 1, 1, 1, 65447, 1, 1, 1, 1, 1, 1, 1, 1163, 4259, 68447, 51563, 1973, 1, 208997, 1, 6389, 2647, 1289, 2543, 214541, 1, 1, 10867, 1, 4567, 4493, 1, 1, 1, 4391, 6247, 2657, 1, 1, 57179, 10937, 1, 4211, 19381, 1, 14657, 5233, 1, 1, 4967, 1, 1, 16091, 1, 34763, 1, 3271, 3079, 11777, 20693, 249317, 1, 1117, 1, 1, 1, 4643, 4273, 1, 521, 5087, 1447, 1, 1823, 1, 1, 17707, 1, 267677, 1, 1, 1, 1, 22741, 273941, 1, 1, 1, 8429, 1, 280277, 1, 1, 2531, 94847, 23801, 8191, 1, 1, 1, 1, 1217, 3449, 1, 5791, 1, 3967, 1, 2477, 2089, 1307, 1, 1, 6359, 1, 25621, 6857, 1, 1279, 1, 313037, 1, 21019, 79103, 15121, 2213, 1, 1783, 1, 20201, 9829, 1, 5939, 6829, 1, 11789, 1, 1, 2803, 27893, 111959, 1, 3221, 1, 340541, 1, 22859, 17203, 115079, 1, 1237, 5813, 1, 1291, 3559, 1733, 2027, 1483, 119039, 1, 119839, 1, 1, 1, 121447, 1, 1, 6133, 369197, 7717, 1, 1, 1, 1, 34231, 31481, 2297, 1, 1259, 10631, 54851, 1, 25763, 1, 18521, 1, 1, 1, 14591, 1453, 44053, 1, 79801, 1, 19121, 100703, 1, 1, 5281, 1, 136399, 1, 1, 34421, 24373, 1, 1, 1901, 6659, 1, 2833, 7057, 1, 26627, 1, 1, 1, 1, 13109, 15497, 1, 1, 12511, 2153, 1579, 27617, 1, 1, 445877, 1, 149519, 1, 1, 1, 1, 12647, 4349, 1, 9007, 38393, 1, 1931, 1, 16649, 51949, 9769, 94057, 1, 157679, 1, 1, 1, 95713, 1, 22921, 1, 1, 1, 1, 40693, 54413, 1, 1, 41161, 1, 1, 33211, 24979, 23857, 1, 1873, 1, 1987, 2887, 1, 1, 102481, 2141, 8179, 1, 6397, 1, 14887, 43541, 15877, 4691, 1, 1, 4951, 1, 1, 1571, 5101, 1, 4111, 4091, 1, 1, 60493, 1, 547397, 2287, 36691, 19709, 184447, 3853, 1, 1, 1, 35051, 26777, 9397, 22613, 1, 63149, 1, 12697, 1, 1871, 4363, 1, 7237, 38699, 1, 11909, 1, 39107, 4201, 1, 1, 53887, 1, 13241, 37337, 3169, 1, 1, 1, 28817, 13789, 11927, 1, 7193, 17027, 2593, 5501, 41179, 10321, 2861, 12967, 1, 1, 1, 13099, 1, 7523, 8447, 1, 212239, 1, 9551, 1, 1, 14653, 215447, 13499, 1, 10853, 72533, 5843, 72893, 1, 11987, 1, 1, 166043, 1, 1, 669077, 1, 1, 1, 1, 1, 678941, 1, 15161, 1, 25391, 1, 98411, 1, 46147, 2551, 3011, 1, 1, 1, 1, 175979, 235199, 1, 141793, 59221, 3769, 4057, 3181, 1, 6043, 15017, 1, 1, 9679, 1, 2633, 1, 4441, 9181, 3187, 61493, 739637, 3089, 1, 2357, 1, 1, 150001, 1, 251159, 1, 252319, 1, 21727, 1, 254647, 1789, 7309, 1, 1, 9199, 7823, 1, 1, 9283, 1, 16319, 7477, 39343, 1, 1, 113171, 1, 53051, 7121, 266447, 1, 32117, 1, 3319, 11887, 1, 1, 1, 67961, 38921, 51197, 1, 1, 8501, 1913, 276079, 1, 1, 1, 119363, 2251, 1, 10513, 1, 70393, 8219, 1, 5153, 213023, 1, 1, 171529, 1, 41017, 53951, 288359, 14449, 1, 1, 1, 1, 6491, 3659, 5399, 10499, 4397, 11071, 1, 1, 81031, 6203, 1, 44851, 2011, 1, 53101, 15077, 1, 8111, 101149, 6911, 26119, 1, 305999, 229979, 6271, 1, 185137, 1, 1, 58217, 5657, 1, 1, 1, 14939, 9431, 21001, 1, 4373, 79241, 1, 1, 318919, 1, 960677, 1, 1, 241643, 2713, 20219, 1, 1, 1, 61151, 3301, 2339, 196873, 20549, 1, 1, 1, 1, 20333, 2521, 333439, 1, 1, 4933, 4219, 1, 7499, 1, 3643, 1, 92767, 17041, 1, 64157, 342847, 28627, 1, 1, 20327, 37097, 20407, 1, 2069, 1, 116549, 65687, 3343, 3517, 1057157, 22067, 1, 1, 1, 1, 97231, 1, 2309, 1, 359279, 2903,

6. Sequence of the polynom (only primes)

3, 5, 11, 7, 31, 239, 17, 131, 149, 313, 599, 479, 97, 457, 67, 167, 181, 373, 79, 563, 283, 4877, 347, 1847, 107, 101, 401, 733, 113, 199, 2447, 269, 103, 8117, 109, 761, 9341, 499, 967, 739, 3847, 4159, 617, 2689, 163, 1549, 887, 14957, 317, 787, 139, 467, 5879, 1493, 587, 433, 307, 409, 797, 337, 977, 1301, 7039, 677, 809, 1531, 3371, 1993, 2693, 191, 25541, 1747, 1327, 1621, 1787, 877, 2441, 3373, 1097, 1151, 6361, 383, 10847, 1657, 1759, 2371, 36341, 3061, 5531, 8233, 13999, 241, 8737, 919, 11243, 1009, 601, 229, 1429, 3203, 449, 3323, 503, 2417, 1667, 661, 643, 641, 1087, 1997, 1709, 1607, 19447, 3677, 997, 60317, 757, 281, 277, 653, 613, 811, 21799, 1831, 9491, 1439, 13921, 7853, 4451, 857, 1693, 5003, 76157, 2131, 25759, 5227, 6581, 1033, 1669, 82997, 5297, 28447, 3461, 4177, 22079, 7561, 821, 1553, 8527, 4783, 673, 947, 941, 33359, 1283, 2281, 11549, 2179, 353, 3229, 6701, 21841, 36847, 27803, 7459, 6661, 863, 859, 9721, 16763, 2459, 1583, 853, 40039, 839, 11047, 7727, 25153, 14293, 26017, 991, 1181, 8867, 743, 19211, 45319, 1367, 2879, 1663, 3121, 15773, 1699, 143477, 1381, 3313, 48847, 4231, 827, 1609, 30553, 1559, 38783, 2351, 7577, 1999, 2143, 2423, 3467, 3413, 2801, 10607, 2707, 14281, 1409, 421, 35449, 8521, 12043, 1321, 4129, 3889, 1123, 2243, 12619, 2377, 1777, 1031, 65447, 1163, 4259, 68447, 51563, 1973, 208997, 6389, 2647, 1289, 2543, 214541, 10867, 4567, 4493, 4391, 6247, 2657, 57179, 10937, 4211, 19381, 14657, 5233, 4967, 16091, 34763, 3271, 3079, 11777, 20693, 249317, 1117, 4643, 4273, 521, 5087, 1447, 1823, 17707, 267677, 22741, 273941, 8429, 280277, 2531, 94847, 23801, 8191, 1217, 3449, 5791, 3967, 2477, 2089, 1307, 6359, 25621, 6857, 1279, 313037, 21019, 79103, 15121, 2213, 1783, 20201, 9829, 5939, 6829, 11789, 2803, 27893, 111959, 3221, 340541, 22859, 17203, 115079, 1237, 5813, 1291, 3559, 1733, 2027, 1483, 119039, 119839, 121447, 6133, 369197, 7717, 34231, 31481, 2297, 1259, 10631, 54851, 25763, 18521, 14591, 1453, 44053, 79801, 19121, 100703, 5281, 136399, 34421, 24373, 1901, 6659, 2833, 7057, 26627, 13109, 15497, 12511, 2153, 1579, 27617, 445877, 149519, 12647, 4349, 9007, 38393, 1931, 16649, 51949, 9769, 94057, 157679, 95713, 22921, 40693, 54413, 41161, 33211, 24979, 23857, 1873, 1987, 2887, 102481, 2141, 8179, 6397, 14887, 43541, 15877, 4691, 4951, 1571, 5101, 4111, 4091, 60493, 547397, 2287, 36691, 19709, 184447, 3853, 35051, 26777, 9397, 22613, 63149, 12697, 1871, 4363, 7237, 38699, 11909, 39107, 4201, 53887, 13241, 37337, 3169, 28817, 13789, 11927, 7193, 17027, 2593, 5501, 41179, 10321, 2861, 12967, 13099, 7523, 8447, 212239, 9551, 14653, 215447, 13499, 10853, 72533, 5843, 72893, 11987, 166043, 669077, 678941, 15161, 25391, 98411, 46147, 2551, 3011, 175979, 235199, 141793, 59221, 3769, 4057, 3181, 6043, 15017, 9679, 2633, 4441, 9181, 3187, 61493, 739637, 3089, 2357, 150001, 251159, 252319, 21727, 254647, 1789, 7309, 9199, 7823, 9283, 16319, 7477, 39343, 113171, 53051, 7121, 266447, 32117, 3319, 11887, 67961, 38921, 51197, 8501, 1913, 276079, 119363, 2251, 10513, 70393, 8219, 5153, 213023, 171529, 41017, 53951, 288359, 14449, 6491, 3659, 5399, 10499, 4397, 11071, 81031, 6203, 44851, 2011, 53101, 15077, 8111, 101149, 6911, 26119, 305999, 229979, 6271, 185137, 58217, 5657, 14939, 9431, 21001, 4373, 79241, 318919, 960677, 241643, 2713, 20219, 61151, 3301, 2339, 196873, 20549, 20333, 2521, 333439, 4933, 4219, 7499, 3643, 92767, 17041, 64157, 342847, 28627, 20327, 37097, 20407, 2069, 116549, 65687, 3343, 3517, 1057157, 22067, 97231, 2309, 359279, 2903,

7. Distribution of the primes

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

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)
1107250.7000000.2000000.500000
21005010400.5000000.1000000.4000007.1428575.0000008.000000
31.000548654830.5480000.0650000.48300010.9600006.50000012.075000
410.0005.8584595.3990.5858000.0459000.53990010.6897817.06153911.178054
5100.00061.0313.63657.3950.6103100.0363600.57395010.4184027.92156810.630672
61.000.000625.03329.559595.4740.6250330.0295590.59547410.2412388.12953810.375015
710.000.0006.351.232247.7536.103.4790.6351230.0247750.61034810.1614358.38164310.249783
8100.000.00064.262.1192.138.50062.123.6190.6426210.0213850.62123610.1180568.63158010.178395
91.000.000.000648.406.66518.794.112629.612.5530.6484070.0187940.62961310.0900298.78845510.134833
1010.000.000.0006.530.005.666167.628.6136.362.377.0530.6530010.0167630.63623810.0708498.91920910.105227


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.500000
245231.2500000.5000000.7500001.6666671.0000003.000000
386240.7500000.2500000.5000001.2000001.0000001.333333
4169270.5625000.1250000.4375001.5000001.0000001.750000
532174130.5312500.1250000.4062501.8888892.0000001.857143
664348260.5312500.1250000.4062502.0000002.0000002.000000
71286712550.5234380.0937500.4296881.9705881.5000002.115385
8256133211120.5195310.0820310.4375001.9850751.7500002.036364
9512270372330.5273440.0722660.4550782.0300751.7619052.080357
101.024563674960.5498050.0654300.4843752.0851851.8108112.128755
112.0481.1511191.0320.5620120.0581050.5039062.0444051.7761192.080645
124.0962.3372142.1230.5705570.0522460.5183112.0304081.7983192.057171
138.1924.7793874.3920.5833740.0472410.5361332.0449301.8084112.068771
1416.3849.7117238.9880.5927120.0441280.5485842.0320151.8682172.046448
1532.76819.6721.35018.3220.6003420.0411990.5591432.0257441.8672202.038496
1665.53639.7542.51237.2420.6065980.0383300.5682682.0208421.8607412.032638
17131.07280.2674.60875.6590.6123890.0351560.5772322.0190921.8343952.031550
18262.144161.7068.691153.0150.6168590.0331540.5837062.0146011.8860682.022429
19524.288325.84916.386309.4630.6215080.0312540.5902542.0150711.8853992.022436
201.048.576655.56630.859624.7070.6251960.0294290.5957672.0118711.8832542.018681
212.097.1521.318.12158.4381.259.6830.6285290.0278650.6006642.0106611.8937102.016438
224.194.3042.649.141110.6792.538.4620.6316040.0263880.6052172.0097861.8939562.015159
238.388.6085.322.264210.3855.111.8790.6344630.0250800.6093832.0090531.9008572.013770
2416.777.21610.686.927401.65610.285.2710.6369900.0239410.6130502.0079661.9091482.012033
2533.554.43221.452.160767.88320.684.2770.6393240.0228850.6164392.0073271.9117932.011058
2667.108.86443.047.4741.470.48041.576.9940.6414570.0219120.6195452.0066731.9149792.010077
27134.217.72886.361.5532.819.84983.541.7040.6434440.0210100.6224342.0061931.9176382.009325
28268.435.456173.216.9625.421.520167.795.4420.6452830.0201970.6250872.0057181.9226282.008523
29536.870.912347.346.80610.432.762336.914.0440.6469840.0194330.6275512.0052701.9243242.007886
301.073.741.824696.392.24320.104.878676.287.3650.6485660.0187240.6298422.0048901.9270912.007299
312.147.483.6481.395.967.22538.796.7251.357.170.5000.6500480.0180660.6319822.0045701.9297172.006796
324.294.967.2962.797.865.66974.971.2372.722.894.4320.6514290.0174560.6339732.0042491.9324122.006302
338.589.934.5925.606.884.543145.028.8505.461.855.6930.6527270.0168840.6358442.0039861.9344602.005901
3417.179.869.18411.234.680.060280.873.03610.953.807.0240.6539440.0163490.6375952.0037301.9366702.005510


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
122010110
242010110
382010110
4162010110
5324030112
6648071142
7128120111173
82562102024123
95123703637207
101.024670667143313
112.04811901189246422
124.0962140213165011236
138.1923870386268520967
1416.384723072254145388136
1532.7681.35001.34996267725262
1665.5362.51202.5111724991.342499
17131.0724.60804.6073279042.470907
18262.1448.69108.6905921.6804.7051.714
19524.28816.386016.3851.1443.2428.8073.193
201.048.57630.859030.8582.1005.97216.8025.985
212.097.15258.438058.4373.97511.28431.87511.304
224.194.304110.6790110.6787.40721.37560.44521.452
238.388.608210.3850210.38413.92940.608115.11440.734
2416.777.216401.6560401.65526.42777.552220.28777.390
2533.554.432767.8830767.88250.602147.470421.976147.835
2667.108.8641.470.48001.470.47997.143282.238808.362282.737
27134.217.7282.819.84902.819.848185.656540.6541.551.690541.849
28268.435.4565.421.52005.421.519356.0221.038.9102.986.4561.040.132
29536.870.91210.432.762010.432.761683.3911.997.9925.751.7861.999.593
301.073.741.82420.104.878020.104.8771.315.0693.848.03011.091.8793.849.900
312.147.483.64838.796.725038.796.7242.533.8727.419.68821.420.8227.422.343
324.294.967.29674.971.237074.971.2364.888.81314.330.72141.418.89114.332.812
338.589.934.592145.028.8500145.028.8499.444.09327.703.20980.172.36527.709.183
3417.179.869.184280.873.0360280.873.03518.268.32653.622.214155.348.21353.634.283


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
121010100
243210102
384220103
4167341213
53213853334
6642612145768
712855292613161214
8256112625027272929
951223312410961544969
101.024496256240125112120139
112.0481.032526506251247257277
124.0962.1231.0861.037515510523575
138.1924.3922.2762.1161.0801.0461.0701.196
1416.3848.9884.6234.3652.2222.1182.1952.453
1532.76818.3229.3748.9484.5504.3764.4504.946
1665.53637.24219.09018.1529.3589.0238.9259.936
17131.07275.65938.90136.75819.01118.34718.24320.058
18262.144153.01578.31674.69938.30137.37437.05840.282
19524.288309.463158.267151.19677.38075.52075.33181.232
201.048.576624.707318.634306.073156.089152.571152.407163.640
212.097.1521.259.683641.558618.125314.978307.853307.658329.194
224.194.3042.538.4621.291.5001.246.962634.679620.714621.400661.669
238.388.6085.111.8792.597.1262.514.7531.278.1341.251.9851.253.3981.328.362
2416.777.21610.285.2715.221.0385.064.2332.572.4642.521.9282.523.9552.666.924
2533.554.43220.684.27710.493.73910.190.5385.172.7935.078.2945.077.1175.356.073
2667.108.86441.576.99421.079.49820.497.49610.397.06110.213.09910.216.35110.750.483
27134.217.72883.541.70442.326.61541.215.08920.893.32620.535.84220.541.52821.571.008
28268.435.456167.795.44284.965.97782.829.46541.964.61941.271.05341.291.83343.267.937
29536.870.912336.914.044170.519.129166.394.91584.258.58482.922.93382.957.12786.775.400
301.073.741.824676.287.365342.109.965334.177.400169.119.708166.560.274166.617.072173.990.311
312.147.483.6481.357.170.500686.228.437670.942.063339.380.981334.435.831334.568.764348.784.924
324.294.967.2962.722.894.4321.376.169.2981.346.725.134680.877.102671.328.395671.608.125699.080.810
338.589.934.5925.461.855.6932.759.361.6782.702.494.0151.365.696.1861.347.283.0351.347.798.0711.401.078.401
3417.179.869.18410.953.807.0245.531.941.3855.421.865.6392.738.905.5802.703.220.6822.704.203.6532.807.477.109


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 5, 11, 7, 31, 1, 1, 1, 239, 17, 131, 1, 1, 1, 149, 1, 313, 1, 599, 479,
Found in Database : 3, 5, 11, 7, 31, 239, 17, 131, 149, 313, 599, 479, 97, 457, 67, 167, 181, 373, 79, 563, 283,
Found in Database : 3, 5, 7, 11, 17, 31, 67, 79, 97, 101, 103, 107, 109, 113, 131, 139, 149,