Inhaltsverzeichnis

Development of
Algorithmic Constructions

11:28:48
Deutsch
20.Apr 2024

Polynom = x^2-40x+29

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) = 29 = 29
f(1) = 5 = 5
f(2) = 47 = 47
f(3) = 41 = 41
f(4) = 115 = 5*23
f(5) = 73 = 73
f(6) = 175 = 5*5*7
f(7) = 101 = 101
f(8) = 227 = 227
f(9) = 125 = 5*5*5
f(10) = 271 = 271
f(11) = 145 = 5*29
f(12) = 307 = 307
f(13) = 161 = 7*23
f(14) = 335 = 5*67
f(15) = 173 = 173
f(16) = 355 = 5*71
f(17) = 181 = 181
f(18) = 367 = 367
f(19) = 185 = 5*37
f(20) = 371 = 7*53
f(21) = 185 = 5*37
f(22) = 367 = 367
f(23) = 181 = 181
f(24) = 355 = 5*71
f(25) = 173 = 173
f(26) = 335 = 5*67
f(27) = 161 = 7*23
f(28) = 307 = 307
f(29) = 145 = 5*29
f(30) = 271 = 271
f(31) = 125 = 5*5*5
f(32) = 227 = 227
f(33) = 101 = 101
f(34) = 175 = 5*5*7
f(35) = 73 = 73
f(36) = 115 = 5*23
f(37) = 41 = 41
f(38) = 47 = 47
f(39) = 5 = 5
f(40) = 29 = 29
f(41) = 35 = 5*7
f(42) = 113 = 113
f(43) = 79 = 79
f(44) = 205 = 5*41
f(45) = 127 = 127
f(46) = 305 = 5*61
f(47) = 179 = 179
f(48) = 413 = 7*59
f(49) = 235 = 5*47
f(50) = 529 = 23*23
f(51) = 295 = 5*59
f(52) = 653 = 653
f(53) = 359 = 359
f(54) = 785 = 5*157
f(55) = 427 = 7*61
f(56) = 925 = 5*5*37
f(57) = 499 = 499
f(58) = 1073 = 29*37
f(59) = 575 = 5*5*23
f(60) = 1229 = 1229
f(61) = 655 = 5*131
f(62) = 1393 = 7*199
f(63) = 739 = 739
f(64) = 1565 = 5*313
f(65) = 827 = 827
f(66) = 1745 = 5*349
f(67) = 919 = 919
f(68) = 1933 = 1933
f(69) = 1015 = 5*7*29
f(70) = 2129 = 2129
f(71) = 1115 = 5*223
f(72) = 2333 = 2333
f(73) = 1219 = 23*53
f(74) = 2545 = 5*509
f(75) = 1327 = 1327
f(76) = 2765 = 5*7*79
f(77) = 1439 = 1439
f(78) = 2993 = 41*73
f(79) = 1555 = 5*311
f(80) = 3229 = 3229
f(81) = 1675 = 5*5*67
f(82) = 3473 = 23*151
f(83) = 1799 = 7*257
f(84) = 3725 = 5*5*149
f(85) = 1927 = 41*47
f(86) = 3985 = 5*797
f(87) = 2059 = 29*71
f(88) = 4253 = 4253
f(89) = 2195 = 5*439
f(90) = 4529 = 7*647
f(91) = 2335 = 5*467
f(92) = 4813 = 4813
f(93) = 2479 = 37*67
f(94) = 5105 = 5*1021
f(95) = 2627 = 37*71
f(96) = 5405 = 5*23*47
f(97) = 2779 = 7*397
f(98) = 5713 = 29*197
f(99) = 2935 = 5*587
f(100) = 6029 = 6029

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-40x+29

f(0)=29
f(1)=5
f(2)=47
f(3)=41
f(4)=23
f(5)=73
f(6)=7
f(7)=101
f(8)=227
f(9)=1
f(10)=271
f(11)=1
f(12)=307
f(13)=1
f(14)=67
f(15)=173
f(16)=71
f(17)=181
f(18)=367
f(19)=37
f(20)=53
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=113
f(43)=79
f(44)=1
f(45)=127
f(46)=61
f(47)=179
f(48)=59
f(49)=1
f(50)=1
f(51)=1
f(52)=653
f(53)=359
f(54)=157
f(55)=1
f(56)=1
f(57)=499
f(58)=1
f(59)=1
f(60)=1229
f(61)=131
f(62)=199
f(63)=739
f(64)=313
f(65)=827
f(66)=349
f(67)=919
f(68)=1933
f(69)=1
f(70)=2129
f(71)=223
f(72)=2333
f(73)=1
f(74)=509
f(75)=1327
f(76)=1
f(77)=1439
f(78)=1
f(79)=311
f(80)=3229
f(81)=1
f(82)=151
f(83)=257
f(84)=149
f(85)=1
f(86)=797
f(87)=1
f(88)=4253
f(89)=439
f(90)=647
f(91)=467
f(92)=4813
f(93)=1
f(94)=1021
f(95)=1
f(96)=1
f(97)=397
f(98)=197
f(99)=587

b) Substitution of the polynom
The polynom f(x)=x^2-40x+29 could be written as f(y)= y^2-371 with x=y+20

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-20
f'(x)>2x-41 with x > 19

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

29, 5, 47, 41, 23, 73, 7, 101, 227, 1, 271, 1, 307, 1, 67, 173, 71, 181, 367, 37, 53, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 113, 79, 1, 127, 61, 179, 59, 1, 1, 1, 653, 359, 157, 1, 1, 499, 1, 1, 1229, 131, 199, 739, 313, 827, 349, 919, 1933, 1, 2129, 223, 2333, 1, 509, 1327, 1, 1439, 1, 311, 3229, 1, 151, 257, 149, 1, 797, 1, 4253, 439, 647, 467, 4813, 1, 1021, 1, 1, 397, 197, 587, 6029, 619, 6353, 3259, 191, 1, 281, 1, 1, 1, 1, 1, 8093, 4139, 1693, 4327, 1, 4519, 1319, 1, 9629, 983, 1, 5119, 2089, 761, 1, 1, 491, 1151, 317, 239, 1, 6199, 1, 6427, 2617, 6659, 13553, 1, 14029, 1427, 631, 1, 3001, 263, 443, 7879, 1, 1627, 16529, 1, 17053, 1237, 3517, 1, 1, 9199, 1, 379, 1, 1951, 19793, 10039, 4073, 449, 1, 1, 353, 1, 22129, 2243, 1, 11519, 1, 11827, 4793, 1, 24593, 1, 25229, 1, 25873, 13099, 1061, 463, 5437, 13759, 1, 2819, 607, 2887, 1, 14779, 5981, 2161, 6121, 673, 1, 3167, 32029, 1, 4679, 571, 1, 16927, 1, 17299, 853, 1, 35729, 1, 36493, 18439, 1, 1, 1087, 19219, 38833, 3923, 1723, 4003, 40433, 2917, 1, 1, 1, 1, 727, 1, 6247, 883, 1, 1, 1, 1, 9257, 1, 773, 4759, 48029, 1, 1193, 1, 1423, 25127, 10141, 25579, 51613, 1, 52529, 757, 53453, 26959, 1, 27427, 2213, 1213, 8039, 1, 1, 1, 58193, 29339, 11833, 4261, 523, 30319, 541, 6163, 62129, 6263, 1, 677, 12829, 32327, 13033, 32839, 1789, 953, 1, 1, 1019, 839, 1, 659, 2011, 601, 71453, 1, 1, 7307, 73613, 5297, 1, 1, 15161, 1, 76913, 1, 1, 1, 79153, 1733, 16057, 40427, 3257, 5857, 1163, 1663, 829, 8431, 3691, 1, 2459, 1171, 17449, 1187, 1, 1, 1907, 1289, 90833, 1, 1, 46327, 811, 643, 13499, 9511, 3301, 1, 96973, 48799, 3929, 1, 1, 1, 1901, 10139, 1, 10267, 14759, 881, 20921, 52627, 1, 53279, 3697, 1, 108529, 1, 2969, 55259, 1, 55927, 1, 56599, 4951, 1, 1889, 1, 116593, 8377, 23593, 1447, 23869, 1277, 769, 12143, 1, 1, 1, 62119, 24989, 62827, 1, 1, 2719, 1, 129229, 1, 877, 65699, 1, 1, 26717, 1, 4657, 1, 1, 1, 1747, 69379, 27901, 3049, 28201, 70879, 20359, 14327, 1973, 14479, 2467, 1, 1279, 1, 1, 74699, 1, 3019, 151729, 1, 1, 1879, 1, 1, 1, 2711, 6871, 2269, 159629, 1, 161233, 81019, 32569, 1741, 1, 3593, 1, 16691, 167729, 3371, 169373, 12157, 6841, 2963, 34537, 859, 2207, 17519, 25147, 1, 2503, 1223, 1, 90127, 1249, 1, 182813, 18367, 1, 18539, 186253, 93559, 1, 94427, 7589, 1, 191473, 3847, 971, 1, 1, 2647, 1, 2671, 39709, 99719, 28619, 20123, 202129, 1, 4339, 1, 41149, 1, 41513, 104239, 209393, 21031, 211229, 4243, 1, 1597, 8597, 107927, 1, 4733, 5333, 3137, 220529, 22147, 1129, 3851, 1, 1, 1, 2143, 228113, 22907, 6217, 23099, 6269, 1, 1613, 117427, 9433, 118399, 5059, 1, 1489, 24071, 2393, 1709, 48733, 122327, 1, 1, 247633, 1, 4231, 1, 8677, 2141, 7247, 1, 51133, 128339, 1, 1, 1451, 1, 261773, 1, 1, 1, 1297, 3607, 1, 1, 270029, 27107, 11831, 2239, 1, 19661, 1, 138679, 278413, 27947, 1, 1, 1, 1117, 56957, 3041, 1, 143999, 1, 1, 1609, 29231, 1, 1303, 59113, 6449, 1, 149419, 299933, 30103, 7369, 30323, 1123, 21817, 1657, 1, 1669, 3779, 1, 1, 1543, 6287, 5347, 1, 1, 1217, 63997, 22937, 14011, 1, 324529, 1, 4603, 163979, 9403, 2707, 1, 1, 333713, 33487, 336029, 4817, 1, 3203, 1, 170927, 13721, 1523, 49339, 1, 347729, 1, 350093, 1, 1, 25261, 70969, 2657, 8713, 1, 12401, 36083, 51719, 181619, 72889, 7949, 1, 184039, 369293, 1, 2927, 7459, 374173, 187699, 1, 188927, 10831, 190159, 1, 1, 384029, 1, 1259, 27697, 77801, 195127, 78301, 196379, 1, 1, 1531, 39779, 9733, 200159, 80317, 2837, 1, 1, 406673, 1, 8707, 41051, 5641, 2909, 11839, 3407, 83389, 7211, 1493, 42083, 422129, 1, 1, 213019, 85469, 2713, 1, 1, 2131, 43391, 1, 8731, 2789, 219599, 1, 1, 1, 6007, 445853, 1, 1433, 44987, 1, 5519, 3947, 227627, 1, 3881, 459313, 6581, 1, 1, 464753, 10133, 93497, 1, 2687, 1, 5987, 1, 475729, 47711, 478493, 1, 1, 241327, 1, 1, 486833, 48823, 1, 49103, 13309, 246919, 2677, 8563, 1, 35677, 1949, 50231, 2557, 10103, 506573, 253999, 1, 3499, 3533, 1, 515153, 51659, 1, 1, 520913, 5557, 104761, 262627, 105341, 1459, 75659, 2309, 532529, 1, 1, 268459, 1, 38561, 1, 2137, 544273, 1, 547229, 1483, 1, 1, 1, 1, 111229, 278819, 559133, 8009, 562129, 1, 24571, 1, 1, 6947, 16319, 1, 9413, 57571, 1, 1, 14153, 1, 23333, 292427, 5099, 1, 589453, 1, 1801, 59407, 595613, 298579, 4129, 13049, 3253, 1, 16349, 60647, 608029, 1, 1, 306359, 17551, 4337, 24697, 2437, 8501, 1, 623729, 8933, 21617, 314239, 126013, 1, 3089, 317419, 1, 63803, 1, 64123, 642833, 1, 129209, 46261, 129853, 325439, 652493, 1, 9787, 13147, 4093, 1, 26489, 8971, 133097, 1, 9161, 1, 672029, 1, 675313, 1, 135721, 340127, 19483, 2609, 1, 68687, 4621, 69019, 23857, 49537, 1, 15149, 27941, 8539, 3527, 14071, 100747, 1, 708593, 355139, 1, 1, 1811, 51217, 1, 72043, 1, 72383, 19609, 363619, 1, 365327, 2063, 6221, 31991, 73751, 4273, 1, 742673, 1, 1, 5581, 1, 16333, 1, 75479, 4373, 1, 1, 380879, 1, 1, 1, 5737, 18793, 2663, 12689, 3373, 1, 389659, 156217, 9547, 6277, 10627, 788173, 1, 1, 1, 10067, 398539, 159773, 1, 1, 1, 806033, 80783, 809629, 1, 4493, 58217, 7103, 409327, 164093, 2087, 1, 82591, 118247, 1, 831373, 1, 1, 418427, 2843, 60037, 842353, 1, 3727, 84787, 1, 425779, 1, 5413, 1, 1, 860813, 1, 1, 12377, 12959, 435059, 2389, 1, 1, 15131, 125639, 17627, 883229, 1, 886993, 1993, 2659, 63761, 178909, 1, 30977, 90023, 1, 90403, 129419, 2281, 3433, 455827, 182713, 457739, 1, 1, 22469, 1, 925073, 12527, 1, 1, 1, 11399, 6203, 1997, 940529, 1, 16007, 2939, 189661, 8053, 1, 16451, 956113, 1,

6. Sequence of the polynom (only primes)

29, 5, 47, 41, 23, 73, 7, 101, 227, 271, 307, 67, 173, 71, 181, 367, 37, 53, 113, 79, 127, 61, 179, 59, 653, 359, 157, 499, 1229, 131, 199, 739, 313, 827, 349, 919, 1933, 2129, 223, 2333, 509, 1327, 1439, 311, 3229, 151, 257, 149, 797, 4253, 439, 647, 467, 4813, 1021, 397, 197, 587, 6029, 619, 6353, 3259, 191, 281, 8093, 4139, 1693, 4327, 4519, 1319, 9629, 983, 5119, 2089, 761, 491, 1151, 317, 239, 6199, 6427, 2617, 6659, 13553, 14029, 1427, 631, 3001, 263, 443, 7879, 1627, 16529, 17053, 1237, 3517, 9199, 379, 1951, 19793, 10039, 4073, 449, 353, 22129, 2243, 11519, 11827, 4793, 24593, 25229, 25873, 13099, 1061, 463, 5437, 13759, 2819, 607, 2887, 14779, 5981, 2161, 6121, 673, 3167, 32029, 4679, 571, 16927, 17299, 853, 35729, 36493, 18439, 1087, 19219, 38833, 3923, 1723, 4003, 40433, 2917, 727, 6247, 883, 9257, 773, 4759, 48029, 1193, 1423, 25127, 10141, 25579, 51613, 52529, 757, 53453, 26959, 27427, 2213, 1213, 8039, 58193, 29339, 11833, 4261, 523, 30319, 541, 6163, 62129, 6263, 677, 12829, 32327, 13033, 32839, 1789, 953, 1019, 839, 659, 2011, 601, 71453, 7307, 73613, 5297, 15161, 76913, 79153, 1733, 16057, 40427, 3257, 5857, 1163, 1663, 829, 8431, 3691, 2459, 1171, 17449, 1187, 1907, 1289, 90833, 46327, 811, 643, 13499, 9511, 3301, 96973, 48799, 3929, 1901, 10139, 10267, 14759, 881, 20921, 52627, 53279, 3697, 108529, 2969, 55259, 55927, 56599, 4951, 1889, 116593, 8377, 23593, 1447, 23869, 1277, 769, 12143, 62119, 24989, 62827, 2719, 129229, 877, 65699, 26717, 4657, 1747, 69379, 27901, 3049, 28201, 70879, 20359, 14327, 1973, 14479, 2467, 1279, 74699, 3019, 151729, 1879, 2711, 6871, 2269, 159629, 161233, 81019, 32569, 1741, 3593, 16691, 167729, 3371, 169373, 12157, 6841, 2963, 34537, 859, 2207, 17519, 25147, 2503, 1223, 90127, 1249, 182813, 18367, 18539, 186253, 93559, 94427, 7589, 191473, 3847, 971, 2647, 2671, 39709, 99719, 28619, 20123, 202129, 4339, 41149, 41513, 104239, 209393, 21031, 211229, 4243, 1597, 8597, 107927, 4733, 5333, 3137, 220529, 22147, 1129, 3851, 2143, 228113, 22907, 6217, 23099, 6269, 1613, 117427, 9433, 118399, 5059, 1489, 24071, 2393, 1709, 48733, 122327, 247633, 4231, 8677, 2141, 7247, 51133, 128339, 1451, 261773, 1297, 3607, 270029, 27107, 11831, 2239, 19661, 138679, 278413, 27947, 1117, 56957, 3041, 143999, 1609, 29231, 1303, 59113, 6449, 149419, 299933, 30103, 7369, 30323, 1123, 21817, 1657, 1669, 3779, 1543, 6287, 5347, 1217, 63997, 22937, 14011, 324529, 4603, 163979, 9403, 2707, 333713, 33487, 336029, 4817, 3203, 170927, 13721, 1523, 49339, 347729, 350093, 25261, 70969, 2657, 8713, 12401, 36083, 51719, 181619, 72889, 7949, 184039, 369293, 2927, 7459, 374173, 187699, 188927, 10831, 190159, 384029, 1259, 27697, 77801, 195127, 78301, 196379, 1531, 39779, 9733, 200159, 80317, 2837, 406673, 8707, 41051, 5641, 2909, 11839, 3407, 83389, 7211, 1493, 42083, 422129, 213019, 85469, 2713, 2131, 43391, 8731, 2789, 219599, 6007, 445853, 1433, 44987, 5519, 3947, 227627, 3881, 459313, 6581, 464753, 10133, 93497, 2687, 5987, 475729, 47711, 478493, 241327, 486833, 48823, 49103, 13309, 246919, 2677, 8563, 35677, 1949, 50231, 2557, 10103, 506573, 253999, 3499, 3533, 515153, 51659, 520913, 5557, 104761, 262627, 105341, 1459, 75659, 2309, 532529, 268459, 38561, 2137, 544273, 547229, 1483, 111229, 278819, 559133, 8009, 562129, 24571, 6947, 16319, 9413, 57571, 14153, 23333, 292427, 5099, 589453, 1801, 59407, 595613, 298579, 4129, 13049, 3253, 16349, 60647, 608029, 306359, 17551, 4337, 24697, 2437, 8501, 623729, 8933, 21617, 314239, 126013, 3089, 317419, 63803, 64123, 642833, 129209, 46261, 129853, 325439, 652493, 9787, 13147, 4093, 26489, 8971, 133097, 9161, 672029, 675313, 135721, 340127, 19483, 2609, 68687, 4621, 69019, 23857, 49537, 15149, 27941, 8539, 3527, 14071, 100747, 708593, 355139, 1811, 51217, 72043, 72383, 19609, 363619, 365327, 2063, 6221, 31991, 73751, 4273, 742673, 5581, 16333, 75479, 4373, 380879, 5737, 18793, 2663, 12689, 3373, 389659, 156217, 9547, 6277, 10627, 788173, 10067, 398539, 159773, 806033, 80783, 809629, 4493, 58217, 7103, 409327, 164093, 2087, 82591, 118247, 831373, 418427, 2843, 60037, 842353, 3727, 84787, 425779, 5413, 860813, 12377, 12959, 435059, 2389, 15131, 125639, 17627, 883229, 886993, 1993, 2659, 63761, 178909, 30977, 90023, 90403, 129419, 2281, 3433, 455827, 182713, 457739, 22469, 925073, 12527, 11399, 6203, 1997, 940529, 16007, 2939, 189661, 8053, 16451, 956113,

7. Distribution of the primes

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

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)
11010551.0000000.5000001.0000000.0000000.0000000.000000
21005317360.5300000.1700000.5300005.3000003.4000007.200000
31.0006551125430.6550000.1120000.65500012.3584916.58823515.083333
410.0006.8688176.0510.6868000.0817000.68680010.4854977.29464311.143646
5100.00069.2766.12363.1530.6927600.0612300.69276010.0867807.49449210.436788
61.000.000692.92349.919643.0040.6929230.0499190.69292310.0023538.15270310.181685
710.000.0006.928.737421.2706.507.4670.6928740.0421270.6928749.9992898.43907210.120415
8100.000.00069.276.8983.656.21165.620.6870.6927690.0365620.6927699.9984888.67902110.083906
91.000.000.000692.716.05432.272.314660.443.7400.6927160.0322720.6927169.9992368.82671010.064566
1010.000.000.0006.926.875.811288.810.1126.638.065.6990.6926880.0288810.6926889.9995898.94916110.050919


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.5000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666671.0000003.000000
389451.1250000.5000000.6250001.8000002.0000001.666667
41614680.8750000.3750000.5000001.5555561.5000001.600000
532177100.5312500.2187500.3125001.2142861.1666671.250000
6642910190.4531250.1562500.2968751.7058821.4285711.900000
71286920490.5390620.1562500.3828122.3793102.0000002.578947
8256153381150.5976560.1484380.4492192.2173911.9000002.346939
9512330622680.6445310.1210940.5234382.1568631.6315792.330435
101.0246721125600.6562500.1093750.5468752.0363641.8064522.089552
112.0481.3852071.1780.6762700.1010740.5751952.0610121.8482142.103571
124.0962.7883792.4090.6806640.0925290.5881352.0129961.8309182.044991
138.1925.6116914.9200.6849370.0843510.6005862.0125541.8232192.042341
1416.38411.2921.23110.0610.6892090.0751340.6140752.0124751.7814762.044919
1532.76822.6642.24220.4220.6916500.0684200.6232302.0070851.8212832.029818
1665.53645.4054.17041.2350.6928250.0636290.6291962.0033971.8599462.019146
17131.07290.8507.82883.0220.6931300.0597230.6334082.0008811.8772182.013387
18262.144181.66814.755166.9130.6930080.0562860.6367231.9996481.8849002.010467
19524.288363.43827.685335.7530.6932030.0528050.6403982.0005611.8763132.011545
201.048.576726.66152.147674.5140.6929980.0497310.6432671.9994081.8835832.008959
212.097.1521.452.96198.8941.354.0670.6928260.0471560.6456691.9995031.8964472.007471
224.194.3042.905.924188.1402.717.7840.6928260.0448560.6479702.0000011.9024412.007127
238.388.6085.812.475357.5375.454.9380.6929010.0426220.6502792.0002161.9003772.007127
2416.777.21611.623.884683.50210.940.3820.6928370.0407400.6520981.9998171.9116962.005592
2533.554.43223.247.5191.309.00321.938.5160.6928300.0390110.6538191.9999791.9151412.005279
2667.108.86446.492.9582.511.00043.981.9580.6927990.0374170.6553821.9999101.9182542.004783
27134.217.72892.981.7094.825.42488.156.2850.6927680.0359520.6568161.9999101.9217142.004374
28268.435.456185.961.4459.283.447176.677.9980.6927600.0345840.6581771.9999791.9238612.004145
29536.870.912371.908.84817.894.234354.014.6140.6927340.0333310.6594041.9999251.9275422.003728
301.073.741.824743.801.41334.527.221709.274.1920.6927190.0321560.6605631.9999561.9295172.003517
312.147.483.6481.487.571.31466.701.8151.420.869.4990.6927040.0310600.6616441.9999581.9318622.003273
324.294.967.2962.975.109.716129.023.8492.846.085.8670.6926970.0300410.6626561.9999781.9343382.003059
338.589.934.5925.950.161.747249.819.2065.700.342.5410.6926900.0290830.6636071.9999811.9362252.002871
3417.179.869.18411.900.206.982484.229.25011.415.977.7320.6926830.0281860.6644971.9999801.9383192.002683


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
122020011
242020011
384130112
4166330213
5327430214
66410461234
71282071332114
8256381523132194
9512622537282284
101.0241124270542524
112.048207741339921024
124.09637913024918821854
138.19269122846334023454
1416.3841.23140682560126244
1532.7682.2427351.5071.11321.1234
1665.5364.1701.3842.7862.07322.0914
17131.0727.8282.5645.2643.87623.9464
18262.14414.7554.8409.9157.32227.4274
19524.28827.6859.13918.54613.811213.8684
201.048.57652.14717.29234.85526.006226.1354
212.097.15298.89432.79366.10149.463249.4254
224.194.304188.14062.592125.54893.980294.1544
238.388.608357.537119.216238.321178.5682178.9634
2416.777.216683.502227.736455.766341.7582341.7384
2533.554.4321.309.003436.304872.699655.1562653.8414
2667.108.8642.511.000836.9641.674.0361.256.67321.254.3214
27134.217.7284.825.4241.608.8693.216.5552.413.76922.411.6494
28268.435.4569.283.4473.094.2246.189.2234.642.10324.641.3384
29536.870.91217.894.2345.964.81711.929.4178.946.80128.947.4274
301.073.741.82434.527.22111.509.10123.018.12017.264.400217.262.8154
312.147.483.64866.701.81522.228.12144.473.69433.352.698233.349.1114
324.294.967.296129.023.84943.003.60386.020.24664.510.625264.513.2184
338.589.934.592249.819.20683.279.629166.539.577124.903.8022124.915.3984
3417.179.869.184484.229.250161.416.398322.812.852242.107.4852242.121.7594


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
121010010
243031011
385142021
4168262132
53210372152
664199103565
71284923267121317
8256115674818322540
951226815311553765485
101.024560292268115161120164
112.0481.178602576247342253336
124.0962.4091.2971.112488687526708
138.1924.9202.6282.2921.0291.3751.0801.436
1416.38410.0615.3094.7522.1462.8182.2282.869
1532.76820.42210.6789.7444.4485.7344.5625.678
1665.53641.23521.34919.8869.19111.3879.23411.423
17131.07283.02242.81040.21218.62022.78918.85422.759
18262.144166.91385.91680.99737.69545.44338.06445.711
19524.288335.753172.711163.04276.56491.23276.78291.175
201.048.576674.514346.217328.297155.004182.436155.117181.957
212.097.1521.354.067693.790660.277312.834364.518313.332363.383
224.194.3042.717.7841.391.5161.326.268631.065729.280631.228726.211
238.388.6085.454.9382.786.1942.668.7441.272.0551.456.8651.271.5371.454.481
2416.777.21610.940.3825.584.7555.355.6272.557.2782.913.4292.559.9252.909.750
2533.554.43221.938.51611.188.65710.749.8595.146.3845.824.1395.148.3165.819.677
2667.108.86443.981.95822.412.52321.569.43510.349.06111.643.30910.349.89211.639.696
27134.217.72888.156.28544.887.40243.268.88320.797.27023.278.48820.801.78123.278.746
28268.435.456176.677.99889.899.39386.778.60541.781.71046.548.06541.795.18446.553.039
29536.870.912354.014.614180.019.993173.994.62183.910.73893.097.46183.917.37693.089.039
301.073.741.824709.274.192360.437.151348.837.041168.471.782186.164.744168.480.382186.157.284
312.147.483.6481.420.869.499721.626.013699.243.486338.146.766372.307.873338.140.281372.274.579
324.294.967.2962.846.085.8671.444.697.3111.401.388.556678.531.772744.500.843678.540.743744.512.509
338.589.934.5925.700.342.5412.892.121.8522.808.220.6891.361.300.5561.488.882.5091.361.253.4101.488.906.066
3417.179.869.18411.415.977.7325.789.284.1465.626.693.5862.730.427.1122.977.557.5492.730.392.3862.977.600.685


8. Check for existing Integer Sequences by OEIS

Found in Database : 29, 5, 47, 41, 23, 73, 7, 101, 227, 1, 271, 1, 307, 1, 67, 173, 71, 181, 367, 37,
Found in Database : 29, 5, 47, 41, 23, 73, 7, 101, 227, 271, 307, 67, 173, 71, 181, 367, 37, 53,
Found in Database : 5, 7, 23, 29, 37, 41, 47, 53, 59, 61, 67, 71, 73, 79, 101, 113, 127, 131, 149,