Inhaltsverzeichnis

Development of
Algorithmic Constructions

11:05:05
Deutsch
19.Apr 2024

Polynom = x^2+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) = 3 = 3
f(2) = 9 = 3*3
f(3) = 7 = 7
f(4) = 21 = 3*7
f(5) = 15 = 3*5
f(6) = 41 = 41
f(7) = 27 = 3*3*3
f(8) = 69 = 3*23
f(9) = 43 = 43
f(10) = 105 = 3*5*7
f(11) = 63 = 3*3*7
f(12) = 149 = 149
f(13) = 87 = 3*29
f(14) = 201 = 3*67
f(15) = 115 = 5*23
f(16) = 261 = 3*3*29
f(17) = 147 = 3*7*7
f(18) = 329 = 7*47
f(19) = 183 = 3*61
f(20) = 405 = 3*3*3*3*5
f(21) = 223 = 223
f(22) = 489 = 3*163
f(23) = 267 = 3*89
f(24) = 581 = 7*83
f(25) = 315 = 3*3*5*7
f(26) = 681 = 3*227
f(27) = 367 = 367
f(28) = 789 = 3*263
f(29) = 423 = 3*3*47
f(30) = 905 = 5*181
f(31) = 483 = 3*7*23
f(32) = 1029 = 3*7*7*7
f(33) = 547 = 547
f(34) = 1161 = 3*3*3*43
f(35) = 615 = 3*5*41
f(36) = 1301 = 1301
f(37) = 687 = 3*229
f(38) = 1449 = 3*3*7*23
f(39) = 763 = 7*109
f(40) = 1605 = 3*5*107
f(41) = 843 = 3*281
f(42) = 1769 = 29*61
f(43) = 927 = 3*3*103
f(44) = 1941 = 3*647
f(45) = 1015 = 5*7*29
f(46) = 2121 = 3*7*101
f(47) = 1107 = 3*3*3*41
f(48) = 2309 = 2309
f(49) = 1203 = 3*401
f(50) = 2505 = 3*5*167
f(51) = 1303 = 1303
f(52) = 2709 = 3*3*7*43
f(53) = 1407 = 3*7*67
f(54) = 2921 = 23*127
f(55) = 1515 = 3*5*101
f(56) = 3141 = 3*3*349
f(57) = 1627 = 1627
f(58) = 3369 = 3*1123
f(59) = 1743 = 3*7*83
f(60) = 3605 = 5*7*103
f(61) = 1863 = 3*3*3*3*23
f(62) = 3849 = 3*1283
f(63) = 1987 = 1987
f(64) = 4101 = 3*1367
f(65) = 2115 = 3*3*5*47
f(66) = 4361 = 7*7*89
f(67) = 2247 = 3*7*107
f(68) = 4629 = 3*1543
f(69) = 2383 = 2383
f(70) = 4905 = 3*3*5*109
f(71) = 2523 = 3*29*29
f(72) = 5189 = 5189
f(73) = 2667 = 3*7*127
f(74) = 5481 = 3*3*3*7*29
f(75) = 2815 = 5*563
f(76) = 5781 = 3*41*47
f(77) = 2967 = 3*23*43
f(78) = 6089 = 6089
f(79) = 3123 = 3*3*347
f(80) = 6405 = 3*5*7*61
f(81) = 3283 = 7*7*67
f(82) = 6729 = 3*2243
f(83) = 3447 = 3*3*383
f(84) = 7061 = 23*307
f(85) = 3615 = 3*5*241
f(86) = 7401 = 3*2467
f(87) = 3787 = 7*541
f(88) = 7749 = 3*3*3*7*41
f(89) = 3963 = 3*1321
f(90) = 8105 = 5*1621
f(91) = 4143 = 3*1381
f(92) = 8469 = 3*3*941
f(93) = 4327 = 4327
f(94) = 8841 = 3*7*421
f(95) = 4515 = 3*5*7*43
f(96) = 9221 = 9221
f(97) = 4707 = 3*3*523
f(98) = 9609 = 3*3203
f(99) = 4903 = 4903
f(100) = 10005 = 3*5*23*29

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

f(0)=5
f(1)=3
f(2)=1
f(3)=7
f(4)=1
f(5)=1
f(6)=41
f(7)=1
f(8)=23
f(9)=43
f(10)=1
f(11)=1
f(12)=149
f(13)=29
f(14)=67
f(15)=1
f(16)=1
f(17)=1
f(18)=47
f(19)=61
f(20)=1
f(21)=223
f(22)=163
f(23)=89
f(24)=83
f(25)=1
f(26)=227
f(27)=367
f(28)=263
f(29)=1
f(30)=181
f(31)=1
f(32)=1
f(33)=547
f(34)=1
f(35)=1
f(36)=1301
f(37)=229
f(38)=1
f(39)=109
f(40)=107
f(41)=281
f(42)=1
f(43)=103
f(44)=647
f(45)=1
f(46)=101
f(47)=1
f(48)=2309
f(49)=401
f(50)=167
f(51)=1303
f(52)=1
f(53)=1
f(54)=127
f(55)=1
f(56)=349
f(57)=1627
f(58)=1123
f(59)=1
f(60)=1
f(61)=1
f(62)=1283
f(63)=1987
f(64)=1367
f(65)=1
f(66)=1
f(67)=1
f(68)=1543
f(69)=2383
f(70)=1
f(71)=1
f(72)=5189
f(73)=1
f(74)=1
f(75)=563
f(76)=1
f(77)=1
f(78)=6089
f(79)=347
f(80)=1
f(81)=1
f(82)=2243
f(83)=383
f(84)=307
f(85)=241
f(86)=2467
f(87)=541
f(88)=1
f(89)=1321
f(90)=1621
f(91)=1381
f(92)=941
f(93)=4327
f(94)=421
f(95)=1
f(96)=9221
f(97)=523
f(98)=3203
f(99)=4903

b) Substitution of the polynom
The polynom f(x)=x^2+5 could be written as f(y)= y^2+5 with x=y+0

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

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, 3, 1, 7, 1, 1, 41, 1, 23, 43, 1, 1, 149, 29, 67, 1, 1, 1, 47, 61, 1, 223, 163, 89, 83, 1, 227, 367, 263, 1, 181, 1, 1, 547, 1, 1, 1301, 229, 1, 109, 107, 281, 1, 103, 647, 1, 101, 1, 2309, 401, 167, 1303, 1, 1, 127, 1, 349, 1627, 1123, 1, 1, 1, 1283, 1987, 1367, 1, 1, 1, 1543, 2383, 1, 1, 5189, 1, 1, 563, 1, 1, 6089, 347, 1, 1, 2243, 383, 307, 241, 2467, 541, 1, 1321, 1621, 1381, 941, 4327, 421, 1, 9221, 523, 3203, 4903, 1, 1, 1487, 1, 3607, 1103, 1249, 1, 1667, 283, 269, 6163, 1, 2129, 13001, 1, 641, 1, 4643, 787, 1, 2441, 709, 1, 1709, 521, 15881, 2689, 607, 1, 1, 2861, 601, 983, 5987, 1823, 881, 1, 443, 3221, 1307, 1, 1, 487, 2963, 701, 1, 1, 1, 3701, 643, 1, 7703, 509, 7907, 1, 1, 587, 1, 1, 569, 1, 26249, 1, 1, 389, 9187, 4649, 28229, 1, 1, 2089, 1409, 1663, 1, 1021, 449, 15667, 503, 1, 6481, 1, 409, 16747, 11287, 1, 4943, 1, 11783, 17863, 1, 2027, 1, 887, 12547, 3803, 1423, 6469, 39209, 1, 1, 1, 1, 6869, 41621, 467, 1, 3061, 14423, 809, 8821, 1, 14983, 463, 727, 1, 1609, 1, 5281, 827, 461, 1163, 2143, 1, 1, 1, 17027, 1, 1061, 8741, 3527, 26683, 5981, 9049, 7823, 1, 2063, 28087, 821, 9521, 1, 1, 2789, 29527, 1, 1, 60521, 10169, 1, 1, 1, 10501, 1549, 1, 1, 929, 3121, 1, 66569, 3727, 4507, 1481, 1, 1, 1483, 2341, 1, 829, 1, 1723, 2083, 12241, 8221, 1, 863, 2521, 10883, 1, 25763, 38923, 5227, 1, 1187, 1907, 1, 8123, 1, 13729, 761, 13921, 1, 1, 661, 1, 86441, 967, 29207, 6301, 4229, 4967, 1, 15101, 30403, 1583, 1, 1, 3229, 683, 1, 47743, 1, 1, 13907, 5443, 1429, 9923, 33287, 1861, 14447, 2423, 6827, 769, 1, 17389, 1721, 1, 1, 1, 35863, 18041, 947, 2029, 1, 1, 907, 1, 112901, 823, 38083, 8209, 1, 19381, 116969, 19609, 1, 11903, 5701, 1, 743, 1, 8167, 61603, 1, 1, 17903, 4201, 1, 63727, 1, 21481, 1, 1, 14561, 1607, 1523, 4441, 1229, 1069, 6449, 1, 9127, 2549, 138389, 23189, 6661, 1, 1, 23689, 3323, 1, 3209, 10369, 6949, 1063, 883, 1, 49667, 74887, 1, 1201, 1049, 1, 1, 2663, 1, 1, 1, 1, 5867, 3461, 10667, 26801, 23087, 1289, 1327, 1, 2389, 9203, 2729, 1, 1601, 84463, 6287, 28429, 171401, 5741, 1, 12421, 58243, 1009, 35281, 1, 1, 12781, 1223, 1, 1, 30389, 1, 4001, 1, 4423, 186629, 31249, 20929, 1, 63367, 4547, 27407, 1, 12907, 2069, 65123, 10903, 28163, 1, 1087, 99907, 1, 33601, 1, 1, 1, 102607, 1, 1, 207941, 1, 1427, 1, 14107, 11807, 213449, 35729, 1669, 3089, 1, 1, 1, 1, 4909, 110923, 1, 1, 2707, 1, 75527, 3923, 76163, 1, 1, 38561, 1801, 1741, 26029, 7841, 1, 5647, 1, 119563, 16007, 1747, 242069, 1, 11621, 1, 82007, 13723, 1, 1, 2381, 17929, 28001, 42169, 254021, 8501, 1, 1, 12289, 1489, 52021, 1, 87383, 1, 1, 1, 266261, 44549, 89443, 134683, 2003, 1, 1, 45589, 30509, 1, 92227, 1129, 39827, 2221, 1, 140983, 94343, 5261, 285161, 1, 13681, 6269, 1109, 1181, 58321, 48781, 4663, 21061, 4289, 9901, 6343, 1847, 100103, 21529, 1, 1, 304709, 50969, 1, 30803, 1, 1, 3023, 52081, 1, 157363, 1, 7547, 1567, 3547, 106787, 1, 1, 17987, 9283, 1, 109063, 1, 12203, 1, 331781, 7927, 5303, 167623, 1, 1, 7207, 1, 1, 4889, 114467, 1, 345749, 1, 1, 1, 5563, 1, 352841, 11801, 1361, 178207, 17029, 8543, 1, 6689, 1, 1, 121607, 1, 2281, 61409, 1, 4523, 8269, 1447, 53507, 1, 13963, 1, 126487, 1, 2287, 3041, 1, 4703, 4447, 21563, 389381, 1, 18661, 28081, 1, 1, 1, 66361, 44381, 28621, 19141, 13441, 1, 22543, 1, 204163, 1, 1, 1, 68909, 138247, 41603, 1, 9967, 1, 70201, 1, 7307, 1, 71069, 1, 1, 2141, 215827, 144323, 1, 87121, 1, 1, 219787, 48989, 14741, 443561, 74149, 1, 4567, 29927, 75041, 1, 25163, 1, 1, 1, 25463, 4463, 1787, 1, 1, 1, 1, 6983, 15641, 52289, 5021, 1901, 1, 1, 1, 159623, 2203, 1, 1789, 69203, 1, 1, 244303, 10889, 81901, 1, 1, 7867, 2161, 166147, 1, 3947, 1, 4801, 36109, 5827, 1, 509801, 17041, 170887, 36721, 1, 86161, 103681, 3767, 1, 1, 1, 2503, 527081, 29363, 7681, 1, 35527, 4241, 1867, 1, 3821, 1, 20063, 90529, 2683, 13003, 1, 9467, 183523, 92009, 1, 1, 26501, 279007, 1, 3463, 112501, 1, 3847, 1, 1, 19001, 571541, 1, 63841, 41149, 5501, 1, 5749, 10781, 1889, 1, 27941, 1, 589829, 98561, 1, 3581, 66221, 1, 1, 20021, 22303, 301867, 2267, 101141, 17383, 1, 203843, 7129, 204887, 1, 617801, 14747, 29569, 2909, 1, 104281, 627269, 1, 10007, 9029, 7283, 4603, 636809, 1, 42667, 6547, 1, 11941, 646421, 21601, 2609, 325627, 1, 15583, 131221, 109621, 1, 14369, 5387, 3163, 1, 1, 3329, 335383, 1949, 37447, 96527, 16127, 2543, 2347, 1, 113989, 1, 16363, 1, 1, 230743, 1, 695561, 1, 1, 1, 234083, 39107, 141121, 117881, 236323, 2207, 3769, 23801, 1, 119569, 79901, 1, 1, 1, 725909, 40423, 1, 1783, 244247, 1, 105167, 5347, 49307, 370663, 82561, 1, 2269, 1, 3623, 1, 251143, 2927, 151381, 1, 36209, 6247, 254627, 1, 767381, 128189, 36709, 1, 17209, 129361, 1, 4481, 1, 1, 1, 131129, 788549, 1, 52807, 396943, 37889, 6329, 18587, 26701, 1, 402307, 29867, 2749, 23143, 135301, 90401, 407707, 272407, 1, 1, 6529, 6703, 413143, 55207, 1, 1, 1, 5683, 2887, 93229, 1, 842729, 140761, 2687, 60589, 6029, 1, 12743, 3169, 285827, 61381, 1, 47947, 172981, 144461, 289543, 435247, 1, 1, 2081, 1, 32587, 440863, 58907, 1, 1, 1, 10243, 89303, 298307, 49823, 18341, 1, 60167, 19661, 1, 1, 910121, 1, 1, 7507, 1, 153281, 184321, 51307, 1, 9463, 3067, 3449, 3469, 155849, 312343, 1, 1, 157141, 11383, 5441, 4583, 95063, 45361, 22727, 1, 17749, 1, 20921, 321443, 7669, 138323, 32341, 324067, 4729, 108461, 163021, 1, 1, 12149, 493027, 329347, 1, 992021, 1, 1, 17207,

6. Sequence of the polynom (only primes)

5, 3, 7, 41, 23, 43, 149, 29, 67, 47, 61, 223, 163, 89, 83, 227, 367, 263, 181, 547, 1301, 229, 109, 107, 281, 103, 647, 101, 2309, 401, 167, 1303, 127, 349, 1627, 1123, 1283, 1987, 1367, 1543, 2383, 5189, 563, 6089, 347, 2243, 383, 307, 241, 2467, 541, 1321, 1621, 1381, 941, 4327, 421, 9221, 523, 3203, 4903, 1487, 3607, 1103, 1249, 1667, 283, 269, 6163, 2129, 13001, 641, 4643, 787, 2441, 709, 1709, 521, 15881, 2689, 607, 2861, 601, 983, 5987, 1823, 881, 443, 3221, 1307, 487, 2963, 701, 3701, 643, 7703, 509, 7907, 587, 569, 26249, 389, 9187, 4649, 28229, 2089, 1409, 1663, 1021, 449, 15667, 503, 6481, 409, 16747, 11287, 4943, 11783, 17863, 2027, 887, 12547, 3803, 1423, 6469, 39209, 6869, 41621, 467, 3061, 14423, 809, 8821, 14983, 463, 727, 1609, 5281, 827, 461, 1163, 2143, 17027, 1061, 8741, 3527, 26683, 5981, 9049, 7823, 2063, 28087, 821, 9521, 2789, 29527, 60521, 10169, 10501, 1549, 929, 3121, 66569, 3727, 4507, 1481, 1483, 2341, 829, 1723, 2083, 12241, 8221, 863, 2521, 10883, 25763, 38923, 5227, 1187, 1907, 8123, 13729, 761, 13921, 661, 86441, 967, 29207, 6301, 4229, 4967, 15101, 30403, 1583, 3229, 683, 47743, 13907, 5443, 1429, 9923, 33287, 1861, 14447, 2423, 6827, 769, 17389, 1721, 35863, 18041, 947, 2029, 907, 112901, 823, 38083, 8209, 19381, 116969, 19609, 11903, 5701, 743, 8167, 61603, 17903, 4201, 63727, 21481, 14561, 1607, 1523, 4441, 1229, 1069, 6449, 9127, 2549, 138389, 23189, 6661, 23689, 3323, 3209, 10369, 6949, 1063, 883, 49667, 74887, 1201, 1049, 2663, 5867, 3461, 10667, 26801, 23087, 1289, 1327, 2389, 9203, 2729, 1601, 84463, 6287, 28429, 171401, 5741, 12421, 58243, 1009, 35281, 12781, 1223, 30389, 4001, 4423, 186629, 31249, 20929, 63367, 4547, 27407, 12907, 2069, 65123, 10903, 28163, 1087, 99907, 33601, 102607, 207941, 1427, 14107, 11807, 213449, 35729, 1669, 3089, 4909, 110923, 2707, 75527, 3923, 76163, 38561, 1801, 1741, 26029, 7841, 5647, 119563, 16007, 1747, 242069, 11621, 82007, 13723, 2381, 17929, 28001, 42169, 254021, 8501, 12289, 1489, 52021, 87383, 266261, 44549, 89443, 134683, 2003, 45589, 30509, 92227, 1129, 39827, 2221, 140983, 94343, 5261, 285161, 13681, 6269, 1109, 1181, 58321, 48781, 4663, 21061, 4289, 9901, 6343, 1847, 100103, 21529, 304709, 50969, 30803, 3023, 52081, 157363, 7547, 1567, 3547, 106787, 17987, 9283, 109063, 12203, 331781, 7927, 5303, 167623, 7207, 4889, 114467, 345749, 5563, 352841, 11801, 1361, 178207, 17029, 8543, 6689, 121607, 2281, 61409, 4523, 8269, 1447, 53507, 13963, 126487, 2287, 3041, 4703, 4447, 21563, 389381, 18661, 28081, 66361, 44381, 28621, 19141, 13441, 22543, 204163, 68909, 138247, 41603, 9967, 70201, 7307, 71069, 2141, 215827, 144323, 87121, 219787, 48989, 14741, 443561, 74149, 4567, 29927, 75041, 25163, 25463, 4463, 1787, 6983, 15641, 52289, 5021, 1901, 159623, 2203, 1789, 69203, 244303, 10889, 81901, 7867, 2161, 166147, 3947, 4801, 36109, 5827, 509801, 17041, 170887, 36721, 86161, 103681, 3767, 2503, 527081, 29363, 7681, 35527, 4241, 1867, 3821, 20063, 90529, 2683, 13003, 9467, 183523, 92009, 26501, 279007, 3463, 112501, 3847, 19001, 571541, 63841, 41149, 5501, 5749, 10781, 1889, 27941, 589829, 98561, 3581, 66221, 20021, 22303, 301867, 2267, 101141, 17383, 203843, 7129, 204887, 617801, 14747, 29569, 2909, 104281, 627269, 10007, 9029, 7283, 4603, 636809, 42667, 6547, 11941, 646421, 21601, 2609, 325627, 15583, 131221, 109621, 14369, 5387, 3163, 3329, 335383, 1949, 37447, 96527, 16127, 2543, 2347, 113989, 16363, 230743, 695561, 234083, 39107, 141121, 117881, 236323, 2207, 3769, 23801, 119569, 79901, 725909, 40423, 1783, 244247, 105167, 5347, 49307, 370663, 82561, 2269, 3623, 251143, 2927, 151381, 36209, 6247, 254627, 767381, 128189, 36709, 17209, 129361, 4481, 131129, 788549, 52807, 396943, 37889, 6329, 18587, 26701, 402307, 29867, 2749, 23143, 135301, 90401, 407707, 272407, 6529, 6703, 413143, 55207, 5683, 2887, 93229, 842729, 140761, 2687, 60589, 6029, 12743, 3169, 285827, 61381, 47947, 172981, 144461, 289543, 435247, 2081, 32587, 440863, 58907, 10243, 89303, 298307, 49823, 18341, 60167, 19661, 910121, 7507, 153281, 184321, 51307, 9463, 3067, 3449, 3469, 155849, 312343, 157141, 11383, 5441, 4583, 95063, 45361, 22727, 17749, 20921, 321443, 7669, 138323, 32341, 324067, 4729, 108461, 163021, 12149, 493027, 329347, 992021, 17207,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2x+5 and
the reducible primes which appear as divisor for the first time
p | x^2x+5 and p < x^2x+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)
1106510.6000000.5000000.6000000.0000000.0000000.000000
21006120410.6100000.2000000.61000010.1666674.00000041.000000
31.000656995570.6560000.0990000.65600010.7540984.95000013.585366
410.0006.6386815.9570.6638000.0681000.66380010.1189026.87878810.694794
5100.00067.0795.17561.9040.6707900.0517500.67079010.1053037.59911910.391808
61.000.000674.50842.207632.3010.6745080.0422070.67450810.0554288.15594210.214219
710.000.0006.769.572355.9376.413.6350.6769570.0355940.67695710.0363118.43312710.143326
8100.000.00067.884.2603.076.46064.807.8000.6788430.0307650.67884310.0278508.64327110.104691
91.000.000.000680.341.26527.106.121653.235.1440.6803410.0271060.68034110.0220788.81081510.079576
1010.000.000.0006.815.530.703242.312.6286.573.218.0750.6815530.0242310.68155310.0178128.93940610.062561


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
243300.7500000.7500000.0000001.5000001.500000-nan
385410.6250000.5000000.1250001.6666671.333333inf
4169630.5625000.3750000.1875001.8000001.5000003.000000
532198110.5937500.2500000.3437502.1111111.3333333.666667
6643914250.6093750.2187500.3906252.0526321.7500002.272727
71288123580.6328120.1796880.4531252.0769231.6428572.320000
8256162341280.6328120.1328120.5000002.0000001.4782612.206897
9512332552770.6484380.1074220.5410162.0493831.6176472.164062
101.0246711015700.6552730.0986330.5566412.0210841.8363642.057762
112.0481.3351821.1530.6518550.0888670.5629881.9895681.8019802.022807
124.0962.6943322.3620.6577150.0810550.5766602.0179771.8241762.048569
138.1925.4485774.8710.6650390.0704350.5946042.0222721.7379522.062235
1416.38410.9161.0459.8710.6662600.0637820.6024782.0036711.8110922.026483
1532.76821.8721.93719.9350.6674800.0591130.6083682.0036641.8535882.019552
1665.53643.8893.52340.3660.6696930.0537570.6159362.0066291.8187922.024881
17131.07287.9916.61081.3810.6713180.0504300.6208882.0048531.8762422.016078
18262.144176.33212.421163.9110.6726530.0473820.6252712.0039781.8791222.014119
19524.288353.12323.480329.6430.6735290.0447850.6287442.0026031.8903472.011110
201.048.576707.31844.093663.2250.6745510.0420500.6325012.0030361.8778962.011949
212.097.1521.416.75483.5931.333.1610.6755610.0398600.6357012.0029941.8958342.010119
224.194.3042.835.577158.9702.676.6070.6760540.0379010.6381532.0014601.9017142.007715
238.388.6085.677.026302.3385.374.6880.6767540.0360410.6407132.0020711.9018562.008023
2416.777.21611.364.401576.73210.787.6690.6773710.0343760.6429952.0018231.9075742.007125
2533.554.43222.749.4911.103.23921.646.2520.6779880.0328790.6451092.0018211.9129152.006574
2667.108.86445.536.1422.114.14243.422.0000.6785410.0315030.6470382.0016331.9163052.005982
27134.217.72891.141.2674.059.61787.081.6500.6790550.0302470.6488092.0015151.9202202.005473
28268.435.456182.409.7967.805.392174.604.4040.6795290.0290770.6504522.0013961.9226922.005065
29536.870.912365.054.54115.034.462350.020.0790.6799670.0280040.6519632.0012881.9261642.004646
301.073.741.824730.558.25028.997.095701.561.1550.6803850.0270060.6533802.0012301.9287092.004345
312.147.483.6481.461.951.65755.998.5991.405.953.0580.6807740.0260760.6546982.0011431.9311802.004035
324.294.967.2962.925.471.888108.278.9822.817.192.9060.6811400.0252110.6559292.0010731.9336022.003760
338.589.934.5925.853.854.280209.606.6635.644.247.6170.6814780.0244010.6570772.0009951.9358022.003500
3417.179.869.18411.713.298.670406.176.17011.307.122.5000.6818040.0236430.6581612.0009551.9378022.003300
3534.359.738.36823.437.159.276787.860.13422.649.299.1420.6821110.0229300.6591812.0009021.9397012.003100
3668.719.476.73646.894.297.7431.529.563.80945.364.733.9340.6824020.0222580.6601442.0008531.9414152.002920


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
243110111
384121111
4166231221
5328431223
66414851544
71282312104667
825634181579810
951255282612141415
101.024101495123242826
112.048182899242425048
124.09633216616574839184
138.192577288288131140157149
1416.3841.045523521258262263262
1532.7681.937991945472495473497
1665.5363.5231.7911.731880917851875
17131.0726.6103.3223.2871.6591.6981.6281.625
18262.14412.4216.2236.1973.0973.1603.1003.064
19524.28823.48011.80511.6745.8465.9655.8285.841
201.048.57644.09322.31121.78110.87111.20810.91011.104
212.097.15283.59342.24241.35020.61021.14820.74021.095
224.194.304158.97080.36778.60239.25940.17839.34340.190
238.388.608302.338152.864149.47374.64476.36774.82976.498
2416.777.216576.732291.348285.383142.591145.634142.792145.715
2533.554.4321.103.239557.100546.138272.918278.371273.220278.730
2667.108.8642.114.1421.068.1191.046.022522.827533.784523.195534.336
27134.217.7284.059.6172.050.3712.009.2451.004.6861.024.8891.004.5591.025.483
28268.435.4567.805.3923.939.5793.865.8121.932.5501.969.4691.933.2621.970.111
29536.870.91215.034.4627.586.4337.448.0283.722.5743.794.2573.725.4543.792.177
301.073.741.82428.997.09514.626.51214.370.5827.183.8557.314.2317.186.7277.312.282
312.147.483.64855.998.59928.235.33027.763.26813.879.81214.119.18213.883.45614.116.149
324.294.967.296108.278.98254.587.22153.691.76026.844.08927.298.98826.847.67127.288.234
338.589.934.592209.606.663105.643.923103.962.73951.978.48352.831.19251.984.25652.812.732
3417.179.869.184406.176.170204.665.117201.511.052100.753.359102.341.040100.757.693102.324.078
3534.359.738.368787.860.134396.895.312390.964.821195.483.289198.456.442195.481.532198.438.871
3668.719.476.7361.529.563.809770.384.334759.179.474379.596.995385.206.391379.582.479385.177.944


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
120000000
240000000
381010001
4163120111
53211471433
6642510153778
712858273111181514
8256128527628333433
951227712814969717067
101.024570278292143141144142
112.0481.153581572283297282291
124.0962.3621.1481.214604583577598
138.1924.8712.3962.4751.2021.2271.2251.217
1416.3849.8714.9064.9652.3742.5172.5112.469
1532.76819.9359.9439.9924.8754.9975.0535.010
1665.53640.36620.23620.1309.95710.10510.17610.128
17131.07281.38140.67040.71120.27720.40720.36920.328
18262.144163.91181.85882.05340.81541.08541.13740.874
19524.288329.643164.637165.00682.10682.75582.62682.156
201.048.576663.225331.376331.849165.642165.735166.306165.542
212.097.1521.333.161666.214666.947333.632332.583333.826333.120
224.194.3042.676.6071.338.8921.337.715670.327667.764669.230669.286
238.388.6085.374.6882.687.5182.687.1701.344.7591.342.3231.344.2421.343.364
2416.777.21610.787.6695.392.9785.394.6912.697.6832.694.7462.700.0892.695.151
2533.554.43221.646.25210.823.06510.823.1875.413.9655.406.9795.414.7375.410.571
2667.108.86443.422.00021.711.45021.710.55010.860.03110.849.80410.858.78310.853.382
27134.217.72887.081.65043.540.46843.541.18221.781.20221.754.90521.780.76121.764.782
28268.435.456174.604.40487.302.20887.302.19643.670.04643.624.19443.673.48543.636.679
29536.870.912350.020.079175.002.391175.017.68887.539.55587.461.35687.542.48887.476.680
301.073.741.824701.561.155350.775.801350.785.354175.466.136175.314.235175.451.683175.329.101
312.147.483.6481.405.953.058702.947.616703.005.442351.619.115351.348.471351.619.549351.365.923
324.294.967.2962.817.192.9061.408.530.5081.408.662.398704.526.010704.064.468704.525.027704.077.401
338.589.934.5925.644.247.6172.821.976.4722.822.271.1451.411.475.0091.410.617.5981.411.517.2041.410.637.806
3417.179.869.18411.307.122.5005.653.292.8365.653.829.6642.827.572.5172.825.964.9722.827.588.6532.825.996.358
3534.359.738.36822.649.299.14211.324.189.78111.325.109.3615.663.811.3965.660.758.1135.663.951.7575.660.777.876
3668.719.476.73645.364.733.93422.681.456.79722.683.277.13711.343.999.71011.338.356.47411.344.052.52511.338.325.225


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 3, 1, 7, 1, 1, 41, 1, 23, 43, 1, 1, 149, 29, 67, 1, 1, 1, 47, 61,
Found in Database : 5, 3, 7, 41, 23, 43, 149, 29, 67, 47, 61, 223, 163, 89, 83, 227, 367, 263, 181, 547, 1301, 229, 109,
Found in Database : 3, 5, 7, 23, 29, 41, 43, 47, 61, 67, 83, 89, 101, 103, 107, 109, 127, 149,