Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:15:57
Deutsch
19.Apr 2024

Polynom = x^2+1x+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) = 9 = 3*3
f(3) = 15 = 3*5
f(4) = 23 = 23
f(5) = 33 = 3*11
f(6) = 45 = 3*3*5
f(7) = 59 = 59
f(8) = 75 = 3*5*5
f(9) = 93 = 3*31
f(10) = 113 = 113
f(11) = 135 = 3*3*3*5
f(12) = 159 = 3*53
f(13) = 185 = 5*37
f(14) = 213 = 3*71
f(15) = 243 = 3*3*3*3*3
f(16) = 275 = 5*5*11
f(17) = 309 = 3*103
f(18) = 345 = 3*5*23
f(19) = 383 = 383
f(20) = 423 = 3*3*47
f(21) = 465 = 3*5*31
f(22) = 509 = 509
f(23) = 555 = 3*5*37
f(24) = 603 = 3*3*67
f(25) = 653 = 653
f(26) = 705 = 3*5*47
f(27) = 759 = 3*11*23
f(28) = 815 = 5*163
f(29) = 873 = 3*3*97
f(30) = 933 = 3*311
f(31) = 995 = 5*199
f(32) = 1059 = 3*353
f(33) = 1125 = 3*3*5*5*5
f(34) = 1193 = 1193
f(35) = 1263 = 3*421
f(36) = 1335 = 3*5*89
f(37) = 1409 = 1409
f(38) = 1485 = 3*3*3*5*11
f(39) = 1563 = 3*521
f(40) = 1643 = 31*53
f(41) = 1725 = 3*5*5*23
f(42) = 1809 = 3*3*3*67
f(43) = 1895 = 5*379
f(44) = 1983 = 3*661
f(45) = 2073 = 3*691
f(46) = 2165 = 5*433
f(47) = 2259 = 3*3*251
f(48) = 2355 = 3*5*157
f(49) = 2453 = 11*223
f(50) = 2553 = 3*23*37
f(51) = 2655 = 3*3*5*59
f(52) = 2759 = 31*89
f(53) = 2865 = 3*5*191
f(54) = 2973 = 3*991
f(55) = 3083 = 3083
f(56) = 3195 = 3*3*5*71
f(57) = 3309 = 3*1103
f(58) = 3425 = 5*5*137
f(59) = 3543 = 3*1181
f(60) = 3663 = 3*3*11*37
f(61) = 3785 = 5*757
f(62) = 3909 = 3*1303
f(63) = 4035 = 3*5*269
f(64) = 4163 = 23*181
f(65) = 4293 = 3*3*3*3*53
f(66) = 4425 = 3*5*5*59
f(67) = 4559 = 47*97
f(68) = 4695 = 3*5*313
f(69) = 4833 = 3*3*3*179
f(70) = 4973 = 4973
f(71) = 5115 = 3*5*11*31
f(72) = 5259 = 3*1753
f(73) = 5405 = 5*23*47
f(74) = 5553 = 3*3*617
f(75) = 5703 = 3*1901
f(76) = 5855 = 5*1171
f(77) = 6009 = 3*2003
f(78) = 6165 = 3*3*5*137
f(79) = 6323 = 6323
f(80) = 6483 = 3*2161
f(81) = 6645 = 3*5*443
f(82) = 6809 = 11*619
f(83) = 6975 = 3*3*5*5*31
f(84) = 7143 = 3*2381
f(85) = 7313 = 71*103
f(86) = 7485 = 3*5*499
f(87) = 7659 = 3*3*23*37
f(88) = 7835 = 5*1567
f(89) = 8013 = 3*2671
f(90) = 8193 = 3*2731
f(91) = 8375 = 5*5*5*67
f(92) = 8559 = 3*3*3*317
f(93) = 8745 = 3*5*11*53
f(94) = 8933 = 8933
f(95) = 9123 = 3*3041
f(96) = 9315 = 3*3*3*3*5*23
f(97) = 9509 = 37*257
f(98) = 9705 = 3*5*647
f(99) = 9903 = 3*3301
f(100) = 10103 = 10103

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

f(0)=3
f(1)=5
f(2)=1
f(3)=1
f(4)=23
f(5)=11
f(6)=1
f(7)=59
f(8)=1
f(9)=31
f(10)=113
f(11)=1
f(12)=53
f(13)=37
f(14)=71
f(15)=1
f(16)=1
f(17)=103
f(18)=1
f(19)=383
f(20)=47
f(21)=1
f(22)=509
f(23)=1
f(24)=67
f(25)=653
f(26)=1
f(27)=1
f(28)=163
f(29)=97
f(30)=311
f(31)=199
f(32)=353
f(33)=1
f(34)=1193
f(35)=421
f(36)=89
f(37)=1409
f(38)=1
f(39)=521
f(40)=1
f(41)=1
f(42)=1
f(43)=379
f(44)=661
f(45)=691
f(46)=433
f(47)=251
f(48)=157
f(49)=223
f(50)=1
f(51)=1
f(52)=1
f(53)=191
f(54)=991
f(55)=3083
f(56)=1
f(57)=1103
f(58)=137
f(59)=1181
f(60)=1
f(61)=757
f(62)=1303
f(63)=269
f(64)=181
f(65)=1
f(66)=1
f(67)=1
f(68)=313
f(69)=179
f(70)=4973
f(71)=1
f(72)=1753
f(73)=1
f(74)=617
f(75)=1901
f(76)=1171
f(77)=2003
f(78)=1
f(79)=6323
f(80)=2161
f(81)=443
f(82)=619
f(83)=1
f(84)=2381
f(85)=1
f(86)=499
f(87)=1
f(88)=1567
f(89)=2671
f(90)=2731
f(91)=1
f(92)=317
f(93)=1
f(94)=8933
f(95)=3041
f(96)=1
f(97)=257
f(98)=647
f(99)=3301

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

3, 5, 1, 1, 23, 11, 1, 59, 1, 31, 113, 1, 53, 37, 71, 1, 1, 103, 1, 383, 47, 1, 509, 1, 67, 653, 1, 1, 163, 97, 311, 199, 353, 1, 1193, 421, 89, 1409, 1, 521, 1, 1, 1, 379, 661, 691, 433, 251, 157, 223, 1, 1, 1, 191, 991, 3083, 1, 1103, 137, 1181, 1, 757, 1303, 269, 181, 1, 1, 1, 313, 179, 4973, 1, 1753, 1, 617, 1901, 1171, 2003, 1, 6323, 2161, 443, 619, 1, 2381, 1, 499, 1, 1567, 2671, 2731, 1, 317, 1, 8933, 3041, 1, 257, 647, 3301, 10103, 229, 1, 2143, 331, 1237, 2269, 3853, 1, 1, 1, 829, 12659, 859, 1, 1213, 1, 4603, 1, 1, 1, 2953, 5003, 1, 419, 1, 1, 1, 367, 5591, 17033, 1153, 1951, 1, 1, 6121, 3727, 1, 1279, 19463, 6581, 1, 883, 1373, 6961, 683, 1, 7253, 401, 7451, 839, 4591, 7753, 1571, 23873, 2687, 1, 24809, 1, 1, 25763, 1, 8803, 5347, 1, 397, 1109, 1, 631, 487, 881, 1, 29759, 1, 10151, 30803, 1, 389, 6373, 467, 10861, 599, 3701, 449, 577, 11471, 773, 35159, 1, 11971, 36293, 1, 1123, 7489, 12611, 1, 7723, 13003, 1, 751, 1489, 2707, 1783, 1, 1549, 1, 2843, 463, 1, 4877, 14771, 1, 15053, 1013, 1, 1, 1, 47309, 1061, 16061, 48623, 3271, 5501, 1, 1, 1, 1, 1, 1, 52673, 1, 1, 54059, 727, 797, 1499, 1, 18803, 1, 19121, 6427, 2333, 19603, 1, 1, 1, 4051, 5569, 1, 6917, 62753, 4217, 1, 12853, 2399, 1, 13159, 1, 1, 67343, 22621, 1, 68909, 1543, 23321, 1, 947, 7951, 14419, 1, 24391, 641, 1, 4987, 75353, 25301, 1699, 1453, 5171, 26041, 1, 587, 719, 643, 26981, 3019, 16417, 1, 1, 83813, 9377, 1, 1277, 5743, 1, 87323, 5861, 1, 1, 9967, 971, 18181, 1, 1, 92723, 1, 6263, 94559, 1, 863, 1439, 6469, 3617, 1787, 32971, 33181, 4007, 1, 6763, 1, 1, 2297, 104009, 6977, 3191, 105953, 1, 35753, 1, 36191, 1, 709, 1, 1483, 111893, 1, 7549, 113909, 7639, 1423, 1, 1, 39103, 23599, 13187, 39791, 1, 40253, 2699, 1, 1321, 8237, 907, 2777, 1, 2689, 1, 1291, 1, 1, 43321, 1, 1, 1, 132863, 44531, 1, 135059, 823, 1, 137273, 3067, 2011, 27901, 46751, 15667, 28351, 1, 9551, 13093, 16087, 1, 146309, 1, 16427, 1, 1, 50053, 30187, 1873, 4621, 6131, 1, 1, 1511, 2267, 1, 158009, 3529, 53201, 160403, 977, 1, 32563, 54541, 929, 33049, 18451, 1, 1, 56171, 1, 1, 11399, 57271, 172643, 1, 1, 1523, 58661, 1, 35533, 1, 1087, 5813, 20117, 1, 1021, 12241, 1, 5009, 12413, 2711, 7517, 1907, 1, 1, 63803, 4273, 193163, 911, 1, 195809, 1, 983, 18043, 13291, 7417, 40231, 1433, 67651, 40771, 22751, 13711, 1, 1, 1, 5657, 2803, 70381, 1301, 4733, 1, 42967, 1, 24077, 1741, 1, 14633, 1609, 1, 14821, 223259, 14947, 1, 226103, 15137, 76003, 1, 1, 76961, 1, 1093, 1039, 234743, 78571, 1, 10333, 5303, 1, 5119, 3221, 26951, 1, 2203, 1, 1049, 1, 16567, 249503, 7591, 1, 252509, 16901, 2293, 8243, 5701, 85853, 10343, 86531, 1259, 1, 87553, 17579, 2729, 29527, 3557, 1, 17923, 1, 270923, 18131, 8273, 1, 1, 92051, 55441, 92753, 2069, 280373, 93811, 1, 2753, 1, 95231, 286763, 1, 1, 1, 97021, 97381, 1, 1, 1, 26953, 99191, 6637, 13033, 1, 1, 303053, 1, 1, 1, 1, 1, 2693, 1, 4159, 1367, 1, 21019, 1, 21169, 35407, 1607, 1, 3463, 1747, 36037, 1, 65323, 109253, 7309, 330053, 1, 22157, 30319, 1, 1, 336983, 22543, 1, 13619, 2423, 1, 1, 38351, 2099, 347513, 2473, 1, 351059, 1, 117811, 6691, 7907, 2017, 2311, 10891, 1, 1, 5261, 24281, 365423, 1, 1, 2039, 4937, 13759, 1, 1, 125053, 75277, 41957, 3413, 1, 127103, 8501, 1721, 128341, 2341, 387509, 1, 1831, 17011, 1, 1, 1, 4261, 132511, 1697, 1, 5351, 402593, 1307, 3001, 8647, 27179, 5927, 410243, 1, 3719, 7529, 138461, 1, 1, 139753, 1, 4349, 47017, 28297, 1, 1, 4327, 429683, 1, 144103, 3469, 1, 4691, 87517, 6361, 1, 441563, 13421, 5923, 3943, 9931, 149411, 1, 1, 1621, 1, 151651, 1709, 1, 51001, 1, 12479, 1, 10321, 465809, 6229, 3323, 20431, 3491, 14323, 1, 4283, 17659, 1, 159853, 32063, 1, 1, 32341, 486509, 2957, 54367, 8317, 1, 164503, 1, 55147, 1, 99829, 166853, 1, 45763, 1, 33749, 7577, 1, 1, 8677, 1, 1, 1, 172561, 15731, 104113, 1871, 34897, 7393, 3733, 1, 529259, 35381, 3347, 533633, 1, 178853, 21521, 5801, 60107, 1, 181303, 1, 546863, 1, 7331, 50119, 1, 2281, 1, 1, 186253, 1, 62417, 187751, 112951, 188753, 1, 1, 190261, 38153, 573809, 2557, 3259, 578363, 1, 64601, 1, 1, 6301, 1, 21817, 39373, 592133, 197891, 4409, 12697, 39887, 3389, 54673, 13399, 8761, 2579, 3023, 1, 122149, 3851, 1637, 19853, 1, 1, 620159, 1, 69257, 16889, 8353, 209353, 125929, 7793, 2971, 4093, 19273, 4723, 1, 1, 1, 644009, 14347, 1, 6689, 1, 1, 2377, 9497, 218971, 131707, 73351, 44119, 2897, 7151, 2963, 3499, 1, 1, 673223, 4999, 225503, 5897, 226601, 1, 136621, 1, 1, 688073, 6967, 46093, 30133, 1, 77377, 13171, 46649, 1, 140617, 78307, 1, 1, 1, 1, 713183, 238291, 1, 718259, 5333, 240551, 723353, 48337, 2447, 1, 243391, 10607, 146719, 81701, 1, 738743, 4657, 16493, 2027, 4519, 6733, 749093, 1, 250853, 1, 10957, 1, 151903, 5399, 50867, 1879, 9463, 51217, 1, 2237, 28649, 5659, 51803, 259603, 31223, 86927, 23761, 157177, 262553, 1, 25523, 264331, 10597, 1, 1, 266711, 11969, 4871, 89501, 161461, 269701, 1973, 1, 1, 54421, 818123, 273311, 2029, 74869, 1, 2677, 829013, 1, 1, 1, 2467, 4049, 33599, 280603, 5113, 17989, 3037, 56611, 851009, 56857, 4129, 856553, 1, 286753, 172423, 2909, 1, 173539, 289853, 1, 873293, 291721, 1, 12379, 1, 9491, 1, 1, 1, 178039, 2887, 297991, 179173, 4337, 1, 5531, 1, 1, 907259, 60611, 303691, 2347, 1, 305603, 36749, 1, 1, 8039, 1, 1, 5197, 103577, 1, 2113, 62533, 1, 1, 62921, 1, 17231, 105517, 8573, 190711, 318503, 21277, 13513, 4783, 64223, 31139, 1, 1, 26249, 64879, 4013, 195427, 1, 2083, 39323, 109451, 2861, 18661, 1, 22067, 995009, 66467, 3433,

6. Sequence of the polynom (only primes)

3, 5, 23, 11, 59, 31, 113, 53, 37, 71, 103, 383, 47, 509, 67, 653, 163, 97, 311, 199, 353, 1193, 421, 89, 1409, 521, 379, 661, 691, 433, 251, 157, 223, 191, 991, 3083, 1103, 137, 1181, 757, 1303, 269, 181, 313, 179, 4973, 1753, 617, 1901, 1171, 2003, 6323, 2161, 443, 619, 2381, 499, 1567, 2671, 2731, 317, 8933, 3041, 257, 647, 3301, 10103, 229, 2143, 331, 1237, 2269, 3853, 829, 12659, 859, 1213, 4603, 2953, 5003, 419, 367, 5591, 17033, 1153, 1951, 6121, 3727, 1279, 19463, 6581, 883, 1373, 6961, 683, 7253, 401, 7451, 839, 4591, 7753, 1571, 23873, 2687, 24809, 25763, 8803, 5347, 397, 1109, 631, 487, 881, 29759, 10151, 30803, 389, 6373, 467, 10861, 599, 3701, 449, 577, 11471, 773, 35159, 11971, 36293, 1123, 7489, 12611, 7723, 13003, 751, 1489, 2707, 1783, 1549, 2843, 463, 4877, 14771, 15053, 1013, 47309, 1061, 16061, 48623, 3271, 5501, 52673, 54059, 727, 797, 1499, 18803, 19121, 6427, 2333, 19603, 4051, 5569, 6917, 62753, 4217, 12853, 2399, 13159, 67343, 22621, 68909, 1543, 23321, 947, 7951, 14419, 24391, 641, 4987, 75353, 25301, 1699, 1453, 5171, 26041, 587, 719, 643, 26981, 3019, 16417, 83813, 9377, 1277, 5743, 87323, 5861, 9967, 971, 18181, 92723, 6263, 94559, 863, 1439, 6469, 3617, 1787, 32971, 33181, 4007, 6763, 2297, 104009, 6977, 3191, 105953, 35753, 36191, 709, 1483, 111893, 7549, 113909, 7639, 1423, 39103, 23599, 13187, 39791, 40253, 2699, 1321, 8237, 907, 2777, 2689, 1291, 43321, 132863, 44531, 135059, 823, 137273, 3067, 2011, 27901, 46751, 15667, 28351, 9551, 13093, 16087, 146309, 16427, 50053, 30187, 1873, 4621, 6131, 1511, 2267, 158009, 3529, 53201, 160403, 977, 32563, 54541, 929, 33049, 18451, 56171, 11399, 57271, 172643, 1523, 58661, 35533, 1087, 5813, 20117, 1021, 12241, 5009, 12413, 2711, 7517, 1907, 63803, 4273, 193163, 911, 195809, 983, 18043, 13291, 7417, 40231, 1433, 67651, 40771, 22751, 13711, 5657, 2803, 70381, 1301, 4733, 42967, 24077, 1741, 14633, 1609, 14821, 223259, 14947, 226103, 15137, 76003, 76961, 1093, 1039, 234743, 78571, 10333, 5303, 5119, 3221, 26951, 2203, 1049, 16567, 249503, 7591, 252509, 16901, 2293, 8243, 5701, 85853, 10343, 86531, 1259, 87553, 17579, 2729, 29527, 3557, 17923, 270923, 18131, 8273, 92051, 55441, 92753, 2069, 280373, 93811, 2753, 95231, 286763, 97021, 97381, 26953, 99191, 6637, 13033, 303053, 2693, 4159, 1367, 21019, 21169, 35407, 1607, 3463, 1747, 36037, 65323, 109253, 7309, 330053, 22157, 30319, 336983, 22543, 13619, 2423, 38351, 2099, 347513, 2473, 351059, 117811, 6691, 7907, 2017, 2311, 10891, 5261, 24281, 365423, 2039, 4937, 13759, 125053, 75277, 41957, 3413, 127103, 8501, 1721, 128341, 2341, 387509, 1831, 17011, 4261, 132511, 1697, 5351, 402593, 1307, 3001, 8647, 27179, 5927, 410243, 3719, 7529, 138461, 139753, 4349, 47017, 28297, 4327, 429683, 144103, 3469, 4691, 87517, 6361, 441563, 13421, 5923, 3943, 9931, 149411, 1621, 151651, 1709, 51001, 12479, 10321, 465809, 6229, 3323, 20431, 3491, 14323, 4283, 17659, 159853, 32063, 32341, 486509, 2957, 54367, 8317, 164503, 55147, 99829, 166853, 45763, 33749, 7577, 8677, 172561, 15731, 104113, 1871, 34897, 7393, 3733, 529259, 35381, 3347, 533633, 178853, 21521, 5801, 60107, 181303, 546863, 7331, 50119, 2281, 186253, 62417, 187751, 112951, 188753, 190261, 38153, 573809, 2557, 3259, 578363, 64601, 6301, 21817, 39373, 592133, 197891, 4409, 12697, 39887, 3389, 54673, 13399, 8761, 2579, 3023, 122149, 3851, 1637, 19853, 620159, 69257, 16889, 8353, 209353, 125929, 7793, 2971, 4093, 19273, 4723, 644009, 14347, 6689, 2377, 9497, 218971, 131707, 73351, 44119, 2897, 7151, 2963, 3499, 673223, 4999, 225503, 5897, 226601, 136621, 688073, 6967, 46093, 30133, 77377, 13171, 46649, 140617, 78307, 713183, 238291, 718259, 5333, 240551, 723353, 48337, 2447, 243391, 10607, 146719, 81701, 738743, 4657, 16493, 2027, 4519, 6733, 749093, 250853, 10957, 151903, 5399, 50867, 1879, 9463, 51217, 2237, 28649, 5659, 51803, 259603, 31223, 86927, 23761, 157177, 262553, 25523, 264331, 10597, 266711, 11969, 4871, 89501, 161461, 269701, 1973, 54421, 818123, 273311, 2029, 74869, 2677, 829013, 2467, 4049, 33599, 280603, 5113, 17989, 3037, 56611, 851009, 56857, 4129, 856553, 286753, 172423, 2909, 173539, 289853, 873293, 291721, 12379, 9491, 178039, 2887, 297991, 179173, 4337, 5531, 907259, 60611, 303691, 2347, 305603, 36749, 8039, 5197, 103577, 2113, 62533, 62921, 17231, 105517, 8573, 190711, 318503, 21277, 13513, 4783, 64223, 31139, 26249, 64879, 4013, 195427, 2083, 39323, 109451, 2861, 18661, 22067, 995009, 66467, 3433,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+1x+3 and
the reducible primes which appear as divisor for the first time
p | x^2+1x+3 and p < x^2+1x+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)
1107160.7000000.1000000.600000
21006751160.6700000.5100000.1600009.57142851.0000002.666667
31000685590950.6850000.5900000.09500010.22388111.5686275.937500
410000683362036300.6833000.6203000.0630009.97518310.5135596.631579
5100000686066370549010.6860600.6370500.04901010.04039210.2700317.779365
61000000686977646939400380.6869770.6469390.04003810.01336610.1552318.169353
710000000687668765368613398260.6876690.6536860.03398310.01006910.1042938.487587
8100000000688192016587816829410330.6881920.6587820.02941010.00760910.0779518.654526
91000000000688610714662669682259410320.6886110.6626700.02594110.00608310.0590188.820381
1010000000000688971846266575792252321392370.6889720.6657580.02321410.00524410.0466028.948728


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)
122021.0000000.0000001.000000
243030.7500000.0000000.7500001.500000-nan1.500000
385050.6250000.0000000.6250001.666667-nan1.666667
41610460.6250000.2500000.3750002.000000inf1.200000
532211290.6562500.3750000.2812502.1000003.0000001.500000
6644331120.6718750.4843750.1875002.0476192.5833331.333333
71288265170.6406250.5078120.1328121.9069772.0967741.416667
8256169138310.6601560.5390620.1210942.0609762.1230771.823529
9512346290560.6757810.5664060.1093752.0473372.1014491.806452
101024697600970.6806640.5859380.0947272.0144512.0689651.732143
112048139912301690.6831050.6005860.0825202.0071742.0500001.742268
124096279024853050.6811520.6066890.0744631.9942822.0203251.804734
138192557850515270.6809080.6165770.0643311.9992832.0325961.727869
141638411211102309810.6842650.6243900.0598752.0098602.0253421.861480
1532768224682071717510.6856690.6322330.0534362.0041032.0251221.784913
1665536449704164033300.6861880.6353760.0508122.0015132.0099431.901770
17131072899478369862490.6862410.6385650.0476762.0001562.0100381.876577
18262144180011168301117100.6866870.6420170.0446702.0013012.0108131.873900
19524288360032337956220760.6867070.6446000.0421072.0000562.0080451.885226
201048576720352678465418870.6869810.6470350.0399472.0008002.0075541.897400
21209715214412581362037792210.6872450.6494700.0377762.0007692.0075271.891303
224194304288311227318891512230.6873870.6513330.0360542.0004132.0057381.908875
238388608576824554798332884120.6876280.6532470.0343812.0007012.0058771.907197
241677721611539657109889445507130.6878170.6549920.0328252.0005492.0053431.909466
2533554432230845262203042410541020.6879720.6565580.0314152.0004522.0047811.914068
2667108864461790364415805420209820.6881210.6580060.0301152.0004322.0044121.917255
27134217728923735728849317238804000.6882370.6593250.0289112.0003352.0040091.920057
2826843545618478435017731965874646920.6883750.6605670.0278082.0004032.0037671.923691
29536870912369640253355257105143831480.6885090.6617180.0267912.0003872.0034841.926824
301073741824739407359711653449277539100.6886270.6627790.0258482.0003432.0032071.929613
31214748364814790592431425443228536160150.6887410.6637740.0249672.0003312.0030021.931836
324294967296295858190928548665091037154000.6888490.6647000.0241482.0003142.0027921.934411
338589934592591804168357172367822008049010.6889510.6655740.0233772.0002972.0026291.936115
341717986918411837814862114486055273892093350.6890520.6663970.0226552.0002932.0024721.938246
353435973836823678881878229237676617551142170.6891460.6671690.0219772.0002752.0023201.940124


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 5, 1, 1, 23, 11, 1, 59, 1, 31, 113, 1, 53, 37, 71, 1, 1, 103, 1, 383,
Found in Database : 3, 5, 23, 11, 59, 31, 113, 53, 37, 71, 103, 383, 47, 509, 67, 653, 163, 97, 311, 199, 353, 1193, 421, 89, 1409, 521,
Found in Database : 3, 5, 11, 23, 31, 37, 47, 53, 59, 67, 71, 89, 97, 103, 113, 137,

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
1220101100000000
2430201110000000
3850312110000000
41660422114220022
532907223212752226
66412010433231181365911
712817015455365402513171916
8256310299877138766226374035
9512560541515131329015613457807875
1010249709526282320600327273135156161148
1120481690167464740361230670560291320309310
124096305030380767475248513291156604648613620
13819252705251261291301425051267023811257125712701267
1416384981097924324723625510230540648242534256325592574
1532768175101749438441438434207171088398345164518351625208
166553633300332881984884681741640218511978910453104481038410355
17131072624906247155015881572153983698435894010920983209252088020910
18262144117100117082905296229522891168301873528094942156420704198542090
1952428822076022074551355745550543933795617509116286584440843818457584560
2010485764188704188510493105441051310337678465351198327267169571169533169361170000
21209715279221079219198061988119858196761362037703737658300340223340447340467340900
224194304151223015122137740377903796937724273188914084011323488683535682916682764682674
2383886082884120288410720527208472220720565479833282155526582781370171137019513695291369938
2416777216550713055071113789313757613761713762710988944565212253368222746644274822327477662746311
25335544321054102010541002636082634472632792637682203042411317398107130265506071551006455088605505429
266710886420209820202098050560350511150468350558544158054226549662150308811037504110444211104143511034694
2713421772838804000388039897120697020896915196983588493172453511924314198022117861221324202212520422117687
282684354567464692074646901866256186585118643911868194177319658907895738653008544317476443437524432877544329655
2953687091214383148014383146359649135944113594052359819435525710518172037817353672788805826888316958880707188812513
301073741824277539100277539086940301693603769364946941078711653449363707452347945997177904498177916311177910880177921760
31214748364853616015053616013134076821340068513400930134067181425443228727929442697513786356362604356361430356360909356358285
324294967296103715400010371539825933303259273822592401725930698285486650914568066571398059852713701447713707927713730808713726327
3385899345922008049010200804899502094945020200750195390501980105717236782291542122428018155581429322768142928870014293204261429304888
341717986918438920933503892093339731539297294847973002679729882911448605527583422942156143761062862181307286216796528621229642862133291
353435973836875511421707551142151887880591887673541887824161887763882292376766111674929185112488384765730977877573094567757309973085730846799