Inhaltsverzeichnis

Development of
Algorithmic Constructions

18:33:51
Deutsch
20.Apr 2024

Polynom = x^2+192x-1

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) = 1 = 1
f(1) = 3 = 3
f(2) = 387 = 3*3*43
f(3) = 73 = 73
f(4) = 783 = 3*3*3*29
f(5) = 123 = 3*41
f(6) = 1187 = 1187
f(7) = 87 = 3*29
f(8) = 1599 = 3*13*41
f(9) = 113 = 113
f(10) = 2019 = 3*673
f(11) = 279 = 3*3*31
f(12) = 2447 = 2447
f(13) = 333 = 3*3*37
f(14) = 2883 = 3*31*31
f(15) = 97 = 97
f(16) = 3327 = 3*1109
f(17) = 111 = 3*37
f(18) = 3779 = 3779
f(19) = 501 = 3*167
f(20) = 4239 = 3*3*3*157
f(21) = 559 = 13*43
f(22) = 4707 = 3*3*523
f(23) = 309 = 3*103
f(24) = 5183 = 71*73
f(25) = 339 = 3*113
f(26) = 5667 = 3*1889
f(27) = 739 = 739
f(28) = 6159 = 3*2053
f(29) = 801 = 3*3*89
f(30) = 6659 = 6659
f(31) = 27 = 3*3*3
f(32) = 7167 = 3*2389
f(33) = 29 = 29
f(34) = 7683 = 3*13*197
f(35) = 993 = 3*331
f(36) = 8207 = 29*283
f(37) = 1059 = 3*353
f(38) = 8739 = 3*3*971
f(39) = 563 = 563
f(40) = 9279 = 3*3*1031
f(41) = 597 = 3*199
f(42) = 9827 = 31*317
f(43) = 1263 = 3*421
f(44) = 10383 = 3*3461
f(45) = 1333 = 31*43
f(46) = 10947 = 3*41*89
f(47) = 351 = 3*3*3*13
f(48) = 11519 = 11519
f(49) = 369 = 3*3*41
f(50) = 12099 = 3*37*109
f(51) = 1549 = 1549
f(52) = 12687 = 3*4229
f(53) = 1623 = 3*541
f(54) = 13283 = 37*359
f(55) = 849 = 3*283
f(56) = 13887 = 3*3*1543
f(57) = 887 = 887
f(58) = 14499 = 3*3*3*3*179
f(59) = 1851 = 3*617
f(60) = 15119 = 13*1163
f(61) = 1929 = 3*643
f(62) = 15747 = 3*29*181
f(63) = 251 = 251
f(64) = 16383 = 3*43*127
f(65) = 261 = 3*3*29
f(66) = 17027 = 17027
f(67) = 2169 = 3*3*241
f(68) = 17679 = 3*71*83
f(69) = 2251 = 2251
f(70) = 18339 = 3*6113
f(71) = 1167 = 3*389
f(72) = 19007 = 83*229
f(73) = 1209 = 3*13*31
f(74) = 19683 = 3*3*3*3*3*3*3*3*3
f(75) = 2503 = 2503
f(76) = 20367 = 3*3*31*73
f(77) = 2589 = 3*863
f(78) = 21059 = 21059
f(79) = 669 = 3*223
f(80) = 21759 = 3*7253
f(81) = 691 = 691
f(82) = 22467 = 3*7489
f(83) = 2853 = 3*3*317
f(84) = 23183 = 97*239
f(85) = 2943 = 3*3*3*109
f(86) = 23907 = 3*13*613
f(87) = 1517 = 37*41
f(88) = 24639 = 3*43*191
f(89) = 1563 = 3*521
f(90) = 25379 = 41*619
f(91) = 3219 = 3*29*37
f(92) = 26127 = 3*3*2903
f(93) = 3313 = 3313
f(94) = 26883 = 3*3*29*103
f(95) = 213 = 3*71
f(96) = 27647 = 27647
f(97) = 219 = 3*73
f(98) = 28419 = 3*9473
f(99) = 3601 = 13*277
f(100) = 29199 = 3*9733

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+192x-1

f(0)=1
f(1)=3
f(2)=43
f(3)=73
f(4)=29
f(5)=41
f(6)=1187
f(7)=1
f(8)=13
f(9)=113
f(10)=673
f(11)=31
f(12)=2447
f(13)=37
f(14)=1
f(15)=97
f(16)=1109
f(17)=1
f(18)=3779
f(19)=167
f(20)=157
f(21)=1
f(22)=523
f(23)=103
f(24)=71
f(25)=1
f(26)=1889
f(27)=739
f(28)=2053
f(29)=89
f(30)=6659
f(31)=1
f(32)=2389
f(33)=1
f(34)=197
f(35)=331
f(36)=283
f(37)=353
f(38)=971
f(39)=563
f(40)=1031
f(41)=199
f(42)=317
f(43)=421
f(44)=3461
f(45)=1
f(46)=1
f(47)=1
f(48)=11519
f(49)=1
f(50)=109
f(51)=1549
f(52)=4229
f(53)=541
f(54)=359
f(55)=1
f(56)=1543
f(57)=887
f(58)=179
f(59)=617
f(60)=1163
f(61)=643
f(62)=181
f(63)=251
f(64)=127
f(65)=1
f(66)=17027
f(67)=241
f(68)=83
f(69)=2251
f(70)=6113
f(71)=389
f(72)=229
f(73)=1
f(74)=1
f(75)=2503
f(76)=1
f(77)=863
f(78)=21059
f(79)=223
f(80)=7253
f(81)=691
f(82)=7489
f(83)=1
f(84)=239
f(85)=1
f(86)=613
f(87)=1
f(88)=191
f(89)=521
f(90)=619
f(91)=1
f(92)=2903
f(93)=3313
f(94)=1
f(95)=1
f(96)=27647
f(97)=1
f(98)=9473
f(99)=277

b) Substitution of the polynom
The polynom f(x)=x^2+192x-1 could be written as f(y)= y^2-9217 with x=y-96

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+96
f'(x)>2x+191

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

1, 3, 43, 73, 29, 41, 1187, 1, 13, 113, 673, 31, 2447, 37, 1, 97, 1109, 1, 3779, 167, 157, 1, 523, 103, 71, 1, 1889, 739, 2053, 89, 6659, 1, 2389, 1, 197, 331, 283, 353, 971, 563, 1031, 199, 317, 421, 3461, 1, 1, 1, 11519, 1, 109, 1549, 4229, 541, 359, 1, 1543, 887, 179, 617, 1163, 643, 181, 251, 127, 1, 17027, 241, 83, 2251, 6113, 389, 229, 1, 1, 2503, 1, 863, 21059, 223, 7253, 691, 7489, 1, 239, 1, 613, 1, 191, 521, 619, 1, 2903, 3313, 1, 1, 27647, 1, 9473, 277, 9733, 137, 1, 211, 1, 1949, 10529, 1, 1, 1367, 3691, 1051, 1, 1, 34883, 1471, 11909, 4519, 1, 257, 1291, 263, 1, 1, 1, 1, 1, 1, 1, 647, 4651, 1, 42767, 1801, 14561, 1, 14869, 313, 1, 1, 15493, 5869, 15809, 499, 48383, 509, 5483, 6229, 5591, 1, 1193, 1, 601, 3299, 17761, 1, 54287, 761, 18433, 1, 18773, 1, 57347, 2411, 1, 1, 1, 1249, 307, 1, 281, 7759, 1, 877, 1481, 1, 21589, 1, 757, 2767, 66959, 1, 2521, 4289, 7687, 1453, 1, 2953, 23813, 9001, 1861, 1, 73727, 1, 1, 9433, 25349, 1, 2087, 1621, 1, 4937, 1, 1, 80783, 3391, 27329, 1, 27733, 1, 1, 1181, 28549, 1, 28961, 1823, 6779, 1, 9931, 11251, 373, 3803, 1259, 1, 349, 733, 31489, 1321, 3089, 1, 32353, 1, 32789, 2063, 1201, 1, 1, 1, 1, 1, 1, 1087, 2693, 1, 35461, 1487, 107747, 1, 36373, 6863, 36833, 1, 881, 4691, 1, 1, 12743, 1, 116099, 1, 911, 14779, 1279, 1, 120383, 1, 40609, 15319, 1, 5167, 124739, 1307, 379, 3967, 4729, 5351, 3491, 5413, 449, 1, 44053, 1, 383, 1867, 45061, 16993, 45569, 1, 138239, 1, 1, 17569, 1, 1, 1, 1, 1, 1, 48673, 2039, 1433, 1, 1, 1, 50261, 1579, 1571, 491, 1, 1, 17291, 3259, 157247, 1, 1, 19963, 1, 1, 1277, 1, 4201, 1, 1283, 1, 5393, 7001, 1, 10607, 6317, 3571, 172259, 7213, 1, 1, 1, 1, 4327, 1, 1, 22501, 60293, 7573, 182627, 3823, 6829, 11579, 1, 7793, 1663, 7867, 1709, 1489, 1, 1, 193283, 1, 65029, 24499, 65633, 1, 198719, 4159, 22283, 25183, 1, 1, 1, 2137, 941, 6469, 69313, 967, 16139, 2927, 1721, 1, 1, 1, 215459, 1, 24151, 1, 2707, 1, 1, 1, 2399, 1, 75013, 1, 1, 1583, 557, 14369, 76961, 9661, 232847, 9743, 1, 7369, 1, 2477, 2683, 1, 1, 30223, 80929, 1693, 5693, 569, 2837, 2383, 1, 1, 8093, 1, 1, 1, 1, 10667, 6947, 10753, 86369, 1, 1, 607, 263267, 3671, 1, 33301, 89153, 2797, 6269, 2819, 30187, 1, 10141, 1, 275939, 1, 92693, 1, 3221, 3907, 282383, 1, 94849, 4463, 3083, 1499, 1, 1, 10781, 36523, 32587, 6133, 7207, 1, 99233, 1, 1, 1, 4139, 1, 1, 9547, 571, 12823, 10651, 12917, 1, 1, 1, 6553, 3547, 1, 1, 1, 106753, 1, 322559, 1, 108289, 1, 1, 13681, 3023, 1, 36871, 1601, 12377, 1, 336527, 14071, 1, 10627, 113749, 1, 1, 4789, 1, 43399, 8933, 7283, 350783, 7333, 1, 1429, 39511, 14867, 11549, 1871, 1, 5651, 1657, 1, 365327, 1697, 2851, 23063, 1, 1, 372707, 15581, 41687, 1, 1447, 3947, 29243, 1, 1, 1297, 128389, 1789, 387683, 1, 130069, 1, 1, 16417, 1427, 1, 44203, 1559, 4943, 1, 402947, 16843, 135173, 1, 136033, 2843, 410687, 2861, 10597, 1787, 138629, 17383, 14431, 4373, 1733, 1, 1, 1, 426383, 1, 1723, 2069, 3889, 1, 5233, 2017, 1, 1, 1, 2297, 442367, 2311, 49451, 1361, 1, 18713, 10987, 9413, 5209, 28409, 151969, 1, 458639, 6389, 1, 14461, 2179, 1, 1, 1, 52183, 1, 17497, 9871, 15329, 9929, 1, 1933, 3727, 1, 37199, 1, 2221, 1, 1, 20443, 492047, 709, 18329, 31019, 1907, 10399, 500579, 1609, 4093, 1, 168769, 1, 3049, 1, 170689, 64189, 171653, 21517, 4751, 1, 4451, 1, 1877, 21881, 7417, 22003, 1, 8297, 177493, 1, 1, 7457, 179461, 1, 4877, 1, 3467, 1, 60811, 1, 1, 1, 1, 5779, 185429, 17431, 14341, 7789, 7703, 1, 6079, 1, 4621, 1, 1, 23873, 21277, 809, 64171, 1, 580607, 1, 6709, 1, 1, 8171, 589859, 1, 827, 1, 198689, 1, 46091, 25031, 66923, 1, 67271, 6323, 14153, 25423, 203909, 2473, 2113, 1, 19937, 1, 207073, 1, 7177, 26083, 15307, 1, 1, 1, 2609, 1, 637199, 1, 16421, 40127, 2083, 4481, 646883, 9007, 5857, 1, 217793, 6823, 17747, 6857, 8147, 6361, 2377, 27701, 666467, 1, 223253, 1, 1, 9371, 1, 1, 3191, 5323, 1, 1783, 686339, 1, 76631, 1, 77003, 1, 6761, 14543, 5689, 87679, 1, 1, 706499, 2459, 5503, 1, 3257, 1, 716687, 1, 1, 1, 1, 1, 1, 1, 243461, 91513, 1, 1, 737279, 1, 246913, 92809, 1, 31081, 4177, 1, 1, 47057, 1, 31517, 758159, 31663, 1, 23857, 6221, 2663, 1, 1, 19801, 3121, 1, 1, 779327, 16273, 2351, 2281, 87383, 32843, 1, 1, 2341, 1, 265729, 1, 800783, 1, 3673, 50387, 269333, 16871, 811619, 33893, 90583, 937, 2333, 1, 1, 1, 275393, 1, 8923, 11551, 4231, 5801, 1, 1, 2207, 1, 20599, 35267, 1, 1, 1, 4447, 855683, 35731, 286469, 1, 6691, 6007, 66683, 2011, 290209, 109063, 1, 1, 878147, 1, 1, 1, 98411, 1, 4657, 2857, 1, 55949, 299029, 2081, 1, 12539, 3109, 113329, 7043, 2371, 24659, 2381, 1, 114769, 1, 1, 923939, 19289, 309269, 58109, 10709, 12967, 13177, 1, 313153, 1, 314453, 1, 30557, 39551, 11743, 1, 106123, 1, 9887, 20021, 1, 120619, 24793, 13457, 970883, 1, 324949, 15263, 3931, 40867, 13463, 1, 1, 2131, 1, 1, 34303, 1013, 332933, 125101, 1, 1, 1006847, 1, 336961, 126613, 338309, 42373, 1, 1, 1, 64067, 1, 1, 23981, 43051, 345089, 1, 346453, 1, 3767, 1117, 12041, 131203, 350561, 1, 11863, 22039, 1061, 132751, 1, 1, 28871, 11149, 1, 33577, 1, 1, 1, 1, 3511, 1, 4973, 1, 1093283, 45641, 1, 1, 1, 5749, 1105919, 1, 2357, 139033, 12809, 1, 2999, 1, 374293, 70313, 28901, 1, 36497, 1, 1, 1, 42221, 11897, 1, 1, 1097, 1, 384289, 1, 1157183, 1, 387169, 145459, 1, 1, 40351, 1, 1, 1, 130987, 49211, 91019, 49393, 395873, 74363,

6. Sequence of the polynom (only primes)

3, 43, 73, 29, 41, 1187, 13, 113, 673, 31, 2447, 37, 97, 1109, 3779, 167, 157, 523, 103, 71, 1889, 739, 2053, 89, 6659, 2389, 197, 331, 283, 353, 971, 563, 1031, 199, 317, 421, 3461, 11519, 109, 1549, 4229, 541, 359, 1543, 887, 179, 617, 1163, 643, 181, 251, 127, 17027, 241, 83, 2251, 6113, 389, 229, 2503, 863, 21059, 223, 7253, 691, 7489, 239, 613, 191, 521, 619, 2903, 3313, 27647, 9473, 277, 9733, 137, 211, 1949, 10529, 1367, 3691, 1051, 34883, 1471, 11909, 4519, 257, 1291, 263, 647, 4651, 42767, 1801, 14561, 14869, 313, 15493, 5869, 15809, 499, 48383, 509, 5483, 6229, 5591, 1193, 601, 3299, 17761, 54287, 761, 18433, 18773, 57347, 2411, 1249, 307, 281, 7759, 877, 1481, 21589, 757, 2767, 66959, 2521, 4289, 7687, 1453, 2953, 23813, 9001, 1861, 73727, 9433, 25349, 2087, 1621, 4937, 80783, 3391, 27329, 27733, 1181, 28549, 28961, 1823, 6779, 9931, 11251, 373, 3803, 1259, 349, 733, 31489, 1321, 3089, 32353, 32789, 2063, 1201, 1087, 2693, 35461, 1487, 107747, 36373, 6863, 36833, 881, 4691, 12743, 116099, 911, 14779, 1279, 120383, 40609, 15319, 5167, 124739, 1307, 379, 3967, 4729, 5351, 3491, 5413, 449, 44053, 383, 1867, 45061, 16993, 45569, 138239, 17569, 48673, 2039, 1433, 50261, 1579, 1571, 491, 17291, 3259, 157247, 19963, 1277, 4201, 1283, 5393, 7001, 10607, 6317, 3571, 172259, 7213, 4327, 22501, 60293, 7573, 182627, 3823, 6829, 11579, 7793, 1663, 7867, 1709, 1489, 193283, 65029, 24499, 65633, 198719, 4159, 22283, 25183, 2137, 941, 6469, 69313, 967, 16139, 2927, 1721, 215459, 24151, 2707, 2399, 75013, 1583, 557, 14369, 76961, 9661, 232847, 9743, 7369, 2477, 2683, 30223, 80929, 1693, 5693, 569, 2837, 2383, 8093, 10667, 6947, 10753, 86369, 607, 263267, 3671, 33301, 89153, 2797, 6269, 2819, 30187, 10141, 275939, 92693, 3221, 3907, 282383, 94849, 4463, 3083, 1499, 10781, 36523, 32587, 6133, 7207, 99233, 4139, 9547, 571, 12823, 10651, 12917, 6553, 3547, 106753, 322559, 108289, 13681, 3023, 36871, 1601, 12377, 336527, 14071, 10627, 113749, 4789, 43399, 8933, 7283, 350783, 7333, 1429, 39511, 14867, 11549, 1871, 5651, 1657, 365327, 1697, 2851, 23063, 372707, 15581, 41687, 1447, 3947, 29243, 1297, 128389, 1789, 387683, 130069, 16417, 1427, 44203, 1559, 4943, 402947, 16843, 135173, 136033, 2843, 410687, 2861, 10597, 1787, 138629, 17383, 14431, 4373, 1733, 426383, 1723, 2069, 3889, 5233, 2017, 2297, 442367, 2311, 49451, 1361, 18713, 10987, 9413, 5209, 28409, 151969, 458639, 6389, 14461, 2179, 52183, 17497, 9871, 15329, 9929, 1933, 3727, 37199, 2221, 20443, 492047, 709, 18329, 31019, 1907, 10399, 500579, 1609, 4093, 168769, 3049, 170689, 64189, 171653, 21517, 4751, 4451, 1877, 21881, 7417, 22003, 8297, 177493, 7457, 179461, 4877, 3467, 60811, 5779, 185429, 17431, 14341, 7789, 7703, 6079, 4621, 23873, 21277, 809, 64171, 580607, 6709, 8171, 589859, 827, 198689, 46091, 25031, 66923, 67271, 6323, 14153, 25423, 203909, 2473, 2113, 19937, 207073, 7177, 26083, 15307, 2609, 637199, 16421, 40127, 2083, 4481, 646883, 9007, 5857, 217793, 6823, 17747, 6857, 8147, 6361, 2377, 27701, 666467, 223253, 9371, 3191, 5323, 1783, 686339, 76631, 77003, 6761, 14543, 5689, 87679, 706499, 2459, 5503, 3257, 716687, 243461, 91513, 737279, 246913, 92809, 31081, 4177, 47057, 31517, 758159, 31663, 23857, 6221, 2663, 19801, 3121, 779327, 16273, 2351, 2281, 87383, 32843, 2341, 265729, 800783, 3673, 50387, 269333, 16871, 811619, 33893, 90583, 937, 2333, 275393, 8923, 11551, 4231, 5801, 2207, 20599, 35267, 4447, 855683, 35731, 286469, 6691, 6007, 66683, 2011, 290209, 109063, 878147, 98411, 4657, 2857, 55949, 299029, 2081, 12539, 3109, 113329, 7043, 2371, 24659, 2381, 114769, 923939, 19289, 309269, 58109, 10709, 12967, 13177, 313153, 314453, 30557, 39551, 11743, 106123, 9887, 20021, 120619, 24793, 13457, 970883, 324949, 15263, 3931, 40867, 13463, 2131, 34303, 1013, 332933, 125101, 1006847, 336961, 126613, 338309, 42373, 64067, 23981, 43051, 345089, 346453, 3767, 1117, 12041, 131203, 350561, 11863, 22039, 1061, 132751, 28871, 11149, 33577, 3511, 4973, 1093283, 45641, 5749, 1105919, 2357, 139033, 12809, 2999, 374293, 70313, 28901, 36497, 42221, 11897, 1097, 384289, 1157183, 387169, 145459, 40351, 130987, 49211, 91019, 49393, 395873, 74363,

7. Distribution of the primes

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

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)
1109270.9000000.2000000.9000000.0000000.0000000.000000
2100759660.7500000.0900000.7500008.3333334.5000009.428572
31.000620665540.6200000.0660000.6200008.2666667.3333338.393939
410.0006.2875105.7770.6287000.0510000.62870010.1403237.72727310.427798
5100.00064.4293.94860.4810.6442900.0394800.64429010.2479727.74117710.469275
61.000.000653.34731.970621.3770.6533470.0319700.65334710.1405748.09777110.273921
710.000.0006.591.008272.2406.318.7680.6591010.0272240.65910110.0880668.51548310.168977
8100.000.00066.345.1472.360.05463.985.0930.6634510.0236010.66345110.0660108.66902010.126198
91.000.000.000666.816.93720.838.238645.978.6990.6668170.0208380.66681710.0507278.82956010.095769
1010.000.000.0006.695.050.576186.465.2816.508.585.2950.6695050.0186470.66950510.0403138.94822710.075542


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)
122021.0000000.0000001.0000000.0000000.0000000.000000
244041.0000000.0000001.0000002.000000-nan2.000000
387250.8750000.2500000.6250001.750000inf1.250000
416143110.8750000.1875000.6875002.0000001.5000002.200000
532265210.8125000.1562500.6562501.8571431.6666671.909091
664516450.7968750.0937500.7031251.9615381.2000002.142857
71288810780.6875000.0781250.6093751.7254901.6666671.733333
8256168181500.6562500.0703120.5859381.9090911.8000001.923077
9512318352830.6210940.0683590.5527341.8928571.9444441.886667
101.024638675710.6230470.0654300.5576172.0062891.9142862.017668
112.0481.2731271.1460.6215820.0620120.5595701.9952981.8955222.007005
124.0962.5402342.3060.6201170.0571290.5629881.9952871.8425202.012216
138.1925.1284304.6980.6259770.0524900.5734862.0188981.8376072.037294
1416.38410.3637769.5870.6325070.0473630.5851442.0208661.8046512.040656
1532.76820.9181.42019.4980.6383670.0433350.5950322.0185281.8298972.033796
1665.53642.0902.71239.3780.6422420.0413820.6008612.0121431.9098592.019592
17131.07284.5555.03779.5180.6451030.0384290.6066742.0089091.8573012.019351
18262.144170.1149.347160.7670.6489330.0356560.6132772.0118741.8556682.021769
19524.288341.39717.708323.6890.6511630.0337750.6173882.0068721.8945122.013405
201.048.576685.17733.430651.7470.6534360.0318810.6215542.0069801.8878472.013498
212.097.1521.374.61563.4721.311.1430.6554680.0302660.6252022.0062191.8986542.011736
224.194.3042.756.505120.8992.635.6060.6572020.0288250.6283772.0052921.9047612.010159
238.388.6085.525.615231.1195.294.4960.6587050.0275520.6311532.0045731.9116702.008834
2416.777.21611.076.733441.53010.635.2030.6602250.0263170.6339072.0046151.9104012.008728
2533.554.43222.197.257845.25521.352.0020.6615300.0251910.6363392.0039531.9143772.007672
2667.108.86444.477.0781.620.77642.856.3020.6627600.0241510.6386092.0037201.9174992.007133
27134.217.72889.111.0863.114.68285.996.4040.6639290.0232060.6407232.0035281.9217232.006622
28268.435.456178.507.0575.994.451172.512.6060.6649910.0223310.6426602.0031971.9245792.006045
29536.870.912357.549.48911.552.891345.996.5980.6659880.0215190.6444692.0029991.9272642.005631
301.073.741.824716.091.43822.294.797693.796.6410.6669120.0207640.6461492.0027761.9298022.005212
312.147.483.6481.434.036.79643.073.7901.390.963.0060.6677750.0200580.6477182.0025891.9320112.004857
324.294.967.2962.871.550.56083.307.4812.788.243.0790.6685850.0193970.6491882.0024251.9340642.004542
338.589.934.5925.749.629.956161.290.1625.588.339.7940.6693450.0187770.6505682.0022741.9360832.004251
3417.179.869.18411.511.492.431312.623.72511.198.868.7060.6700570.0181970.6518602.0021281.9382692.003971


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
382010101
4163020102
5325040302
6646050303
712810090604
82561801708010
951235034016019
101.02467066031036
112.0481270126060067
124.096234023301160118
138.192430042902150215
1416.384776077503790397
1532.7681.42001.41907080712
1665.5362.71202.71101.35901.353
17131.0725.03705.03602.52602.511
18262.1449.34709.34604.68104.666
19524.28817.708017.70708.86608.842
201.048.57633.430033.429016.736016.694
212.097.15263.472063.471031.724031.748
224.194.304120.8990120.898060.485060.414
238.388.608231.1190231.1180115.4460115.673
2416.777.216441.5300441.5290220.5040221.026
2533.554.432845.2550845.2540422.4840422.771
2667.108.8641.620.77601.620.7750810.4540810.322
27134.217.7283.114.68203.114.68101.557.56801.557.114
28268.435.4565.994.45105.994.45002.997.75602.996.695
29536.870.91211.552.891011.552.89005.777.59905.775.292
301.073.741.82422.294.797022.294.796011.150.344011.144.453
312.147.483.64843.073.790043.073.789021.537.946021.535.844
324.294.967.29683.307.481083.307.480041.651.827041.655.654
338.589.934.592161.290.1620161.290.161080.641.243080.648.919
3417.179.869.184312.623.7250312.623.7240156.308.7890156.314.936


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
244211210
385222210
41611645231
532211287464
664452222912159
712878403717192319
8256150787143304532
951228315213074648263
101.024571297272162128157124
112.0481.146574570320262314250
124.0962.3061.1761.128632524637513
138.1924.6982.3502.3461.2801.0711.2851.062
1416.3849.5874.8484.7372.5592.2082.6092.211
1532.76819.4989.8599.6375.1784.5815.2554.484
1665.53639.37819.92519.45110.4409.23610.5319.171
17131.07279.51840.31439.20221.11618.63321.12318.646
18262.144160.76781.58379.18242.55437.80642.62037.787
19524.288323.689164.195159.49285.39376.48085.45876.358
201.048.576651.747330.245321.500171.627154.214171.484154.422
212.097.1521.311.143664.277646.864344.084311.171344.359311.529
224.194.3042.635.6061.334.3601.301.244690.413627.480689.465628.248
238.388.6085.294.4962.678.1492.616.3451.383.5261.264.0291.382.6941.264.247
2416.777.21610.635.2035.375.5085.259.6932.773.4952.543.1182.772.8932.545.697
2533.554.43221.352.00210.785.42710.566.5735.557.7865.118.4645.555.5735.120.179
2667.108.86442.856.30221.636.49521.219.80511.132.77910.297.06711.130.61510.295.841
27134.217.72885.996.40443.401.40642.594.99622.301.32120.701.95622.300.46420.692.663
28268.435.456172.512.60687.023.90185.488.70344.669.72541.593.69744.665.73641.583.448
29536.870.912345.996.598174.477.962171.518.63489.460.57883.549.18289.461.90383.524.935
301.073.741.824693.796.641349.760.510344.036.129179.169.333167.735.892179.150.436167.740.980
312.147.483.6481.390.963.006701.019.499689.943.505358.766.144336.713.725358.757.768336.725.369
324.294.967.2962.788.243.0791.404.842.8881.383.400.189718.373.937675.747.414718.376.512675.745.216
338.589.934.5925.588.339.7942.814.857.8482.773.481.9441.438.308.3791.355.844.7241.438.349.6131.355.837.078
3417.179.869.18411.198.868.7065.639.420.4205.559.448.2842.879.608.6232.719.839.6902.879.638.0972.719.782.296


8. Check for existing Integer Sequences by OEIS

Found in Database : 1, 3, 43, 73, 29, 41, 1187, 1, 13, 113, 673, 31, 2447, 37, 1, 97, 1109, 1, 3779, 167,
Found in Database : 3, 43, 73, 29, 41, 1187, 13, 113, 673, 31, 2447, 37, 97, 1109, 3779, 167, 157, 523, 103, 71, 1889, 739, 2053, 89, 6659, 2389, 197, 331, 283, 353, 971, 563,
Found in Database : 3, 13, 29, 31, 37, 41, 43, 71, 73, 83, 89, 97, 103, 109, 113, 127, 137,