Inhaltsverzeichnis

Development of
Algorithmic Constructions

13:27:21
Deutsch
18.Apr 2024

Polynom = x^2-70x+47

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) = 47 = 47
f(1) = 11 = 11
f(2) = 89 = 89
f(3) = 77 = 7*11
f(4) = 217 = 7*31
f(5) = 139 = 139
f(6) = 337 = 337
f(7) = 197 = 197
f(8) = 449 = 449
f(9) = 251 = 251
f(10) = 553 = 7*79
f(11) = 301 = 7*43
f(12) = 649 = 11*59
f(13) = 347 = 347
f(14) = 737 = 11*67
f(15) = 389 = 389
f(16) = 817 = 19*43
f(17) = 427 = 7*61
f(18) = 889 = 7*127
f(19) = 461 = 461
f(20) = 953 = 953
f(21) = 491 = 491
f(22) = 1009 = 1009
f(23) = 517 = 11*47
f(24) = 1057 = 7*151
f(25) = 539 = 7*7*11
f(26) = 1097 = 1097
f(27) = 557 = 557
f(28) = 1129 = 1129
f(29) = 571 = 571
f(30) = 1153 = 1153
f(31) = 581 = 7*83
f(32) = 1169 = 7*167
f(33) = 587 = 587
f(34) = 1177 = 11*107
f(35) = 589 = 19*31
f(36) = 1177 = 11*107
f(37) = 587 = 587
f(38) = 1169 = 7*167
f(39) = 581 = 7*83
f(40) = 1153 = 1153
f(41) = 571 = 571
f(42) = 1129 = 1129
f(43) = 557 = 557
f(44) = 1097 = 1097
f(45) = 539 = 7*7*11
f(46) = 1057 = 7*151
f(47) = 517 = 11*47
f(48) = 1009 = 1009
f(49) = 491 = 491
f(50) = 953 = 953
f(51) = 461 = 461
f(52) = 889 = 7*127
f(53) = 427 = 7*61
f(54) = 817 = 19*43
f(55) = 389 = 389
f(56) = 737 = 11*67
f(57) = 347 = 347
f(58) = 649 = 11*59
f(59) = 301 = 7*43
f(60) = 553 = 7*79
f(61) = 251 = 251
f(62) = 449 = 449
f(63) = 197 = 197
f(64) = 337 = 337
f(65) = 139 = 139
f(66) = 217 = 7*31
f(67) = 77 = 7*11
f(68) = 89 = 89
f(69) = 11 = 11
f(70) = 47 = 47
f(71) = 59 = 59
f(72) = 191 = 191
f(73) = 133 = 7*19
f(74) = 343 = 7*7*7
f(75) = 211 = 211
f(76) = 503 = 503
f(77) = 293 = 293
f(78) = 671 = 11*61
f(79) = 379 = 379
f(80) = 847 = 7*11*11
f(81) = 469 = 7*67
f(82) = 1031 = 1031
f(83) = 563 = 563
f(84) = 1223 = 1223
f(85) = 661 = 661
f(86) = 1423 = 1423
f(87) = 763 = 7*109
f(88) = 1631 = 7*233
f(89) = 869 = 11*79
f(90) = 1847 = 1847
f(91) = 979 = 11*89
f(92) = 2071 = 19*109
f(93) = 1093 = 1093
f(94) = 2303 = 7*7*47
f(95) = 1211 = 7*173
f(96) = 2543 = 2543
f(97) = 1333 = 31*43
f(98) = 2791 = 2791
f(99) = 1459 = 1459
f(100) = 3047 = 11*277

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-70x+47

f(0)=47
f(1)=11
f(2)=89
f(3)=7
f(4)=31
f(5)=139
f(6)=337
f(7)=197
f(8)=449
f(9)=251
f(10)=79
f(11)=43
f(12)=59
f(13)=347
f(14)=67
f(15)=389
f(16)=19
f(17)=61
f(18)=127
f(19)=461
f(20)=953
f(21)=491
f(22)=1009
f(23)=1
f(24)=151
f(25)=1
f(26)=1097
f(27)=557
f(28)=1129
f(29)=571
f(30)=1153
f(31)=83
f(32)=167
f(33)=587
f(34)=107
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)=1
f(72)=191
f(73)=1
f(74)=1
f(75)=211
f(76)=503
f(77)=293
f(78)=1
f(79)=379
f(80)=1
f(81)=1
f(82)=1031
f(83)=563
f(84)=1223
f(85)=661
f(86)=1423
f(87)=109
f(88)=233
f(89)=1
f(90)=1847
f(91)=1
f(92)=1
f(93)=1093
f(94)=1
f(95)=173
f(96)=2543
f(97)=1
f(98)=2791
f(99)=1459

b) Substitution of the polynom
The polynom f(x)=x^2-70x+47 could be written as f(y)= y^2-1178 with x=y+35

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-35
f'(x)>2x-71 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

47, 11, 89, 7, 31, 139, 337, 197, 449, 251, 79, 43, 59, 347, 67, 389, 19, 61, 127, 461, 953, 491, 1009, 1, 151, 1, 1097, 557, 1129, 571, 1153, 83, 167, 587, 107, 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, 191, 1, 1, 211, 503, 293, 1, 379, 1, 1, 1031, 563, 1223, 661, 1423, 109, 233, 1, 1847, 1, 1, 1093, 1, 173, 2543, 1, 2791, 1459, 277, 227, 1, 1723, 3583, 1861, 3863, 2003, 593, 307, 4447, 1, 4751, 223, 1, 373, 769, 1, 5711, 2939, 6047, 3109, 1, 1, 613, 3461, 7103, 3643, 241, 547, 1, 4019, 8231, 383, 8623, 401, 1289, 659, 9431, 1, 229, 1, 10271, 1, 1, 1, 1013, 5683, 1, 311, 1721, 877, 12511, 6373, 12983, 601, 13463, 1, 1993, 1, 14447, 7349, 14951, 7603, 1, 1123, 1453, 8123, 1, 8389, 17047, 1237, 359, 8933, 18143, 1, 317, 863, 2753, 1, 1, 10069, 20431, 1, 21023, 1523, 3089, 577, 1, 1, 1, 11579, 479, 1699, 24103, 12211, 1, 1, 25391, 1, 1, 1, 26711, 13523, 1, 1, 1, 2029, 28751, 14549, 2677, 1, 2741, 2179, 4409, 1, 31583, 15973, 409, 16339, 4721, 1, 33791, 1553, 34543, 919, 821, 2549, 5153, 18229, 36847, 433, 1, 19013, 499, 1, 643, 19813, 40031, 20219, 40847, 421, 5953, 1913, 2237, 1951, 487, 1, 1, 3187, 1, 22739, 1481, 23173, 4253, 3373, 619, 1, 1033, 24499, 1, 1, 7193, 1, 51263, 2351, 52183, 2393, 1, 1, 1103, 27259, 1, 27733, 1301, 28211, 739, 4099, 5261, 29179, 709, 29669, 1, 1, 8689, 30661, 1, 2833, 757, 2879, 1303, 4597, 64871, 32693, 1117, 33211, 66943, 1, 883, 34259, 6277, 1831, 70111, 35323, 10169, 1, 569, 617, 73351, 3359, 683, 1, 1, 38053, 2473, 38611, 77783, 911, 11273, 811, 1, 1, 1, 40883, 1229, 5923, 1, 42043, 1, 907, 85847, 3929, 12433, 1, 88223, 1, 1, 45013, 90631, 1, 13121, 46229, 8461, 1, 8573, 1531, 13649, 6869, 641, 727, 98047, 49339, 2113, 1, 14369, 1, 101863, 1, 1, 51899, 1, 7507, 105751, 1, 9733, 53861, 1, 7789, 2239, 1, 1, 673, 1, 56533, 16249, 743, 1, 1, 116471, 58579, 1, 8467, 17033, 983, 120623, 60661, 11093, 61363, 1, 8867, 124847, 937, 126271, 63493, 127703, 9173, 971, 5903, 3037, 1, 132047, 1, 19073, 1, 1, 859, 136463, 2213, 12541, 9907, 1811, 70099, 2389, 70853, 1307, 3769, 1, 1, 145511, 1, 147047, 6719, 1069, 1, 1, 1279, 151703, 76243, 153271, 77029, 2011, 11117, 14221, 1, 8317, 79411, 159623, 1637, 1, 81019, 162847, 1, 164471, 1, 1, 11923, 1, 947, 1, 85109, 171047, 12277, 2243, 4567, 1, 1109, 176063, 1, 1, 12757, 1, 90149, 1693, 8273, 1709, 1193, 3767, 92723, 186311, 3019, 4001, 1601, 1427, 13619, 1583, 96211, 17573, 1, 195071, 13997, 1, 98869, 1429, 1489, 1, 9151, 4127, 1319, 1, 2383, 205847, 5441, 207671, 1, 1, 105211, 19213, 1, 19381, 1, 991, 15427, 216911, 108923, 218783, 1801, 220663, 1439, 31793, 10159, 11813, 1, 1, 1277, 32609, 2339, 1, 2459, 21101, 116539, 21277, 16787, 33713, 1087, 1, 1783, 1889, 2801, 1, 1, 4133, 1, 5717, 1, 3137, 2539, 1, 1511, 251831, 1, 1, 2089, 3323, 1, 257903, 129461, 259943, 130483, 13789, 18787, 1, 12049, 266111, 12143, 1151, 1, 38609, 19379, 272351, 1, 2161, 1, 1, 1, 1, 139861, 4603, 7417, 282911, 1327, 1, 1, 287191, 13103, 289343, 1, 291503, 20899, 41953, 1, 295847, 148469, 298031, 149563, 1, 21523, 1447, 3229, 304631, 2591, 306847, 21997, 1, 5003, 311303, 1291, 313543, 14303, 1, 22637, 1, 159589, 1, 160723, 322583, 1217, 4219, 163003, 29741, 164149, 1367, 3517, 1, 1, 1931, 167611, 1, 1, 7877, 2207, 1, 1231, 343391, 172283, 1, 1949, 1, 1, 1, 175829, 32077, 177019, 3259, 3637, 1, 179411, 360023, 1657, 362431, 16529, 52121, 2377, 4649, 9697, 369703, 1, 1, 26669, 1, 187909, 1, 189139, 34501, 1499, 1, 1, 8941, 192853, 8233, 2897, 389447, 1, 1, 1, 1, 1, 396983, 1, 57073, 28627, 1, 1, 36781, 202933, 37013, 29173, 1, 205493, 3853, 206779, 1, 1, 1, 2719, 6269, 1741, 13633, 1669, 6971, 30467, 61121, 2411, 5449, 215893, 39373, 2617, 5659, 31219, 438391, 5113, 1, 1, 443711, 1, 1483, 1, 2689, 1, 2141, 226549, 64921, 4651, 457151, 229253, 5167, 230611, 3823, 1, 6043, 12281, 7933, 2971, 470791, 1, 1, 33923, 7109, 21713, 10193, 21839, 481847, 4931, 69233, 1, 487423, 244411, 490223, 1, 1, 35317, 45077, 2281, 11597, 250043, 501503, 35923, 1, 5881, 16361, 1, 510047, 1, 1559, 36739, 515783, 258611, 1, 13687, 521551, 37357, 1, 262949, 1, 264403, 1, 265861, 1, 38189, 536111, 268789, 539047, 1, 541991, 3529, 77849, 5813, 28837, 274693, 6637, 1, 1, 39667, 1, 2609, 50893, 1, 6781, 1, 80833, 283669, 13229, 285179, 571871, 1, 82129, 1, 1, 289733, 1, 6197, 7393, 1, 83873, 3307, 53653, 295861, 4903, 297403, 85193, 6101, 1, 300499, 602551, 302053, 1, 3943, 86969, 27743, 9133, 306739, 615047, 308309, 1879, 44269, 621343, 5279, 56773, 1, 1, 6421, 90121, 316219, 634031, 1, 1, 319411, 1, 1, 10909, 1, 3739, 10459, 650071, 46549, 93329, 1, 1, 329083, 59981, 1, 1, 1, 35069, 333973, 2153, 3079, 672863, 48179, 13799, 30809, 10141, 1, 682751, 342203, 98009, 49123, 689383, 2069, 692711, 1, 63277, 1, 1, 2099, 702743, 1, 16421, 1, 14479, 1, 712847, 32479, 2333, 32633, 12197, 1, 103289, 362363, 726431, 364069, 1, 365779, 1, 1, 66973, 369211, 740143, 6287, 743591, 1, 106721, 374389, 1, 1, 753983, 34351, 1, 1, 760951, 20071, 764447, 383099, 767951, 54979, 1, 386611, 1, 388373, 778511, 1, 111721, 55987, 785591, 393683, 1, 35951, 792703, 1, 5987, 5051, 5297, 1, 13171, 402613, 3719, 57773, 73693, 1, 74021, 408019, 17401, 1, 117353, 6977, 9941, 413461, 828743, 1987, 118913, 5417, 836047, 418939, 1, 2203, 843383, 60373, 1, 9871, 1, 3911, 1, 428149, 2851, 1, 7907, 13931, 45557, 433723, 14251, 5657, 124721, 39769, 876791, 1, 880543, 1, 18047, 63299, 6389, 444979, 81077, 5021, 81421, 64109, 128489, 23719, 903223, 9629, 907031, 1, 130121, 5927, 4643, 1, 13709, 460211, 29753, 1, 132313, 4337,

6. Sequence of the polynom (only primes)

47, 11, 89, 7, 31, 139, 337, 197, 449, 251, 79, 43, 59, 347, 67, 389, 19, 61, 127, 461, 953, 491, 1009, 151, 1097, 557, 1129, 571, 1153, 83, 167, 587, 107, 191, 211, 503, 293, 379, 1031, 563, 1223, 661, 1423, 109, 233, 1847, 1093, 173, 2543, 2791, 1459, 277, 227, 1723, 3583, 1861, 3863, 2003, 593, 307, 4447, 4751, 223, 373, 769, 5711, 2939, 6047, 3109, 613, 3461, 7103, 3643, 241, 547, 4019, 8231, 383, 8623, 401, 1289, 659, 9431, 229, 10271, 1013, 5683, 311, 1721, 877, 12511, 6373, 12983, 601, 13463, 1993, 14447, 7349, 14951, 7603, 1123, 1453, 8123, 8389, 17047, 1237, 359, 8933, 18143, 317, 863, 2753, 10069, 20431, 21023, 1523, 3089, 577, 11579, 479, 1699, 24103, 12211, 25391, 26711, 13523, 2029, 28751, 14549, 2677, 2741, 2179, 4409, 31583, 15973, 409, 16339, 4721, 33791, 1553, 34543, 919, 821, 2549, 5153, 18229, 36847, 433, 19013, 499, 643, 19813, 40031, 20219, 40847, 421, 5953, 1913, 2237, 1951, 487, 3187, 22739, 1481, 23173, 4253, 3373, 619, 1033, 24499, 7193, 51263, 2351, 52183, 2393, 1103, 27259, 27733, 1301, 28211, 739, 4099, 5261, 29179, 709, 29669, 8689, 30661, 2833, 757, 2879, 1303, 4597, 64871, 32693, 1117, 33211, 66943, 883, 34259, 6277, 1831, 70111, 35323, 10169, 569, 617, 73351, 3359, 683, 38053, 2473, 38611, 77783, 911, 11273, 811, 40883, 1229, 5923, 42043, 907, 85847, 3929, 12433, 88223, 45013, 90631, 13121, 46229, 8461, 8573, 1531, 13649, 6869, 641, 727, 98047, 49339, 2113, 14369, 101863, 51899, 7507, 105751, 9733, 53861, 7789, 2239, 673, 56533, 16249, 743, 116471, 58579, 8467, 17033, 983, 120623, 60661, 11093, 61363, 8867, 124847, 937, 126271, 63493, 127703, 9173, 971, 5903, 3037, 132047, 19073, 859, 136463, 2213, 12541, 9907, 1811, 70099, 2389, 70853, 1307, 3769, 145511, 147047, 6719, 1069, 1279, 151703, 76243, 153271, 77029, 2011, 11117, 14221, 8317, 79411, 159623, 1637, 81019, 162847, 164471, 11923, 947, 85109, 171047, 12277, 2243, 4567, 1109, 176063, 12757, 90149, 1693, 8273, 1709, 1193, 3767, 92723, 186311, 3019, 4001, 1601, 1427, 13619, 1583, 96211, 17573, 195071, 13997, 98869, 1429, 1489, 9151, 4127, 1319, 2383, 205847, 5441, 207671, 105211, 19213, 19381, 991, 15427, 216911, 108923, 218783, 1801, 220663, 1439, 31793, 10159, 11813, 1277, 32609, 2339, 2459, 21101, 116539, 21277, 16787, 33713, 1087, 1783, 1889, 2801, 4133, 5717, 3137, 2539, 1511, 251831, 2089, 3323, 257903, 129461, 259943, 130483, 13789, 18787, 12049, 266111, 12143, 1151, 38609, 19379, 272351, 2161, 139861, 4603, 7417, 282911, 1327, 287191, 13103, 289343, 291503, 20899, 41953, 295847, 148469, 298031, 149563, 21523, 1447, 3229, 304631, 2591, 306847, 21997, 5003, 311303, 1291, 313543, 14303, 22637, 159589, 160723, 322583, 1217, 4219, 163003, 29741, 164149, 1367, 3517, 1931, 167611, 7877, 2207, 1231, 343391, 172283, 1949, 175829, 32077, 177019, 3259, 3637, 179411, 360023, 1657, 362431, 16529, 52121, 2377, 4649, 9697, 369703, 26669, 187909, 189139, 34501, 1499, 8941, 192853, 8233, 2897, 389447, 396983, 57073, 28627, 36781, 202933, 37013, 29173, 205493, 3853, 206779, 2719, 6269, 1741, 13633, 1669, 6971, 30467, 61121, 2411, 5449, 215893, 39373, 2617, 5659, 31219, 438391, 5113, 443711, 1483, 2689, 2141, 226549, 64921, 4651, 457151, 229253, 5167, 230611, 3823, 6043, 12281, 7933, 2971, 470791, 33923, 7109, 21713, 10193, 21839, 481847, 4931, 69233, 487423, 244411, 490223, 35317, 45077, 2281, 11597, 250043, 501503, 35923, 5881, 16361, 510047, 1559, 36739, 515783, 258611, 13687, 521551, 37357, 262949, 264403, 265861, 38189, 536111, 268789, 539047, 541991, 3529, 77849, 5813, 28837, 274693, 6637, 39667, 2609, 50893, 6781, 80833, 283669, 13229, 285179, 571871, 82129, 289733, 6197, 7393, 83873, 3307, 53653, 295861, 4903, 297403, 85193, 6101, 300499, 602551, 302053, 3943, 86969, 27743, 9133, 306739, 615047, 308309, 1879, 44269, 621343, 5279, 56773, 6421, 90121, 316219, 634031, 319411, 10909, 3739, 10459, 650071, 46549, 93329, 329083, 59981, 35069, 333973, 2153, 3079, 672863, 48179, 13799, 30809, 10141, 682751, 342203, 98009, 49123, 689383, 2069, 692711, 63277, 2099, 702743, 16421, 14479, 712847, 32479, 2333, 32633, 12197, 103289, 362363, 726431, 364069, 365779, 66973, 369211, 740143, 6287, 743591, 106721, 374389, 753983, 34351, 760951, 20071, 764447, 383099, 767951, 54979, 386611, 388373, 778511, 111721, 55987, 785591, 393683, 35951, 792703, 5987, 5051, 5297, 13171, 402613, 3719, 57773, 73693, 74021, 408019, 17401, 117353, 6977, 9941, 413461, 828743, 1987, 118913, 5417, 836047, 418939, 2203, 843383, 60373, 9871, 3911, 428149, 2851, 7907, 13931, 45557, 433723, 14251, 5657, 124721, 39769, 876791, 880543, 18047, 63299, 6389, 444979, 81077, 5021, 81421, 64109, 128489, 23719, 903223, 9629, 907031, 130121, 5927, 4643, 13709, 460211, 29753, 132313, 4337,

7. Distribution of the primes

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

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)
11011561.1000000.5000001.1000000.0000000.0000000.000000
21005019310.5000000.1900000.5000004.5454553.8000005.166667
31.0006951505450.6950000.1500000.69500013.9000007.89473717.580645
410.0007.1261.0356.0910.7126000.1035000.71260010.2532386.90000011.176147
5100.00071.0378.06762.9700.7103700.0806700.7103709.9687067.79420310.338204
61.000.000708.16565.702642.4630.7081650.0657020.7081659.9689608.14454010.202683
710.000.0007.058.868556.8756.501.9930.7058870.0556870.7058879.9678308.47576910.120417
8100.000.00070.411.2754.830.74965.580.5260.7041130.0483070.7041139.9748688.67474610.086220
91.000.000.000702.772.18442.622.924660.149.2600.7027720.0426230.7027729.9809618.82325410.066238
1010.000.000.0007.017.081.893381.489.7146.635.592.1790.7017080.0381490.7017089.9848608.95034110.051655


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
245321.2500000.7500000.5000001.6666671.5000002.000000
389541.1250000.6250000.5000001.8000001.6666672.000000
416176111.0625000.3750000.6875001.8888891.2000002.750000
5323111200.9687500.3437500.6250001.8235291.8333331.818182
6643311220.5156250.1718750.3437501.0645161.0000001.100000
71287026440.5468750.2031250.3437502.1212122.3636362.000000
8256158491090.6171880.1914060.4257812.2571431.8846152.477273
9512341852560.6660160.1660160.5000002.1582281.7346942.348624
101.0247111545570.6943360.1503910.5439452.0850441.8117652.175781
112.0481.4302661.1640.6982420.1298830.5683592.0112521.7272732.089767
124.0962.8904772.4130.7055660.1164550.5891112.0209791.7932332.073024
138.1925.8208654.9550.7104490.1055910.6048582.0138411.8134172.053460
1416.38411.6431.60810.0350.7106320.0981450.6124882.0005151.8589602.025227
1532.76823.3052.95520.3500.7112120.0901790.6210332.0016321.8376872.027902
1665.53646.5815.47741.1040.7107700.0835720.6271971.9987561.8534692.019853
17131.07293.06610.26882.7980.7100370.0783390.6316991.9979391.8747492.014354
18262.144185.96019.291166.6690.7093810.0735890.6357921.9981521.8787492.012959
19524.288371.58636.242335.3440.7087440.0691260.6396181.9982041.8787002.012036
201.048.576742.40668.635673.7710.7080140.0654550.6425581.9979391.8937972.009194
212.097.1521.483.470130.1391.353.3310.7073740.0620550.6453191.9981921.8961032.008592
224.194.3042.963.950247.9692.715.9810.7066610.0591200.6475401.9979841.9054162.006886
238.388.6085.922.828472.7815.450.0470.7060560.0563600.6496961.9982891.9066132.006659
2416.777.21611.835.875903.40610.932.4690.7054730.0538470.6516261.9983491.9108342.005940
2533.554.43223.653.1441.730.26321.922.8810.7049190.0515660.6533531.9984281.9152662.005300
2667.108.86447.271.5883.317.94343.953.6450.7044020.0494410.6549601.9985331.9175952.004921
27134.217.72894.478.6696.374.42988.104.2400.7039210.0474930.6564281.9986351.9211992.004481
28268.435.456188.840.10612.265.150176.574.9560.7034840.0456910.6577931.9987591.9241172.004160
29536.870.912377.474.20423.633.490353.840.7140.7031010.0440210.6590801.9989091.9268812.003912
301.073.741.824754.552.56745.602.334708.950.2330.7027320.0424700.6602611.9989511.9295642.003586
312.147.483.6481.508.365.87388.103.2281.420.262.6450.7023880.0410260.6613611.9990201.9319892.003332
324.294.967.2963.015.364.783170.413.5062.844.951.2770.7020690.0396770.6623921.9990941.9342482.003116
338.589.934.5926.028.169.940329.989.0115.698.180.9290.7017710.0384160.6633561.9991511.9364022.002910
3417.179.869.18412.051.573.294639.614.88911.411.958.4050.7014940.0372300.6642631.9992091.9382912.002737


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
122021001
243122001
385234001
4166335001
532116510001
664116510001
7128261016100016
8256491732100039
9512852956100075
101.024154511031000144
112.048266881781000256
124.0964771653121000467
138.1928652905751000855
1416.3841.6085421.06610001.598
1532.7682.9559661.98910002.945
1665.5365.4771.8183.65910005.467
17131.07210.2683.4256.843100010.258
18262.14419.2916.41712.874100019.281
19524.28836.24212.07124.171100036.232
201.048.57668.63522.78045.855100068.625
212.097.152130.13943.24786.8921000130.129
224.194.304247.96982.490165.4791000247.959
238.388.608472.781157.603315.1781000472.771
2416.777.216903.406301.153602.2531000903.396
2533.554.4321.730.263576.8731.153.39010001.730.253
2667.108.8643.317.9431.106.0282.211.91510003.317.933
27134.217.7286.374.4292.124.6274.249.80210006.374.419
28268.435.45612.265.1504.089.1458.176.005100012.265.140
29536.870.91223.633.4907.876.90515.756.585100023.633.480
301.073.741.82445.602.33415.199.56430.402.770100045.602.324
312.147.483.64888.103.22829.368.83158.734.397100088.103.218
324.294.967.296170.413.50656.806.317113.607.1891000170.413.496
338.589.934.592329.989.011110.004.841219.984.1701000329.989.001
3417.179.869.184639.614.889213.213.885426.401.0041000639.614.879


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
121010100
242110101
384220211
41611560722
5322091101055
6642291301255
7128442321322145
8256109545518423712
951225613412246888834
101.02455729326411817419273
112.0481.164618546248339406171
124.0962.4131.2661.147549685796383
138.1924.9552.6182.3371.1571.3931.558847
1416.38410.0355.3034.7322.3612.7383.1341.802
1532.76820.35010.6899.6614.7965.5166.2643.774
1665.53641.10421.51019.5949.85811.03812.4837.725
17131.07282.79843.18039.61819.83022.22924.60716.132
18262.144166.66986.81779.85240.13844.19149.10533.235
19524.288335.344173.925161.41981.21788.62897.78167.718
201.048.576673.771349.091324.680163.366177.670194.660138.075
212.097.1521.353.331699.464653.867328.764355.691387.927280.949
224.194.3042.715.9811.401.5591.314.422661.275711.880773.628569.198
238.388.6085.450.0472.806.3392.643.7081.327.7771.425.3381.543.0731.153.859
2416.777.21610.932.4695.620.7615.311.7082.667.3862.852.8363.076.4182.335.829
2533.554.43221.922.88111.256.61710.666.2645.355.0585.708.1736.137.8424.721.808
2667.108.86443.953.64522.541.44421.412.20110.746.02811.426.06112.244.6049.536.952
27134.217.72888.104.24045.140.77442.963.46621.557.66422.869.93224.433.07219.243.572
28268.435.456176.574.95690.380.19586.194.76143.243.48145.764.63248.764.89738.801.946
29536.870.912353.840.714180.948.469172.892.24586.724.75991.586.56697.351.87778.177.512
301.073.741.824708.950.233362.246.973346.703.260173.869.974183.270.157194.391.666157.418.436
312.147.483.6481.420.262.645725.142.757695.119.888348.538.776366.741.057388.173.502316.809.310
324.294.967.2962.844.951.2771.451.497.3091.393.453.968698.595.534733.790.154775.247.677637.317.912
338.589.934.5925.698.180.9292.905.251.8242.792.929.1051.400.038.6761.468.234.3481.548.386.7391.281.521.166
3417.179.869.18411.411.958.4055.814.797.2975.597.161.1082.805.407.1082.937.741.9253.092.820.1492.575.989.223


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 11, 89, 7, 31, 139, 337, 197, 449, 251, 79, 43, 59, 347, 67, 389, 19, 61, 127, 461,
Found in Database : 47, 11, 89, 7, 31, 139, 337, 197, 449, 251, 79, 43, 59, 347, 67, 389, 19, 61, 127, 461, 953, 491, 1009, 151, 1097, 557, 1129, 571, 1153, 83, 167, 587, 107,
Found in Database : 7, 11, 19, 31, 43, 47, 59, 61, 67, 79, 83, 89, 107, 109, 127, 139,