Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:46:25
Deutsch
20.Apr 2024

Polynom = x^2-250x-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) = 63 = 3*3*7
f(2) = 499 = 499
f(3) = 93 = 3*31
f(4) = 987 = 3*7*47
f(5) = 307 = 307
f(6) = 1467 = 3*3*163
f(7) = 213 = 3*71
f(8) = 1939 = 7*277
f(9) = 543 = 3*181
f(10) = 2403 = 3*3*3*89
f(11) = 329 = 7*47
f(12) = 2859 = 3*953
f(13) = 771 = 3*257
f(14) = 3307 = 3307
f(15) = 441 = 3*3*7*7
f(16) = 3747 = 3*1249
f(17) = 991 = 991
f(18) = 4179 = 3*7*199
f(19) = 549 = 3*3*61
f(20) = 4603 = 4603
f(21) = 1203 = 3*401
f(22) = 5019 = 3*7*239
f(23) = 653 = 653
f(24) = 5427 = 3*3*3*3*67
f(25) = 1407 = 3*7*67
f(26) = 5827 = 5827
f(27) = 753 = 3*251
f(28) = 6219 = 3*3*691
f(29) = 1603 = 7*229
f(30) = 6603 = 3*31*71
f(31) = 849 = 3*283
f(32) = 6979 = 7*997
f(33) = 1791 = 3*3*199
f(34) = 7347 = 3*31*79
f(35) = 941 = 941
f(36) = 7707 = 3*7*367
f(37) = 1971 = 3*3*3*73
f(38) = 8059 = 8059
f(39) = 1029 = 3*7*7*7
f(40) = 8403 = 3*2801
f(41) = 2143 = 2143
f(42) = 8739 = 3*3*971
f(43) = 1113 = 3*7*53
f(44) = 9067 = 9067
f(45) = 2307 = 3*769
f(46) = 9387 = 3*3*7*149
f(47) = 1193 = 1193
f(48) = 9699 = 3*53*61
f(49) = 2463 = 3*821
f(50) = 10003 = 7*1429
f(51) = 1269 = 3*3*3*47
f(52) = 10299 = 3*3433
f(53) = 2611 = 7*373
f(54) = 10587 = 3*3529
f(55) = 1341 = 3*3*149
f(56) = 10867 = 10867
f(57) = 2751 = 3*7*131
f(58) = 11139 = 3*47*79
f(59) = 1409 = 1409
f(60) = 11403 = 3*3*7*181
f(61) = 2883 = 3*31*31
f(62) = 11659 = 89*131
f(63) = 1473 = 3*491
f(64) = 11907 = 3*3*3*3*3*7*7
f(65) = 3007 = 31*97
f(66) = 12147 = 3*4049
f(67) = 1533 = 3*7*73
f(68) = 12379 = 12379
f(69) = 3123 = 3*3*347
f(70) = 12603 = 3*4201
f(71) = 1589 = 7*227
f(72) = 12819 = 3*4273
f(73) = 3231 = 3*3*359
f(74) = 13027 = 7*1861
f(75) = 1641 = 3*547
f(76) = 13227 = 3*4409
f(77) = 3331 = 3331
f(78) = 13419 = 3*3*3*7*71
f(79) = 1689 = 3*563
f(80) = 13603 = 61*223
f(81) = 3423 = 3*7*163
f(82) = 13779 = 3*3*1531
f(83) = 1733 = 1733
f(84) = 13947 = 3*4649
f(85) = 3507 = 3*7*167
f(86) = 14107 = 14107
f(87) = 1773 = 3*3*197
f(88) = 14259 = 3*7*7*97
f(89) = 3583 = 3583
f(90) = 14403 = 3*4801
f(91) = 1809 = 3*3*3*67
f(92) = 14539 = 7*31*67
f(93) = 3651 = 3*1217
f(94) = 14667 = 3*4889
f(95) = 1841 = 7*263
f(96) = 14787 = 3*3*31*53
f(97) = 3711 = 3*1237
f(98) = 14899 = 47*317
f(99) = 1869 = 3*7*89
f(100) = 15003 = 3*3*1667

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-250x-3

f(0)=3
f(1)=7
f(2)=499
f(3)=31
f(4)=47
f(5)=307
f(6)=163
f(7)=71
f(8)=277
f(9)=181
f(10)=89
f(11)=1
f(12)=953
f(13)=257
f(14)=3307
f(15)=1
f(16)=1249
f(17)=991
f(18)=199
f(19)=61
f(20)=4603
f(21)=401
f(22)=239
f(23)=653
f(24)=67
f(25)=1
f(26)=5827
f(27)=251
f(28)=691
f(29)=229
f(30)=1
f(31)=283
f(32)=997
f(33)=1
f(34)=79
f(35)=941
f(36)=367
f(37)=73
f(38)=8059
f(39)=1
f(40)=2801
f(41)=2143
f(42)=971
f(43)=53
f(44)=9067
f(45)=769
f(46)=149
f(47)=1193
f(48)=1
f(49)=821
f(50)=1429
f(51)=1
f(52)=3433
f(53)=373
f(54)=3529
f(55)=1
f(56)=10867
f(57)=131
f(58)=1
f(59)=1409
f(60)=1
f(61)=1
f(62)=1
f(63)=491
f(64)=1
f(65)=97
f(66)=4049
f(67)=1
f(68)=12379
f(69)=347
f(70)=4201
f(71)=227
f(72)=4273
f(73)=359
f(74)=1861
f(75)=547
f(76)=4409
f(77)=3331
f(78)=1
f(79)=563
f(80)=223
f(81)=1
f(82)=1531
f(83)=1733
f(84)=4649
f(85)=167
f(86)=14107
f(87)=197
f(88)=1
f(89)=3583
f(90)=4801
f(91)=1
f(92)=1
f(93)=1217
f(94)=4889
f(95)=263
f(96)=1
f(97)=1237
f(98)=317
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-250x-3 could be written as f(y)= y^2-15628 with x=y+125

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

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, 7, 499, 31, 47, 307, 163, 71, 277, 181, 89, 1, 953, 257, 3307, 1, 1249, 991, 199, 61, 4603, 401, 239, 653, 67, 1, 5827, 251, 691, 229, 1, 283, 997, 1, 79, 941, 367, 73, 8059, 1, 2801, 2143, 971, 53, 9067, 769, 149, 1193, 1, 821, 1429, 1, 3433, 373, 3529, 1, 10867, 131, 1, 1409, 1, 1, 1, 491, 1, 97, 4049, 1, 12379, 347, 4201, 227, 4273, 359, 1861, 547, 4409, 3331, 1, 563, 223, 1, 1531, 1733, 4649, 167, 14107, 197, 1, 3583, 4801, 1, 1, 1217, 4889, 263, 1, 1237, 317, 1, 1667, 1, 719, 631, 15187, 1, 727, 1913, 5113, 1, 211, 643, 5153, 1, 1723, 647, 2221, 1297, 577, 1949, 743, 1301, 15619, 1, 5209, 3907, 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, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1013, 1, 1, 449, 1, 1, 1, 1, 349, 1, 1231, 331, 4253, 1, 1607, 1277, 1, 1, 5981, 523, 313, 859, 797, 1, 1, 337, 311, 1, 1, 389, 1, 1, 1, 1327, 521, 1, 11597, 1, 1, 1, 479, 1, 13613, 1163, 1, 1831, 4999, 1279, 2243, 1, 5471, 599, 5711, 1, 1, 1, 6199, 2371, 1, 1, 1, 853, 1, 5309, 7207, 1, 22397, 1, 7727, 421, 1, 677, 3539, 1049, 8527, 1, 419, 1117, 1, 1, 1039, 3559, 9631, 1, 29741, 1, 1, 7757, 10487, 443, 1, 2731, 11071, 601, 1, 2879, 1, 1, 3989, 1, 1753, 1553, 1, 1061, 1, 1, 1, 1, 571, 1709, 13831, 1499, 1, 1789, 6203, 3659, 4933, 1, 2161, 3823, 587, 1, 15791, 11969, 16127, 1, 1051, 4159, 1, 6367, 5717, 1, 7499, 1, 661, 1931, 18199, 2297, 55661, 1, 18911, 7159, 2753, 1621, 58901, 2477, 2857, 15137, 1, 1, 62213, 5231, 1, 1, 21487, 5419, 9371, 919, 22247, 16829, 1, 1, 1, 829, 1, 1, 7933, 857, 1, 3049, 1171, 18593, 1, 1, 10883, 1, 25799, 1, 1, 1, 1699, 1, 27031, 659, 1307, 3457, 83597, 7019, 1, 10687, 28711, 1033, 1433, 1223, 29567, 3191, 1, 1259, 13043, 1, 30871, 1, 1, 7883, 95261, 1, 10733, 24317, 32647, 1, 3203, 2777, 4793, 1, 1097, 1, 14771, 4337, 1, 3767, 1, 1, 1109, 1289, 12109, 13711, 751, 1, 111821, 1, 5393, 28493, 38231, 1, 116141, 9739, 39199, 2113, 13229, 1, 1, 1, 4519, 30689, 5881, 1, 1, 1, 1, 15907, 1, 1, 129533, 1, 1, 32957, 1637, 5557, 19163, 11243, 15077, 2437, 45751, 11503, 138821, 1, 883, 1, 6761, 1, 143573, 1, 1, 1, 1, 1, 4787, 6217, 1, 5387, 50551, 6353, 1, 1427, 51647, 19471, 7457, 4373, 158261, 947, 1, 40193, 17957, 967, 2237, 13679, 1, 20731, 1, 13963, 1, 2351, 56711, 1, 57287, 2399, 2591, 1, 1, 22027, 937, 14831, 178853, 7489, 1, 45377, 1, 1091, 184181, 1, 61991, 1, 62591, 1747, 1, 7937, 63799, 1, 3067, 8089, 195053, 2333, 1, 1, 2137, 2377, 200597, 1, 1, 50849, 68111, 2851, 1, 1, 977, 3733, 23333, 17579, 1, 1, 7919, 53693, 10273, 9029, 217661, 6073, 10457, 1, 73847, 1, 223493, 1, 1, 8087, 8423, 1, 32771, 1, 1, 1, 11113, 19531, 4441, 1, 1181, 1, 1, 1, 241421, 1, 11593, 30559, 27277, 20543, 35363, 10357, 27733, 8951, 1, 10529, 253733, 1, 1201, 1, 12281, 7193, 8387, 1, 1783, 65789, 1, 1579, 266333, 22283, 1, 4813, 90199, 22639, 1, 3803, 91631, 68993, 1, 3863, 279221, 1, 1, 35311, 1, 3389, 285773, 11953, 1, 72269, 1, 1, 41771, 1, 98207, 5281, 1867, 1, 1, 1787, 100447, 75617, 1, 12697, 305861, 25583, 1, 1, 103471, 3709, 312701, 1453, 104999, 1613, 105767, 4423, 45659, 26731, 1, 40387, 5147, 1, 326597, 1951, 1, 82529, 110431, 1979, 1, 1, 16001, 1, 112799, 9433, 1, 14249, 1567, 1, 12799, 14449, 347981, 4157, 38933, 43951, 1, 1, 1, 4951, 17033, 1693, 120047, 1, 5107, 30319, 121687, 1, 1, 1, 52859, 1, 41389, 1, 2551, 1, 1663, 1, 1, 47659, 2713, 1523, 1, 16097, 18457, 1451, 1, 1, 56099, 32831, 14639, 1, 132607, 1, 1, 1, 134327, 1, 1, 5651, 408173, 34123, 1, 51511, 1, 4937, 1, 17389, 1, 1, 1, 17609, 1, 11813, 2683, 1, 20441, 1, 431933, 2579, 1, 1493, 48589, 1, 2953, 36779, 7027, 1, 148471, 1, 64019, 2081, 150287, 1, 3217, 1, 7481, 5449, 1, 57559, 7331, 38603, 464621, 19417, 2473, 1, 156727, 1, 5987, 13177, 158591, 8521, 2381, 1, 68771, 20117, 161407, 1, 1, 20353, 15803, 5849, 1, 1, 1, 1, 498461, 1, 23873, 125693, 168071, 2341, 1, 42379, 3617, 9133, 56989, 42863, 515813, 3079, 57637, 2767, 24841, 1, 2311, 4871, 25121, 1, 1823, 2111, 533453, 1, 178807, 19211, 1, 1, 11069, 1, 6733, 1, 26113, 45823, 551381, 1, 1, 138977, 2617, 1, 2131, 46831, 26833, 70627, 20983, 47339, 81371, 1, 63629, 20507, 191911, 1, 1, 1, 6257, 72931, 1, 5431, 1, 1, 1, 148193, 66037, 3547, 2609, 49919, 66733, 10753, 201247, 1, 1, 1, 203351, 152909, 29201, 8539, 3691, 1, 206527, 77647, 69197, 7433, 2039, 1, 3329, 5087, 2969, 26417, 90803, 1, 3491, 11437, 214031, 17881, 6653, 3851, 1, 162557, 3449, 1, 1, 1, 1, 82507, 1, 1, 664997, 1, 2503, 1, 1, 1, 96419, 56383, 226087, 84991, 1, 1, 10223, 1, 2467, 1, 230551, 4127, 695021, 6451, 4751, 87511, 1, 19541, 1, 29453, 1, 25367, 1, 1, 715397, 8537, 1, 90067, 1, 60331, 9941, 10103, 34721, 2053, 244199, 1, 736061, 61483, 246511, 1, 9173, 1, 2269, 31177,

6. Sequence of the polynom (only primes)

3, 7, 499, 31, 47, 307, 163, 71, 277, 181, 89, 953, 257, 3307, 1249, 991, 199, 61, 4603, 401, 239, 653, 67, 5827, 251, 691, 229, 283, 997, 79, 941, 367, 73, 8059, 2801, 2143, 971, 53, 9067, 769, 149, 1193, 821, 1429, 3433, 373, 3529, 10867, 131, 1409, 491, 97, 4049, 12379, 347, 4201, 227, 4273, 359, 1861, 547, 4409, 3331, 563, 223, 1531, 1733, 4649, 167, 14107, 197, 3583, 4801, 1217, 4889, 263, 1237, 317, 1667, 719, 631, 15187, 727, 1913, 5113, 211, 643, 5153, 1723, 647, 2221, 1297, 577, 1949, 743, 1301, 15619, 5209, 3907, 1013, 449, 349, 1231, 331, 4253, 1607, 1277, 5981, 523, 313, 859, 797, 337, 311, 389, 1327, 521, 11597, 479, 13613, 1163, 1831, 4999, 1279, 2243, 5471, 599, 5711, 6199, 2371, 853, 5309, 7207, 22397, 7727, 421, 677, 3539, 1049, 8527, 419, 1117, 1039, 3559, 9631, 29741, 7757, 10487, 443, 2731, 11071, 601, 2879, 3989, 1753, 1553, 1061, 571, 1709, 13831, 1499, 1789, 6203, 3659, 4933, 2161, 3823, 587, 15791, 11969, 16127, 1051, 4159, 6367, 5717, 7499, 661, 1931, 18199, 2297, 55661, 18911, 7159, 2753, 1621, 58901, 2477, 2857, 15137, 62213, 5231, 21487, 5419, 9371, 919, 22247, 16829, 829, 7933, 857, 3049, 1171, 18593, 10883, 25799, 1699, 27031, 659, 1307, 3457, 83597, 7019, 10687, 28711, 1033, 1433, 1223, 29567, 3191, 1259, 13043, 30871, 7883, 95261, 10733, 24317, 32647, 3203, 2777, 4793, 1097, 14771, 4337, 3767, 1109, 1289, 12109, 13711, 751, 111821, 5393, 28493, 38231, 116141, 9739, 39199, 2113, 13229, 4519, 30689, 5881, 15907, 129533, 32957, 1637, 5557, 19163, 11243, 15077, 2437, 45751, 11503, 138821, 883, 6761, 143573, 4787, 6217, 5387, 50551, 6353, 1427, 51647, 19471, 7457, 4373, 158261, 947, 40193, 17957, 967, 2237, 13679, 20731, 13963, 2351, 56711, 57287, 2399, 2591, 22027, 937, 14831, 178853, 7489, 45377, 1091, 184181, 61991, 62591, 1747, 7937, 63799, 3067, 8089, 195053, 2333, 2137, 2377, 200597, 50849, 68111, 2851, 977, 3733, 23333, 17579, 7919, 53693, 10273, 9029, 217661, 6073, 10457, 73847, 223493, 8087, 8423, 32771, 11113, 19531, 4441, 1181, 241421, 11593, 30559, 27277, 20543, 35363, 10357, 27733, 8951, 10529, 253733, 1201, 12281, 7193, 8387, 1783, 65789, 1579, 266333, 22283, 4813, 90199, 22639, 3803, 91631, 68993, 3863, 279221, 35311, 3389, 285773, 11953, 72269, 41771, 98207, 5281, 1867, 1787, 100447, 75617, 12697, 305861, 25583, 103471, 3709, 312701, 1453, 104999, 1613, 105767, 4423, 45659, 26731, 40387, 5147, 326597, 1951, 82529, 110431, 1979, 16001, 112799, 9433, 14249, 1567, 12799, 14449, 347981, 4157, 38933, 43951, 4951, 17033, 1693, 120047, 5107, 30319, 121687, 52859, 41389, 2551, 1663, 47659, 2713, 1523, 16097, 18457, 1451, 56099, 32831, 14639, 132607, 134327, 5651, 408173, 34123, 51511, 4937, 17389, 17609, 11813, 2683, 20441, 431933, 2579, 1493, 48589, 2953, 36779, 7027, 148471, 64019, 2081, 150287, 3217, 7481, 5449, 57559, 7331, 38603, 464621, 19417, 2473, 156727, 5987, 13177, 158591, 8521, 2381, 68771, 20117, 161407, 20353, 15803, 5849, 498461, 23873, 125693, 168071, 2341, 42379, 3617, 9133, 56989, 42863, 515813, 3079, 57637, 2767, 24841, 2311, 4871, 25121, 1823, 2111, 533453, 178807, 19211, 11069, 6733, 26113, 45823, 551381, 138977, 2617, 2131, 46831, 26833, 70627, 20983, 47339, 81371, 63629, 20507, 191911, 6257, 72931, 5431, 148193, 66037, 3547, 2609, 49919, 66733, 10753, 201247, 203351, 152909, 29201, 8539, 3691, 206527, 77647, 69197, 7433, 2039, 3329, 5087, 2969, 26417, 90803, 3491, 11437, 214031, 17881, 6653, 3851, 162557, 3449, 82507, 664997, 2503, 96419, 56383, 226087, 84991, 10223, 2467, 230551, 4127, 695021, 6451, 4751, 87511, 19541, 29453, 25367, 715397, 8537, 90067, 60331, 9941, 10103, 34721, 2053, 244199, 736061, 61483, 246511, 9173, 2269, 31177,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-250x-3 and
the reducible primes which appear as divisor for the first time
p | x^2-250x-3 and p < x^2-250x-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)
11011381.1000000.3000000.8000000.0000000.0000000.000000
21007520550.7500000.2000000.5500006.8181826.6666676.875000
31.0005391214180.5390000.1210000.4180007.1866666.0500007.600000
410.0006.4249235.5010.6424000.0923000.55010011.9183677.62809913.160287
5100.00066.2887.19459.0940.6628800.0719400.59094010.3188057.79414910.742411
61.000.000669.68958.202611.4870.6696890.0582020.61148710.1027188.09035310.347700
710.000.0006.733.449490.4416.243.0080.6733450.0490440.62430110.0545918.42653210.209552
8100.000.00067.586.0994.229.67263.356.4270.6758610.0422970.63356410.0373678.62422210.148381
91.000.000.000677.729.66937.211.872640.517.7970.6777300.0372120.64051810.0276498.79781510.109753
1010.000.000.0006.792.415.938332.159.8056.460.256.1330.6792420.0332160.64602610.0223088.92617810.085990
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
389361.1250000.3750000.7500001.8000001.5000002.000000
416154110.9375000.2500000.6875001.6666671.3333331.833333
532298210.9062500.2500000.6562501.9333332.0000001.909091
6644915340.7656250.2343750.5312501.6896551.8750001.619048
71289425690.7343750.1953120.5390621.9183671.6666672.029412
82569526690.3710940.1015620.2695311.0106381.0400001.000000
9512231611700.4511720.1191410.3320312.4315792.3461542.463768
101.0245531234300.5400390.1201170.4199222.3939392.0163932.529412
112.0481.2022419610.5869140.1176760.4692382.1735991.9593502.234884
124.0962.5384292.1090.6196290.1047360.5148932.1114811.7800832.194589
138.1925.2397664.4730.6395260.0935060.5460212.0642241.7855482.120910
1416.38410.6321.4329.2000.6489260.0874020.5615232.0293951.8694522.056785
1532.76821.4782.62718.8510.6554570.0801700.5752872.0201281.8344972.049022
1665.53643.2844.91238.3720.6604610.0749510.5855102.0152711.8698132.035542
17131.07287.0199.17777.8420.6639020.0700150.5938872.0104201.8682822.028615
18262.144174.75917.138157.6210.6666530.0653760.6012762.0082861.8674952.024884
19524.288350.40132.195318.2060.6683370.0614070.6069302.0050531.8785742.018805
201.048.576702.44560.748641.6970.6699040.0579340.6119702.0046891.8868772.016609
212.097.1521.407.422115.3081.292.1140.6711110.0549830.6161282.0036051.8981372.013589
224.194.3042.819.521218.9272.600.5940.6722260.0521960.6200302.0033231.8986282.012666
238.388.6085.647.071416.7265.230.3450.6731830.0496780.6235062.0028481.9034932.011212
2416.777.21611.309.224794.72510.514.4990.6740820.0473690.6267132.0026711.9070682.010288
2533.554.43222.642.7421.518.73021.124.0120.6748060.0452620.6295452.0021481.9110132.009037
2667.108.86445.331.8272.906.79442.425.0330.6754970.0433150.6321822.0020471.9139642.008379
27134.217.72890.748.2135.579.10385.169.1100.6761270.0415680.6345592.0018651.9193322.007520
28268.435.456181.653.02310.727.306170.925.7170.6767100.0399620.6367482.0017261.9227652.006898
29536.870.912363.603.93120.649.577342.954.3540.6772650.0384630.6388022.0016401.9249552.006453
301.073.741.824727.761.56839.805.953687.955.6150.6777810.0370720.6407092.0015231.9276892.005968
312.147.483.6481.456.575.96776.836.5551.379.739.4120.6782710.0357800.6424912.0014471.9302782.005565
324.294.967.2962.915.087.074148.500.7222.766.586.3520.6787220.0345760.6441462.0013281.9326832.005152
338.589.934.5925.833.854.739287.352.9495.546.501.7900.6791500.0334520.6456982.0012631.9350272.004818
3417.179.869.18411.674.663.301556.608.23111.118.055.0700.6795550.0323990.6471562.0011921.9370192.004517




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
122100200
242100200
383200300
4164300400
5328610611
664151042922
71282517731543
82562617831553
95126127337182610
101.024123457715266220
112.04824178162294413335
124.096429124304596524560
138.192766202563103103460100
1416.3841.4323831.048177201871183
1532.7682.6277091.9173353601.582350
1665.5364.9121.2893.6226496582.973632
17131.0729.1772.3816.7951.1951.1915.6001.191
18262.14417.1384.50212.6352.2282.24110.4072.262
19524.28832.1958.47523.7194.0994.20719.6204.269
201.048.57660.74815.93844.8097.7347.92837.0758.011
212.097.152115.30830.26985.03814.63915.16070.39915.110
224.194.304218.92757.292161.63427.83028.696133.80428.597
238.388.608416.726108.532308.19353.05254.351255.14154.182
2416.777.216794.725206.712588.012100.825103.518487.187103.195
2533.554.4321.518.730394.6581.124.071192.632197.314931.439197.345
2667.108.8642.906.794754.2352.152.558368.169377.3421.784.389376.894
27134.217.7285.579.1031.443.9444.135.158707.535722.0033.427.623721.942
28268.435.45610.727.3062.773.4887.953.8171.360.0121.386.5576.593.8051.386.932
29536.870.91220.649.5775.334.03315.315.5432.616.1292.665.99512.699.4142.668.039
301.073.741.82439.805.95310.270.81529.535.1375.042.0855.134.89224.493.0525.135.924
312.147.483.64876.836.55519.801.42957.035.1259.728.5999.898.24947.306.5269.903.181
324.294.967.296148.500.72238.225.113110.275.60818.791.11819.110.15991.484.49019.114.955
338.589.934.592287.352.94973.901.819213.451.12936.350.39436.949.181177.100.73536.952.639


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 7, 499, 31, 47, 307, 163, 71, 277, 181, 89, 1, 953, 257, 3307, 1, 1249, 991, 199, 61,
Found in Database : 3, 7, 499, 31, 47, 307, 163, 71, 277, 181, 89, 953, 257, 3307, 1249, 991, 199, 61, 4603, 401, 239, 653, 67, 5827, 251, 691, 229, 283, 997, 79, 941, 367, 73, 8059,
Found in Database : 3, 7, 31, 47, 53, 61, 67, 71, 73, 79, 89, 97, 131, 149,

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
121100001
243210003
386420114
41611654124
532211385556
6643420149898
712869373222161516
825669373222161516
9512170809042403454
101.0244302012291099881142
112.048961450511231210213307
124.0962.1091.0011.108495498469647
138.1924.4732.1782.2951.0641.0271.0191.363
1416.3849.2004.4214.7792.1972.1562.0712.776
1532.76818.8519.1089.7434.5324.4594.3005.560
1665.53638.37218.61619.7569.2629.0428.81511.253
17131.07277.84237.83840.00418.64718.49418.04422.657
18262.144157.62176.81680.80537.76837.63336.69245.528
19524.288318.206155.323162.88376.71375.94874.64790.898
201.048.576641.697313.508328.189154.904153.676151.491181.626
212.097.1521.292.114632.359659.755311.970310.431306.225363.488
224.194.3042.600.5941.273.5771.327.017629.234627.207617.772726.381
238.388.6085.230.3452.565.5132.664.8321.268.2971.263.7341.246.0471.452.267
2416.777.21610.514.4995.160.9515.353.5482.551.8262.547.0192.510.2322.905.422
2533.554.43221.124.01210.379.75810.744.2545.136.1795.123.2955.053.8295.810.709
2667.108.86442.425.03320.862.77321.562.26010.327.48510.303.48110.173.04911.621.018
27134.217.72885.169.11041.916.58943.252.52120.754.79920.714.30220.458.40023.241.609
28268.435.456170.925.71784.178.81386.746.90441.696.14841.614.51741.137.40146.477.651
29536.870.912342.954.354169.006.495173.947.85983.732.02883.588.78582.678.60892.954.933
301.073.741.824687.955.615339.219.813348.735.802168.113.174167.853.657166.097.731185.891.053
312.147.483.6481.379.739.412680.703.360699.036.052337.459.663336.942.893333.567.727371.769.129
324.294.967.2962.766.586.3521.365.618.1441.400.968.208677.164.343676.214.960669.688.019743.519.030
338.589.934.5925.546.501.7902.739.059.8482.807.441.9421.358.558.9041.356.770.2221.344.127.3381.487.045.326