Inhaltsverzeichnis

Development of
Algorithmic Constructions

16:41:32
Deutsch
20.Apr 2024

Polynom = x^2-68x+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) = 31 = 31
f(2) = 127 = 127
f(3) = 95 = 5*19
f(4) = 251 = 251
f(5) = 155 = 5*31
f(6) = 367 = 367
f(7) = 211 = 211
f(8) = 475 = 5*5*19
f(9) = 263 = 263
f(10) = 575 = 5*5*23
f(11) = 311 = 311
f(12) = 667 = 23*29
f(13) = 355 = 5*71
f(14) = 751 = 751
f(15) = 395 = 5*79
f(16) = 827 = 827
f(17) = 431 = 431
f(18) = 895 = 5*179
f(19) = 463 = 463
f(20) = 955 = 5*191
f(21) = 491 = 491
f(22) = 1007 = 19*53
f(23) = 515 = 5*103
f(24) = 1051 = 1051
f(25) = 535 = 5*107
f(26) = 1087 = 1087
f(27) = 551 = 19*29
f(28) = 1115 = 5*223
f(29) = 563 = 563
f(30) = 1135 = 5*227
f(31) = 571 = 571
f(32) = 1147 = 31*37
f(33) = 575 = 5*5*23
f(34) = 1151 = 1151
f(35) = 575 = 5*5*23
f(36) = 1147 = 31*37
f(37) = 571 = 571
f(38) = 1135 = 5*227
f(39) = 563 = 563
f(40) = 1115 = 5*223
f(41) = 551 = 19*29
f(42) = 1087 = 1087
f(43) = 535 = 5*107
f(44) = 1051 = 1051
f(45) = 515 = 5*103
f(46) = 1007 = 19*53
f(47) = 491 = 491
f(48) = 955 = 5*191
f(49) = 463 = 463
f(50) = 895 = 5*179
f(51) = 431 = 431
f(52) = 827 = 827
f(53) = 395 = 5*79
f(54) = 751 = 751
f(55) = 355 = 5*71
f(56) = 667 = 23*29
f(57) = 311 = 311
f(58) = 575 = 5*5*23
f(59) = 263 = 263
f(60) = 475 = 5*5*19
f(61) = 211 = 211
f(62) = 367 = 367
f(63) = 155 = 5*31
f(64) = 251 = 251
f(65) = 95 = 5*19
f(66) = 127 = 127
f(67) = 31 = 31
f(68) = 5 = 5
f(69) = 37 = 37
f(70) = 145 = 5*29
f(71) = 109 = 109
f(72) = 293 = 293
f(73) = 185 = 5*37
f(74) = 449 = 449
f(75) = 265 = 5*53
f(76) = 613 = 613
f(77) = 349 = 349
f(78) = 785 = 5*157
f(79) = 437 = 19*23
f(80) = 965 = 5*193
f(81) = 529 = 23*23
f(82) = 1153 = 1153
f(83) = 625 = 5*5*5*5
f(84) = 1349 = 19*71
f(85) = 725 = 5*5*29
f(86) = 1553 = 1553
f(87) = 829 = 829
f(88) = 1765 = 5*353
f(89) = 937 = 937
f(90) = 1985 = 5*397
f(91) = 1049 = 1049
f(92) = 2213 = 2213
f(93) = 1165 = 5*233
f(94) = 2449 = 31*79
f(95) = 1285 = 5*257
f(96) = 2693 = 2693
f(97) = 1409 = 1409
f(98) = 2945 = 5*19*31
f(99) = 1537 = 29*53
f(100) = 3205 = 5*641

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

f(0)=5
f(1)=31
f(2)=127
f(3)=19
f(4)=251
f(5)=1
f(6)=367
f(7)=211
f(8)=1
f(9)=263
f(10)=23
f(11)=311
f(12)=29
f(13)=71
f(14)=751
f(15)=79
f(16)=827
f(17)=431
f(18)=179
f(19)=463
f(20)=191
f(21)=491
f(22)=53
f(23)=103
f(24)=1051
f(25)=107
f(26)=1087
f(27)=1
f(28)=223
f(29)=563
f(30)=227
f(31)=571
f(32)=37
f(33)=1
f(34)=1151
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)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=109
f(72)=293
f(73)=1
f(74)=449
f(75)=1
f(76)=613
f(77)=349
f(78)=157
f(79)=1
f(80)=193
f(81)=1
f(82)=1153
f(83)=1
f(84)=1
f(85)=1
f(86)=1553
f(87)=829
f(88)=353
f(89)=937
f(90)=397
f(91)=1049
f(92)=2213
f(93)=233
f(94)=1
f(95)=257
f(96)=2693
f(97)=1409
f(98)=1
f(99)=1

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

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

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, 31, 127, 19, 251, 1, 367, 211, 1, 263, 23, 311, 29, 71, 751, 79, 827, 431, 179, 463, 191, 491, 53, 103, 1051, 107, 1087, 1, 223, 563, 227, 571, 37, 1, 1151, 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, 1, 1, 1, 1, 1, 1, 1, 109, 293, 1, 449, 1, 613, 349, 157, 1, 193, 1, 1153, 1, 1, 1, 1553, 829, 353, 937, 397, 1049, 2213, 233, 1, 257, 2693, 1409, 1, 1, 641, 1669, 151, 1, 163, 389, 1, 2089, 173, 2237, 1, 2389, 4933, 509, 181, 541, 5573, 1, 1181, 3037, 1249, 3209, 347, 677, 6949, 1, 1, 1, 1, 1, 1613, 4129, 1, 1, 8849, 1, 487, 4729, 1933, 4937, 2017, 271, 10513, 1, 10949, 1117, 11393, 1, 1, 6037, 1, 6269, 241, 1301, 13249, 1, 443, 1, 569, 7237, 1, 7489, 15233, 1549, 15749, 1601, 16273, 8269, 3361, 8537, 3469, 383, 617, 1, 971, 1873, 19013, 9649, 3917, 523, 1, 1, 20753, 421, 577, 433, 757, 359, 4513, 11437, 4637, 379, 23813, 1, 1063, 2477, 1091, 1, 1, 13037, 5281, 461, 27073, 2741, 27749, 1, 28433, 14389, 1, 14737, 1193, 1, 1607, 3089, 31249, 1, 31973, 1, 1, 719, 6689, 457, 1103, 3457, 34949, 3533, 503, 18049, 7297, 1, 1, 991, 38053, 769, 733, 1, 2087, 20029, 8093, 1, 1, 20849, 1831, 4253, 1481, 4337, 43793, 22109, 8929, 727, 479, 1, 587, 1, 1277, 1, 1, 1, 1, 853, 1997, 25189, 50833, 1, 51749, 1, 52673, 1, 1, 1423, 10909, 27509, 1, 1, 2971, 5693, 57413, 28949, 11677, 29437, 1, 1, 60353, 1217, 1979, 1237, 2711, 593, 1, 1, 1, 877, 65413, 1, 66449, 1, 67493, 1, 13709, 34537, 13921, 35069, 2437, 7121, 1, 7229, 1, 1931, 2957, 1619, 3001, 1, 4007, 7669, 77249, 1, 1, 1361, 15901, 40037, 1, 40609, 1, 8237, 761, 8353, 1, 42349, 1, 42937, 17293, 1, 1, 1, 3863, 1789, 90053, 45329, 18253, 647, 1, 46549, 3023, 9433, 94949, 1, 1, 48409, 19489, 49037, 1039, 49669, 1, 10061, 983, 1, 102533, 2243, 4153, 52237, 1, 52889, 106433, 10709, 1, 1, 109073, 54869, 1, 1, 22349, 56209, 113093, 1, 1, 1, 1, 1879, 1019, 58937, 1031, 59629, 119953, 1, 121349, 2441, 122753, 61729, 1307, 2153, 25117, 63149, 809, 1, 128449, 12917, 129893, 65309, 1, 66037, 26561, 2903, 1, 1, 1, 13649, 3709, 3631, 1, 69737, 1, 70489, 1, 14249, 143249, 14401, 144773, 1373, 1009, 1, 29569, 3911, 149393, 15017, 6563, 15173, 1, 76649, 30817, 1, 1, 78229, 157253, 1, 158849, 1, 160453, 80629, 32413, 1, 1723, 1, 165313, 1, 166949, 883, 3181, 1, 1, 3719, 34381, 86369, 173573, 1, 1013, 17609, 176933, 863, 1429, 4723, 7213, 1, 6277, 18289, 1, 18461, 1, 93169, 37441, 1, 1, 887, 8291, 19157, 1, 19333, 1, 97549, 2063, 1, 1069, 1399, 1, 1, 1, 1, 911, 1, 40993, 1303, 41357, 3581, 919, 1, 1, 1, 212293, 1, 42829, 2029, 43201, 3499, 11467, 21881, 219749, 1, 1, 1021, 8941, 112237, 1, 113189, 1, 1, 229249, 23021, 1, 3137, 2027, 117037, 1621, 6211, 236993, 1, 238949, 23993, 240913, 1531, 1567, 121937, 48973, 122929, 7963, 4957, 8581, 1, 250853, 125929, 1, 5519, 2683, 5563, 2357, 25793, 258949, 25997, 1, 131009, 52609, 1, 1433, 133069, 1, 26821, 1, 1, 271333, 136189, 10937, 1, 1, 138289, 12071, 1, 12163, 28081, 1123, 1, 1, 142537, 1, 143609, 288293, 1523, 2287, 29153, 5521, 146849, 1, 147937, 59393, 2099, 1, 1201, 301349, 1, 303553, 1, 61153, 153437, 1987, 4177, 1, 1, 10079, 31357, 314693, 8311, 63389, 1, 63841, 160169, 1, 32261, 1, 1, 4127, 5641, 1, 1, 1, 8731, 332933, 33409, 335249, 33641, 1, 169369, 1, 170537, 68449, 1, 1, 1, 9377, 1, 349313, 1, 1901, 3329, 3727, 7723, 356453, 1, 1489, 1, 12457, 1427, 72733, 1, 1, 1783, 368513, 36973, 370949, 37217, 373393, 2371, 75169, 9923, 2609, 1741, 1, 38201, 1, 38449, 1, 1, 1, 1, 15629, 5297, 1, 1, 395749, 1, 398273, 1867, 4219, 201037, 80669, 202309, 405893, 2143, 1753, 40973, 411013, 8963, 1, 1, 83233, 208729, 7901, 1, 421349, 1, 1, 1, 85313, 1, 85837, 215249, 22727, 43313, 1, 43577, 437093, 1, 2377, 220537, 3847, 1747, 1, 44641, 447749, 44909, 1, 225889, 1, 1, 18233, 1, 458533, 45989, 14879, 46261, 463973, 232669, 3011, 1, 93889, 1559, 472193, 1, 474949, 1, 6047, 1, 96097, 1, 5087, 242329, 486053, 9749, 2731, 1, 491653, 8501, 98893, 6701, 1, 1, 500113, 50153, 1, 1627, 21991, 253609, 4423, 1, 102301, 256469, 17737, 51581, 517249, 51869, 3191, 1, 20921, 262237, 1, 1, 528833, 2791, 1, 1, 1, 268069, 5659, 11719, 108109, 11783, 1, 54497, 5107, 1, 1, 275449, 110477, 1699, 3583, 9601, 29387, 11197, 2939, 11257, 564353, 14891, 2141, 1, 114077, 285949, 1, 57493, 1, 1993, 1579, 290509, 1, 292037, 1, 15451, 588673, 59021, 591749, 1, 31307, 9619, 23917, 8101, 1, 9719, 3163, 1637, 607249, 2647, 1759, 1, 122701, 307537, 6491, 309109, 619793, 62137, 21481, 1, 626113, 313849, 1, 315437, 126493, 317029, 635653, 2549, 5861, 12809, 9043, 321829, 1, 1, 5639, 6133, 21023, 1, 34471, 65657, 17789, 3203, 1, 331537, 3593, 1, 3461, 2309, 671249, 67289, 674533, 2239, 1, 1877, 5449, 14843, 684433, 1, 687749, 1, 2689, 346369, 4789, 1, 2633, 349709, 4643, 2267, 704449, 1, 707813, 18671, 142237, 1, 1, 3347, 1, 1, 1, 14461, 31511, 9817, 145633, 364937, 146317, 2887, 1, 73673, 13933, 74017, 39047, 12821, 149069, 3491, 4831, 19751, 752273, 75401, 24379, 1, 1, 1, 30509, 16619, 30649, 13241, 769733, 1, 773249, 4079, 1, 389269, 156061, 2399, 1, 392809, 9967, 1, 21377, 79273, 27397, 398149, 159617, 399937, 6971, 12959, 1, 16141, 42571, 1, 11443, 1, 1, 21523, 5653, 410749, 5051, 1, 2659, 1, 3659, 7853, 166849, 1, 1, 1, 841573, 1, 3119, 1, 848933, 11497, 1, 427237, 34253, 11597, 27743, 1, 863749, 86561, 27983, 1, 174241, 15053, 174989, 438409, 1, 1, 882449, 1, 1, 23371, 1, 445937, 178753, 447829, 897553, 17989, 31081, 3613, 1, 1, 1, 455437, 1, 24071, 916613, 2963, 24877, 92237, 48647, 14939, 1, 20219,

6. Sequence of the polynom (only primes)

5, 31, 127, 19, 251, 367, 211, 263, 23, 311, 29, 71, 751, 79, 827, 431, 179, 463, 191, 491, 53, 103, 1051, 107, 1087, 223, 563, 227, 571, 37, 1151, 109, 293, 449, 613, 349, 157, 193, 1153, 1553, 829, 353, 937, 397, 1049, 2213, 233, 257, 2693, 1409, 641, 1669, 151, 163, 389, 2089, 173, 2237, 2389, 4933, 509, 181, 541, 5573, 1181, 3037, 1249, 3209, 347, 677, 6949, 1613, 4129, 8849, 487, 4729, 1933, 4937, 2017, 271, 10513, 10949, 1117, 11393, 6037, 6269, 241, 1301, 13249, 443, 569, 7237, 7489, 15233, 1549, 15749, 1601, 16273, 8269, 3361, 8537, 3469, 383, 617, 971, 1873, 19013, 9649, 3917, 523, 20753, 421, 577, 433, 757, 359, 4513, 11437, 4637, 379, 23813, 1063, 2477, 1091, 13037, 5281, 461, 27073, 2741, 27749, 28433, 14389, 14737, 1193, 1607, 3089, 31249, 31973, 719, 6689, 457, 1103, 3457, 34949, 3533, 503, 18049, 7297, 991, 38053, 769, 733, 2087, 20029, 8093, 20849, 1831, 4253, 1481, 4337, 43793, 22109, 8929, 727, 479, 587, 1277, 853, 1997, 25189, 50833, 51749, 52673, 1423, 10909, 27509, 2971, 5693, 57413, 28949, 11677, 29437, 60353, 1217, 1979, 1237, 2711, 593, 877, 65413, 66449, 67493, 13709, 34537, 13921, 35069, 2437, 7121, 7229, 1931, 2957, 1619, 3001, 4007, 7669, 77249, 1361, 15901, 40037, 40609, 8237, 761, 8353, 42349, 42937, 17293, 3863, 1789, 90053, 45329, 18253, 647, 46549, 3023, 9433, 94949, 48409, 19489, 49037, 1039, 49669, 10061, 983, 102533, 2243, 4153, 52237, 52889, 106433, 10709, 109073, 54869, 22349, 56209, 113093, 1879, 1019, 58937, 1031, 59629, 119953, 121349, 2441, 122753, 61729, 1307, 2153, 25117, 63149, 809, 128449, 12917, 129893, 65309, 66037, 26561, 2903, 13649, 3709, 3631, 69737, 70489, 14249, 143249, 14401, 144773, 1373, 1009, 29569, 3911, 149393, 15017, 6563, 15173, 76649, 30817, 78229, 157253, 158849, 160453, 80629, 32413, 1723, 165313, 166949, 883, 3181, 3719, 34381, 86369, 173573, 1013, 17609, 176933, 863, 1429, 4723, 7213, 6277, 18289, 18461, 93169, 37441, 887, 8291, 19157, 19333, 97549, 2063, 1069, 1399, 911, 40993, 1303, 41357, 3581, 919, 212293, 42829, 2029, 43201, 3499, 11467, 21881, 219749, 1021, 8941, 112237, 113189, 229249, 23021, 3137, 2027, 117037, 1621, 6211, 236993, 238949, 23993, 240913, 1531, 1567, 121937, 48973, 122929, 7963, 4957, 8581, 250853, 125929, 5519, 2683, 5563, 2357, 25793, 258949, 25997, 131009, 52609, 1433, 133069, 26821, 271333, 136189, 10937, 138289, 12071, 12163, 28081, 1123, 142537, 143609, 288293, 1523, 2287, 29153, 5521, 146849, 147937, 59393, 2099, 1201, 301349, 303553, 61153, 153437, 1987, 4177, 10079, 31357, 314693, 8311, 63389, 63841, 160169, 32261, 4127, 5641, 8731, 332933, 33409, 335249, 33641, 169369, 170537, 68449, 9377, 349313, 1901, 3329, 3727, 7723, 356453, 1489, 12457, 1427, 72733, 1783, 368513, 36973, 370949, 37217, 373393, 2371, 75169, 9923, 2609, 1741, 38201, 38449, 15629, 5297, 395749, 398273, 1867, 4219, 201037, 80669, 202309, 405893, 2143, 1753, 40973, 411013, 8963, 83233, 208729, 7901, 421349, 85313, 85837, 215249, 22727, 43313, 43577, 437093, 2377, 220537, 3847, 1747, 44641, 447749, 44909, 225889, 18233, 458533, 45989, 14879, 46261, 463973, 232669, 3011, 93889, 1559, 472193, 474949, 6047, 96097, 5087, 242329, 486053, 9749, 2731, 491653, 8501, 98893, 6701, 500113, 50153, 1627, 21991, 253609, 4423, 102301, 256469, 17737, 51581, 517249, 51869, 3191, 20921, 262237, 528833, 2791, 268069, 5659, 11719, 108109, 11783, 54497, 5107, 275449, 110477, 1699, 3583, 9601, 29387, 11197, 2939, 11257, 564353, 14891, 2141, 114077, 285949, 57493, 1993, 1579, 290509, 292037, 15451, 588673, 59021, 591749, 31307, 9619, 23917, 8101, 9719, 3163, 1637, 607249, 2647, 1759, 122701, 307537, 6491, 309109, 619793, 62137, 21481, 626113, 313849, 315437, 126493, 317029, 635653, 2549, 5861, 12809, 9043, 321829, 5639, 6133, 21023, 34471, 65657, 17789, 3203, 331537, 3593, 3461, 2309, 671249, 67289, 674533, 2239, 1877, 5449, 14843, 684433, 687749, 2689, 346369, 4789, 2633, 349709, 4643, 2267, 704449, 707813, 18671, 142237, 3347, 14461, 31511, 9817, 145633, 364937, 146317, 2887, 73673, 13933, 74017, 39047, 12821, 149069, 3491, 4831, 19751, 752273, 75401, 24379, 30509, 16619, 30649, 13241, 769733, 773249, 4079, 389269, 156061, 2399, 392809, 9967, 21377, 79273, 27397, 398149, 159617, 399937, 6971, 12959, 16141, 42571, 11443, 21523, 5653, 410749, 5051, 2659, 3659, 7853, 166849, 841573, 3119, 848933, 11497, 427237, 34253, 11597, 27743, 863749, 86561, 27983, 174241, 15053, 174989, 438409, 882449, 23371, 445937, 178753, 447829, 897553, 17989, 31081, 3613, 455437, 24071, 916613, 2963, 24877, 92237, 48647, 14939, 20219,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-68x+5 and
the reducible primes which appear as divisor for the first time
p | x^2-68x+5 and p < x^2-68x+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)
1109720.9000000.7000000.2000000.0000000.0000000.000000
21004930190.4900000.3000000.1900005.4444454.2857149.500000
31.0006692514180.6690000.2510000.41800013.6530618.36666722.000000
410.0006.9781.7965.1820.6978000.1796000.51820010.4304937.15537812.397129
5100.00070.22914.12456.1050.7022900.1412400.56105010.0643457.86414210.826900
61.000.000701.821114.887586.9340.7018210.1148870.5869349.9933218.13416910.461349
710.000.0007.003.095970.3956.032.7000.7003100.0970390.6032709.9784638.44651710.278328
8100.000.00069.924.3968.398.21261.526.1840.6992440.0839820.6152629.9847858.65442710.198781
91.000.000.000698.436.95874.026.117624.410.8410.6984370.0740260.6244119.9884588.81450910.148701
1010.000.000.0006.978.234.711661.848.2306.316.386.4810.6978230.0661850.6316399.9912178.94074010.115754


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)
123301.5000001.5000000.0000000.0000000.0000000.000000
245411.2500001.0000000.2500001.6666671.333333inf
387610.8750000.7500000.1250001.4000001.5000001.000000
416151050.9375000.6250000.3125002.1428571.6666675.000000
5322917120.9062500.5312500.3750001.9333331.7000002.400000
6643018120.4687500.2812500.1875001.0344831.0588241.000000
71286539260.5078120.3046880.2031252.1666672.1666672.166667
825615676800.6093750.2968750.3125002.4000001.9487183.076923
95123221431790.6289060.2792970.3496092.0641031.8815792.237500
101.0246832574260.6669920.2509770.4160162.1211181.7972032.379888
112.0481.3994709290.6831050.2294920.4536132.0483161.8287942.180751
124.0962.8358371.9980.6921390.2043460.4877932.0264481.7808512.150700
138.1925.7211.5374.1840.6983640.1876220.5107422.0179891.8363202.094094
1416.38411.4892.7798.7100.7012330.1696170.5316162.0082151.8080682.081740
1532.76823.0295.13717.8920.7027890.1567690.5460212.0044391.8485072.054191
1665.53646.0199.64136.3780.7021940.1471100.5550841.9983071.8767762.033199
17131.07292.05218.05873.9940.7023010.1377720.5645292.0003041.8730422.034032
18262.144184.06933.725150.3440.7021680.1286510.5735171.9996201.8675932.031840
19524.288368.19763.477304.7200.7022800.1210730.5812072.0003201.8821942.026819
201.048.576735.824119.997615.8270.7017360.1144380.5872981.9984521.8904012.020960
212.097.1521.470.666227.3201.243.3460.7012680.1083950.5928741.9986651.8943812.018986
224.194.3042.938.986432.2482.506.7380.7007090.1030560.5976531.9984051.9014962.016123
238.388.6085.875.405823.5765.051.8290.7004030.0981780.6022251.9991271.9053322.015300
2416.777.21611.745.4421.572.85010.172.5920.7000830.0937490.6063341.9990861.9097812.013645
2533.554.43223.479.6493.010.34520.469.3040.6997480.0897150.6100331.9990431.9139432.012201
2667.108.86446.936.0185.770.28041.165.7380.6994010.0859840.6134171.9990091.9168172.011096
27134.217.72893.835.76311.079.92882.755.8350.6991310.0825520.6165791.9992271.9201722.010309
28268.435.456187.598.21121.314.310166.283.9010.6988580.0794020.6194561.9992191.9236872.009331
29536.870.912375.074.18341.054.255334.019.9280.6986300.0764700.6221611.9993481.9261362.008733
301.073.741.824749.920.87679.196.604670.724.2720.6984180.0737580.6246611.9993941.9290722.008037
312.147.483.6481.499.408.203152.948.5031.346.459.7000.6982160.0712220.6269941.9994221.9312512.007471
324.294.967.2962.998.021.600295.763.6232.702.257.9770.6980310.0688630.6291681.9994701.9337462.006936
338.589.934.5925.994.559.093572.512.3985.422.046.6950.6978590.0666490.6312091.9995051.9357092.006488
3417.179.869.18411.986.395.9331.109.432.23910.876.963.6940.6977000.0645770.6331231.9995461.9378312.006062


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
123210012
244220112
386420213
41610550316
53217980719
664189907110
7128392019871410
82567638382873110
951214365785677010
101.024257128129111712910
112.048470238232215723810
124.096837421416410741010
138.1921.537766771763775710
1416.3842.7791.3921.3871.37571.38710
1532.7685.1372.5592.5782.59972.52110
1665.5369.6414.8304.8114.86874.75610
17131.07218.0589.0868.9729.05878.98310
18262.14433.72517.00116.72416.963716.74510
19524.28863.47731.90831.56931.862731.59810
201.048.576119.99760.20359.79460.204759.77610
212.097.152227.320114.342112.978113.8437113.46010
224.194.304432.248217.172215.076216.1987216.03310
238.388.608823.576413.639409.937412.1577411.40210
2416.777.2161.572.850790.119782.731786.0747786.75910
2533.554.4323.010.3451.511.1281.499.2171.504.59471.505.73410
2667.108.8645.770.2802.895.1662.875.1142.884.18572.886.07810
27134.217.72811.079.9285.559.2855.520.6435.539.48375.540.42810
28268.435.45621.314.31010.693.94810.620.36210.656.237710.658.05610
29536.870.91241.054.25520.594.95520.459.30020.525.993720.528.24510
301.073.741.82479.196.60439.727.62939.468.97539.597.708739.598.87910
312.147.483.648152.948.50376.704.08976.244.41476.476.422776.472.06410
324.294.967.296295.763.623148.302.860147.460.763147.890.4707147.873.13610
338.589.934.592572.512.398287.030.623285.481.775286.267.0677286.245.31410
3417.179.869.1841.109.432.239556.160.360553.271.879554.730.5787554.701.64410


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
241100100
381100100
4165230113
53212480426
66412480426
7128269176596
825680344626102717
9512179849554236933
101.0244262072191258014279
112.048929458471269185286189
124.0961.9989891.009547433587431
138.1924.1842.0592.1251.1099351.198942
1416.3848.7104.3014.4092.3551.9752.4331.947
1532.76817.8928.8779.0154.8404.1094.8784.065
1665.53636.37818.08518.2939.8128.3769.8888.302
17131.07273.99436.76237.23219.87117.11220.00417.007
18262.144150.34474.73675.60840.34434.92540.28934.786
19524.288304.720152.013152.70781.32271.00081.30471.094
201.048.576615.827307.655308.172163.546144.401163.425144.455
212.097.1521.243.346620.834622.512329.364292.869328.952292.161
224.194.3042.506.7381.252.4031.254.335661.437592.683661.433591.185
238.388.6085.051.8292.523.2142.528.6151.329.8411.197.4291.328.8601.195.699
2416.777.21610.172.5925.083.9955.088.5972.670.5382.416.6502.669.6452.415.759
2533.554.43220.469.30410.231.37610.237.9285.362.0034.873.2085.362.1504.871.943
2667.108.86441.165.73820.578.84120.586.89710.760.7309.822.11010.763.1909.819.708
27134.217.72882.755.83541.376.86941.378.96621.588.88819.793.37821.589.54619.784.023
28268.435.456166.283.90183.129.92383.153.97843.298.04939.846.58843.307.36539.831.899
29536.870.912334.019.928166.989.372167.030.55686.845.62880.167.58986.852.82280.153.889
301.073.741.824670.724.272335.324.178335.400.094174.128.627161.233.431174.149.467161.212.747
312.147.483.6481.346.459.700673.156.360673.303.340349.074.514324.147.501349.105.555324.132.130
324.294.967.2962.702.257.9771.350.973.0261.351.284.951699.703.002651.435.053699.717.201651.402.721
338.589.934.5925.422.046.6952.710.692.9642.711.353.7311.402.266.5911.308.767.7091.402.287.4621.308.724.933
3417.179.869.18410.876.963.6945.437.809.8675.439.153.8272.809.916.2892.628.605.5372.809.910.3352.628.531.533


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 31, 127, 19, 251, 1, 367, 211, 1, 263, 23, 311, 29, 71, 751, 79, 827, 431, 179, 463,
Found in Database : 5, 31, 127, 19, 251, 367, 211, 263, 23, 311, 29, 71, 751, 79, 827, 431, 179, 463, 191, 491, 53, 103, 1051, 107, 1087, 223, 563, 227, 571, 37, 1151,
Found in Database : 5, 19, 23, 29, 31, 37, 53, 71, 79, 103, 107, 109, 127,