Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:53:39
Deutsch
18.Apr 2024

Polynom = x^2+1x+5

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) = 5 = 5
f(1) = 7 = 7
f(2) = 11 = 11
f(3) = 17 = 17
f(4) = 25 = 5*5
f(5) = 35 = 5*7
f(6) = 47 = 47
f(7) = 61 = 61
f(8) = 77 = 7*11
f(9) = 95 = 5*19
f(10) = 115 = 5*23
f(11) = 137 = 137
f(12) = 161 = 7*23
f(13) = 187 = 11*17
f(14) = 215 = 5*43
f(15) = 245 = 5*7*7
f(16) = 277 = 277
f(17) = 311 = 311
f(18) = 347 = 347
f(19) = 385 = 5*7*11
f(20) = 425 = 5*5*17
f(21) = 467 = 467
f(22) = 511 = 7*73
f(23) = 557 = 557
f(24) = 605 = 5*11*11
f(25) = 655 = 5*131
f(26) = 707 = 7*101
f(27) = 761 = 761
f(28) = 817 = 19*43
f(29) = 875 = 5*5*5*7
f(30) = 935 = 5*11*17
f(31) = 997 = 997
f(32) = 1061 = 1061
f(33) = 1127 = 7*7*23
f(34) = 1195 = 5*239
f(35) = 1265 = 5*11*23
f(36) = 1337 = 7*191
f(37) = 1411 = 17*83
f(38) = 1487 = 1487
f(39) = 1565 = 5*313
f(40) = 1645 = 5*7*47
f(41) = 1727 = 11*157
f(42) = 1811 = 1811
f(43) = 1897 = 7*271
f(44) = 1985 = 5*397
f(45) = 2075 = 5*5*83
f(46) = 2167 = 11*197
f(47) = 2261 = 7*17*19
f(48) = 2357 = 2357
f(49) = 2455 = 5*491
f(50) = 2555 = 5*7*73
f(51) = 2657 = 2657
f(52) = 2761 = 11*251
f(53) = 2867 = 47*61
f(54) = 2975 = 5*5*7*17
f(55) = 3085 = 5*617
f(56) = 3197 = 23*139
f(57) = 3311 = 7*11*43
f(58) = 3427 = 23*149
f(59) = 3545 = 5*709
f(60) = 3665 = 5*733
f(61) = 3787 = 7*541
f(62) = 3911 = 3911
f(63) = 4037 = 11*367
f(64) = 4165 = 5*7*7*17
f(65) = 4295 = 5*859
f(66) = 4427 = 19*233
f(67) = 4561 = 4561
f(68) = 4697 = 7*11*61
f(69) = 4835 = 5*967
f(70) = 4975 = 5*5*199
f(71) = 5117 = 7*17*43
f(72) = 5261 = 5261
f(73) = 5407 = 5407
f(74) = 5555 = 5*11*101
f(75) = 5705 = 5*7*163
f(76) = 5857 = 5857
f(77) = 6011 = 6011
f(78) = 6167 = 7*881
f(79) = 6325 = 5*5*11*23
f(80) = 6485 = 5*1297
f(81) = 6647 = 17*17*23
f(82) = 6811 = 7*7*139
f(83) = 6977 = 6977
f(84) = 7145 = 5*1429
f(85) = 7315 = 5*7*11*19
f(86) = 7487 = 7487
f(87) = 7661 = 47*163
f(88) = 7837 = 17*461
f(89) = 8015 = 5*7*229
f(90) = 8195 = 5*11*149
f(91) = 8377 = 8377
f(92) = 8561 = 7*1223
f(93) = 8747 = 8747
f(94) = 8935 = 5*1787
f(95) = 9125 = 5*5*5*73
f(96) = 9317 = 7*11*11*11
f(97) = 9511 = 9511
f(98) = 9707 = 17*571
f(99) = 9905 = 5*7*283
f(100) = 10105 = 5*43*47

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+1x+5

f(0)=5
f(1)=7
f(2)=11
f(3)=17
f(4)=1
f(5)=1
f(6)=47
f(7)=61
f(8)=1
f(9)=19
f(10)=23
f(11)=137
f(12)=1
f(13)=1
f(14)=43
f(15)=1
f(16)=277
f(17)=311
f(18)=347
f(19)=1
f(20)=1
f(21)=467
f(22)=73
f(23)=557
f(24)=1
f(25)=131
f(26)=101
f(27)=761
f(28)=1
f(29)=1
f(30)=1
f(31)=997
f(32)=1061
f(33)=1
f(34)=239
f(35)=1
f(36)=191
f(37)=83
f(38)=1487
f(39)=313
f(40)=1
f(41)=157
f(42)=1811
f(43)=271
f(44)=397
f(45)=1
f(46)=197
f(47)=1
f(48)=2357
f(49)=491
f(50)=1
f(51)=2657
f(52)=251
f(53)=1
f(54)=1
f(55)=617
f(56)=139
f(57)=1
f(58)=149
f(59)=709
f(60)=733
f(61)=541
f(62)=3911
f(63)=367
f(64)=1
f(65)=859
f(66)=233
f(67)=4561
f(68)=1
f(69)=967
f(70)=199
f(71)=1
f(72)=5261
f(73)=5407
f(74)=1
f(75)=163
f(76)=5857
f(77)=6011
f(78)=881
f(79)=1
f(80)=1297
f(81)=1
f(82)=1
f(83)=6977
f(84)=1429
f(85)=1
f(86)=7487
f(87)=1
f(88)=461
f(89)=229
f(90)=1
f(91)=8377
f(92)=1223
f(93)=8747
f(94)=1787
f(95)=1
f(96)=1
f(97)=9511
f(98)=571
f(99)=283

b) Substitution of the polynom
The polynom f(x)=x^2+1x+5 could be written as f(y)= y^2+4.75 with x=y-0.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+0.5
f'(x)>2x

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

5, 7, 11, 17, 1, 1, 47, 61, 1, 19, 23, 137, 1, 1, 43, 1, 277, 311, 347, 1, 1, 467, 73, 557, 1, 131, 101, 761, 1, 1, 1, 997, 1061, 1, 239, 1, 191, 83, 1487, 313, 1, 157, 1811, 271, 397, 1, 197, 1, 2357, 491, 1, 2657, 251, 1, 1, 617, 139, 1, 149, 709, 733, 541, 3911, 367, 1, 859, 233, 4561, 1, 967, 199, 1, 5261, 5407, 1, 163, 5857, 6011, 881, 1, 1297, 1, 1, 6977, 1429, 1, 7487, 1, 461, 229, 1, 8377, 1223, 8747, 1787, 1, 1, 9511, 571, 283, 1, 937, 457, 1531, 1, 1, 1621, 1051, 11777, 2399, 349, 12437, 1151, 263, 1, 1, 13577, 1973, 1277, 2857, 1, 14767, 883, 1, 443, 1, 16007, 1, 1, 1, 3407, 353, 1033, 17827, 1, 3673, 18637, 18911, 2741, 1, 359, 2861, 1069, 479, 4177, 1, 21467, 463, 1, 1, 1, 2087, 3323, 23567, 1, 691, 1, 577, 25127, 727, 5153, 1373, 1, 26737, 5413, 5479, 1, 2551, 389, 821, 1163, 1279, 29761, 1, 6091, 1, 4451, 31511, 2897, 1289, 1, 701, 33311, 1, 619, 6883, 809, 5023, 35537, 653, 1, 36677, 37061, 37447, 1, 1, 1, 5573, 1, 419, 1, 5801, 41011, 499, 1, 8447, 3877, 1, 6211, 8779, 8863, 1, 45161, 45587, 9203, 1327, 46877, 1, 1, 1, 1, 1, 643, 49957, 593, 1453, 51307, 1, 1, 1, 10627, 53597, 7723, 4957, 647, 11093, 1, 2969, 1, 1, 503, 1, 2557, 1, 1087, 2411, 8681, 61261, 61757, 12451, 1, 1, 63761, 9181, 2591, 1187, 3463, 9473, 3931, 13469, 1, 6217, 1, 3019, 1999, 613, 587, 10223, 4241, 1, 2927, 10531, 1, 1, 2153, 1, 757, 7001, 1583, 1, 15737, 11321, 79811, 7307, 16189, 1, 1, 631, 1, 16763, 16879, 84977, 719, 1, 1, 1, 87917, 1451, 89107, 1, 18061, 90907, 769, 1, 3709, 1697, 13421, 94561, 95177, 1, 1753, 4219, 1601, 739, 1, 1, 1301, 100811, 1, 1201, 1, 9397, 2213, 14951, 21061, 21191, 6271, 1, 1, 1, 3121, 109897, 1, 111227, 1, 1, 6661, 16273, 947, 23053, 23189, 16661, 1607, 1, 3391, 1, 120067, 1, 17351, 2221, 24571, 929, 1, 7351, 1, 1, 853, 5557, 1, 25849, 1, 130687, 18773, 132137, 26573, 1, 134327, 1031, 1, 1, 1, 12547, 1, 2287, 28051, 28201, 1, 1, 6229, 823, 1259, 145547, 1, 21011, 29569, 29723, 21341, 1, 1013, 1597, 4357, 153277, 154061, 2011, 1831, 6257, 157217, 22573, 14437, 1, 4583, 1, 162011, 7079, 1, 32887, 165247, 3389, 8783, 3049, 33703, 1423, 1, 1049, 4909, 1, 3691, 174311, 1, 1, 1, 1493, 1303, 179357, 1567, 1, 1, 9619, 1543, 1, 1, 16927, 26723, 187927, 1, 5419, 190537, 17401, 11311, 5519, 1, 1, 2543, 1, 919, 1, 1499, 8707, 18287, 1, 40591, 203857, 2467, 2671, 8263, 2441, 4253, 209311, 4889, 1, 1, 212987, 12583, 1, 3923, 2281, 1, 31223, 1103, 44087, 1, 222317, 1, 1613, 1, 4111, 4831, 32573, 2267, 1, 1, 3011, 232811, 233777, 1, 47143, 21517, 5527, 1, 2819, 48119, 34511, 22051, 10589, 48907, 1, 1, 22501, 1, 1, 50101, 5849, 36073, 1213, 10181, 1, 15091, 257561, 2137, 7417, 1109, 261637, 1, 15511, 4813, 53149, 1657, 267811, 11689, 1, 10837, 271967, 14369, 1, 55021, 5021, 1, 278261, 279317, 2243, 1, 2797, 1217, 1, 57139, 1, 1, 1, 289987, 2531, 1, 1, 294311, 3559, 1, 11903, 298667, 1, 300857, 1, 60611, 43451, 27751, 306367, 1, 61717, 5077, 1, 4051, 1, 3307, 1, 13757, 28867, 1, 9137, 320927, 1, 46171, 5897, 1, 326617, 6689, 7649, 1, 9463, 2039, 1, 334667, 1, 1, 19891, 48473, 340477, 68329, 1, 1, 1, 346337, 9929, 69739, 1871, 351061, 50321, 70687, 2837, 4621, 1559, 1, 71881, 10303, 361807, 1, 7433, 1, 73327, 5039, 4793, 1, 1, 1, 373937, 2699, 34217, 10789, 4457, 8839, 1, 1, 76757, 15401, 7883, 1, 388757, 1, 4603, 4729, 393761, 56431, 1, 1, 2477, 1, 17449, 1, 1, 21323, 2063, 1, 1, 7459, 411527, 3469, 414097, 83077, 2381, 37997, 419261, 420557, 1, 84631, 1, 8689, 427067, 1, 4523, 2677, 39301, 433627, 1, 87253, 437587, 39901, 1, 1879, 1, 3733, 2239, 40627, 1, 1, 450917, 1, 1, 4789, 1, 26921, 2851, 7547, 1, 1, 464447, 1949, 27481, 1, 93983, 3163, 67523, 474037, 95083, 8669, 68311, 479561, 1489, 13781, 1759, 3541, 486511, 1483, 97861, 1, 1, 1, 494917, 19853, 14221, 45377, 6857, 71711, 1, 5939, 10771, 1, 509087, 102103, 14627, 11939, 2753, 516247, 2113, 4153, 520567, 74573, 2069, 1721, 1, 75401, 1, 48247, 3041, 106727, 28163, 536561, 1, 1, 108193, 77491, 543911, 545387, 1, 15667, 2791, 551311, 1, 6521, 1, 24229, 79823, 24359, 1, 1, 1, 7757, 567767, 3253, 114157, 52027, 81973, 12241, 2683, 1, 1, 581411, 582937, 16699, 1, 587527, 53551, 1, 1, 23747, 3697, 54251, 598307, 119971, 17183, 2633, 4349, 1, 4861, 1669, 6047, 87473, 55807, 1, 1, 618587, 620161, 1, 1619, 124979, 626477, 1, 1, 1, 1, 90631, 1733, 637607, 2609, 1, 642407, 1, 1, 25889, 1, 92921, 34319, 1873, 131059, 1, 1, 38833, 94541, 1, 5783, 60607, 1, 669947, 7901, 3847, 674867, 5591, 678157, 19423, 1867, 1, 8893, 686417, 1, 137947, 2297, 693061, 1, 1, 1, 41161, 1987, 1, 2999, 6143, 101161, 1, 711497, 12967, 1, 1, 2593, 2099, 13121, 144671, 725057, 1, 1, 29207, 1901, 2707, 735311, 2053, 21107, 13463, 1, 106273, 1907, 7867, 1, 1, 9067, 754297, 21601, 1783, 6277, 761261, 109001, 3557, 1847, 109751, 70001, 1, 30941, 1, 1, 1, 5869, 6803, 156823, 1, 6619, 1, 158243, 1, 6067, 796561, 72577, 22861, 32077, 803717, 1, 11059, 1, 1, 116101, 1, 816317, 1, 163987, 821747, 1, 117911, 7193, 15073, 118691, 1, 834487, 9839, 1, 6043, 19577, 1, 169097, 33893, 1, 1993, 852857, 1, 24473, 1, 2437, 862117, 4937, 7529, 1, 1, 18541, 174659, 1, 1, 79901, 1, 25219, 9311, 886427, 6781, 1, 178417, 35759, 1, 6553, 1, 180311, 1, 3607, 6089, 5647, 3313, 1, 914897, 130973, 11069, 1, 1, 1, 926411, 928337, 3797, 1, 934127, 133723, 15377, 187987, 1, 1, 55633, 947707, 1, 190321, 3769, 955511, 1, 38377, 4091, 12511, 56783, 1, 1, 27749, 973187, 88651, 139591, 11519, 1, 5147, 1, 21001, 197807, 1, 1, 52369, 1, 1,

6. Sequence of the polynom (only primes)

5, 7, 11, 17, 47, 61, 19, 23, 137, 43, 277, 311, 347, 467, 73, 557, 131, 101, 761, 997, 1061, 239, 191, 83, 1487, 313, 157, 1811, 271, 397, 197, 2357, 491, 2657, 251, 617, 139, 149, 709, 733, 541, 3911, 367, 859, 233, 4561, 967, 199, 5261, 5407, 163, 5857, 6011, 881, 1297, 6977, 1429, 7487, 461, 229, 8377, 1223, 8747, 1787, 9511, 571, 283, 937, 457, 1531, 1621, 1051, 11777, 2399, 349, 12437, 1151, 263, 13577, 1973, 1277, 2857, 14767, 883, 443, 16007, 3407, 353, 1033, 17827, 3673, 18637, 18911, 2741, 359, 2861, 1069, 479, 4177, 21467, 463, 2087, 3323, 23567, 691, 577, 25127, 727, 5153, 1373, 26737, 5413, 5479, 2551, 389, 821, 1163, 1279, 29761, 6091, 4451, 31511, 2897, 1289, 701, 33311, 619, 6883, 809, 5023, 35537, 653, 36677, 37061, 37447, 5573, 419, 5801, 41011, 499, 8447, 3877, 6211, 8779, 8863, 45161, 45587, 9203, 1327, 46877, 643, 49957, 593, 1453, 51307, 10627, 53597, 7723, 4957, 647, 11093, 2969, 503, 2557, 1087, 2411, 8681, 61261, 61757, 12451, 63761, 9181, 2591, 1187, 3463, 9473, 3931, 13469, 6217, 3019, 1999, 613, 587, 10223, 4241, 2927, 10531, 2153, 757, 7001, 1583, 15737, 11321, 79811, 7307, 16189, 631, 16763, 16879, 84977, 719, 87917, 1451, 89107, 18061, 90907, 769, 3709, 1697, 13421, 94561, 95177, 1753, 4219, 1601, 739, 1301, 100811, 1201, 9397, 2213, 14951, 21061, 21191, 6271, 3121, 109897, 111227, 6661, 16273, 947, 23053, 23189, 16661, 1607, 3391, 120067, 17351, 2221, 24571, 929, 7351, 853, 5557, 25849, 130687, 18773, 132137, 26573, 134327, 1031, 12547, 2287, 28051, 28201, 6229, 823, 1259, 145547, 21011, 29569, 29723, 21341, 1013, 1597, 4357, 153277, 154061, 2011, 1831, 6257, 157217, 22573, 14437, 4583, 162011, 7079, 32887, 165247, 3389, 8783, 3049, 33703, 1423, 1049, 4909, 3691, 174311, 1493, 1303, 179357, 1567, 9619, 1543, 16927, 26723, 187927, 5419, 190537, 17401, 11311, 5519, 2543, 919, 1499, 8707, 18287, 40591, 203857, 2467, 2671, 8263, 2441, 4253, 209311, 4889, 212987, 12583, 3923, 2281, 31223, 1103, 44087, 222317, 1613, 4111, 4831, 32573, 2267, 3011, 232811, 233777, 47143, 21517, 5527, 2819, 48119, 34511, 22051, 10589, 48907, 22501, 50101, 5849, 36073, 1213, 10181, 15091, 257561, 2137, 7417, 1109, 261637, 15511, 4813, 53149, 1657, 267811, 11689, 10837, 271967, 14369, 55021, 5021, 278261, 279317, 2243, 2797, 1217, 57139, 289987, 2531, 294311, 3559, 11903, 298667, 300857, 60611, 43451, 27751, 306367, 61717, 5077, 4051, 3307, 13757, 28867, 9137, 320927, 46171, 5897, 326617, 6689, 7649, 9463, 2039, 334667, 19891, 48473, 340477, 68329, 346337, 9929, 69739, 1871, 351061, 50321, 70687, 2837, 4621, 1559, 71881, 10303, 361807, 7433, 73327, 5039, 4793, 373937, 2699, 34217, 10789, 4457, 8839, 76757, 15401, 7883, 388757, 4603, 4729, 393761, 56431, 2477, 17449, 21323, 2063, 7459, 411527, 3469, 414097, 83077, 2381, 37997, 419261, 420557, 84631, 8689, 427067, 4523, 2677, 39301, 433627, 87253, 437587, 39901, 1879, 3733, 2239, 40627, 450917, 4789, 26921, 2851, 7547, 464447, 1949, 27481, 93983, 3163, 67523, 474037, 95083, 8669, 68311, 479561, 1489, 13781, 1759, 3541, 486511, 1483, 97861, 494917, 19853, 14221, 45377, 6857, 71711, 5939, 10771, 509087, 102103, 14627, 11939, 2753, 516247, 2113, 4153, 520567, 74573, 2069, 1721, 75401, 48247, 3041, 106727, 28163, 536561, 108193, 77491, 543911, 545387, 15667, 2791, 551311, 6521, 24229, 79823, 24359, 7757, 567767, 3253, 114157, 52027, 81973, 12241, 2683, 581411, 582937, 16699, 587527, 53551, 23747, 3697, 54251, 598307, 119971, 17183, 2633, 4349, 4861, 1669, 6047, 87473, 55807, 618587, 620161, 1619, 124979, 626477, 90631, 1733, 637607, 2609, 642407, 25889, 92921, 34319, 1873, 131059, 38833, 94541, 5783, 60607, 669947, 7901, 3847, 674867, 5591, 678157, 19423, 1867, 8893, 686417, 137947, 2297, 693061, 41161, 1987, 2999, 6143, 101161, 711497, 12967, 2593, 2099, 13121, 144671, 725057, 29207, 1901, 2707, 735311, 2053, 21107, 13463, 106273, 1907, 7867, 9067, 754297, 21601, 1783, 6277, 761261, 109001, 3557, 1847, 109751, 70001, 30941, 5869, 6803, 156823, 6619, 158243, 6067, 796561, 72577, 22861, 32077, 803717, 11059, 116101, 816317, 163987, 821747, 117911, 7193, 15073, 118691, 834487, 9839, 6043, 19577, 169097, 33893, 1993, 852857, 24473, 2437, 862117, 4937, 7529, 18541, 174659, 79901, 25219, 9311, 886427, 6781, 178417, 35759, 6553, 180311, 3607, 6089, 5647, 3313, 914897, 130973, 11069, 926411, 928337, 3797, 934127, 133723, 15377, 187987, 55633, 947707, 190321, 3769, 955511, 38377, 4091, 12511, 56783, 27749, 973187, 88651, 139591, 11519, 5147, 21001, 197807, 52369,

7. Distribution of the primes

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

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)
1108170.8000000.1000000.700000
21006736310.6700000.3600000.3100008.37500036.0000004.428571
310006885221660.6880000.5220000.16600010.26865714.5000005.354839
4100006913570412090.6913000.5704000.12090010.04796510.9272037.283133
5100000692356014890870.6923500.6014800.09087010.01518910.5448817.516129
61000000692815618756740590.6928150.6187560.07405910.00671710.2872258.149995
710000000692334262968836264590.6923340.6296880.0626469.99306010.1766828.458918
8100000000692344266380325354311730.6923440.6380320.05431210.00014510.1325138.669639
91000000000692318823644410473479083500.6923190.6444100.0479089.99963310.0999638.820995
1010000000000692310962864943639034287457250.6923110.6494360.0428759.99988610.0779918.949290


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)
123031.5000000.0000001.500000
244041.0000000.0000001.0000001.333333-nan1.333333
386060.7500000.0000000.7500001.500000-nan1.500000
41611290.6875000.1250000.5625001.833333inf1.500000
532215160.6562500.1562500.5000001.9090912.5000001.777778
6644322210.6718750.3437500.3281252.0476194.4000001.312500
71288650360.6718750.3906250.2812502.0000002.2727271.714286
8256175115600.6835940.4492190.2343752.0348842.3000001.666667
9512353261920.6894530.5097660.1796882.0171432.2695651.533333
1010247065351710.6894530.5224610.1669922.0000002.0498091.858696
112048140710903170.6870120.5322270.1547851.9929182.0373831.853801
124096282222495730.6889650.5490720.1398932.0056862.0633031.807571
1381925658463710210.6906740.5660400.1246342.0049612.0618051.781850
141638411363951518480.6935420.5807500.1127932.0083072.0519731.809990
1532768227051938033250.6929020.5914310.1014711.9981522.0367841.799242
1665536453943917862160.6926570.5978090.0948491.9992952.0215691.869474
171310729071679101116150.6921080.6034930.0886151.9984142.0190161.868565
18262144181576159867217090.6926570.6098440.0828132.0015872.0210491.869049
19524288363070322127409430.6925010.6144080.0780931.9995482.0149691.885992
201048576726467649129773380.6928130.6190580.0737552.0009012.0151341.888919
212097152145228613058041464820.6925040.6226560.0698481.9991082.0116251.894050
224194304290475026260872786630.6925460.6261080.0664382.0001232.0110881.902370
238388608580816152767705313910.6923870.6290400.0633471.9995392.0093661.906931
2416777216116168061060092510158810.6924160.6318640.0605512.0000832.0089801.911739
2533554432232322422128660119456410.6923750.6343900.0579851.9998822.0079951.915225
2667108864464625434273102037315230.6923460.6367420.0556041.9999172.0074141.917889
27134217728929230628575503271680300.6923310.6389250.0534061.9999562.0068571.920940
28268435456185844986172057992137869940.6923270.6409660.0513611.9999882.0063891.923401
29536870912371687163345124284265628790.6923210.6428440.0494771.9999852.0058601.926662
301073741824743369511692115698512538130.6923170.6445830.0477341.9999872.0054101.929528
31214748364814867320861387706036990260500.6923140.6462010.0461131.9999912.0050201.932072
324294967296297344494027819003041915446360.6923090.6477120.0445971.9999872.0046761.934285
338589934592594689369655760291883708645080.6923100.6491350.0431742.0000012.0043961.936178
341717986918411893846944111750050427188419020.6923130.6504710.0418422.0000102.0041151.938287
3534359738368237878408682239316306613946778020.6923170.6517270.0405902.0000122.0038621.940173


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 7, 11, 17, 1, 1, 47, 61, 1, 19, 23, 137, 1, 1, 43, 1, 277, 311, 347, 1,
Found in Database : 5, 7, 11, 17, 47, 61, 19, 23, 137, 43, 277, 311, 347, 467, 73, 557, 131, 101, 761, 997, 1061, 239, 191, 83, 1487, 313,
Found in Database : 5, 7, 11, 17, 19, 23, 43, 47, 61, 73, 83, 101, 131, 137, 139, 149,

ABCDEFGHIJKLMNOP
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 number 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
1231201110000000
2441311110000000
3862411220000000
41693621332110101
5321641233645231211
6642141744762211113685
71283610261069115028229151511
825660194115111717115605522333129
95129232602521232326114012151647175
1010241716111044414244535281254130130137138
112048317111206878074761090566524261290259280
124096573204369154143134142224911661083556584546563
13819210213406812472532582634637234622911156119711311153
1416384184862212264614564694629515490746082375241423522374
153276833251129219684782283282419380998593954797486148434879
166553662162091412515691572154815273917820218189609685987198009822
171310721161538797736293429092888288479101403593874219614198561983119800
18262144217097279144305492546153905366159867814517841639821400714004939926
195242884094313680272631029510365101441013932212716425215787580588804628050180576
20104857677338257615157719446194581930619128649129330765318364162392162122162325162290
2120971521464824886697616366843684936562363871305804664911640893326510326439326399326456
2241943042786639289018577369583697576972069603262608713367811289306656239656121657231656496
2383886085313911772553541361329331326901331091326595276770268356025932101318681131871513194601319914
2416777216101588133905267682925390725387125423025387310600925538454152163842649152264915326514682651152
2533554432194564164927812963634864644867124863184861472128660110804425104821765322693532197353215925320343
266710886437315231244632248689193268593373693180393329942731020216715492105947110681298106833081068355110682863
27134217728716803023910464776984179096517936411790556179286885755032434669864228804621441677214400062143700321436346
2826843545613786994459701491899803445395344835234451023448145172057992871570808490091243010838430221694301529943009686
2953687091226562879885500317707876664029766429406638549664109334512428417473695617038732886284207862942238628037186265483
30107374182451253813170858303416798312813119128181641281057112811959692115698350247433341868265173029849173051766173021954173012129
312147483648990260503301407066011980247569072476216424750827247561521387706036701930519685775517346923591346959355346919375346903715
3242949672961915446366385879012768584647889915478879254787989847886898278190030414065868471375313457695474498695507585695454948695463273
338589934592370864508123635499247229009927164049272317292712172927127605576029188281826628327577629051393992928139405159413939581441394026522
341717986918471884190223963157747921032517971003917972412317969988817970785211175005042564603306655289719762793752264279376629227936944242793792062
353435973836813946778024649014359297763673486511173486877753486620053486769052239316306611310106668110830563985598290019559827852655982378555598356666