Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:03:20
Deutsch
18.Apr 2024

Polynom = x^2+92x-181

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) = 181 = 181
f(1) = 11 = 11
f(2) = 7 = 7
f(3) = 13 = 13
f(4) = 203 = 7*29
f(5) = 19 = 19
f(6) = 407 = 11*37
f(7) = 1 = 1
f(8) = 619 = 619
f(9) = 91 = 7*13
f(10) = 839 = 839
f(11) = 119 = 7*17
f(12) = 1067 = 11*97
f(13) = 37 = 37
f(14) = 1303 = 1303
f(15) = 89 = 89
f(16) = 1547 = 7*13*17
f(17) = 209 = 11*19
f(18) = 1799 = 7*257
f(19) = 241 = 241
f(20) = 2059 = 29*71
f(21) = 137 = 137
f(22) = 2327 = 13*179
f(23) = 77 = 7*11
f(24) = 2603 = 19*137
f(25) = 343 = 7*7*7
f(26) = 2887 = 2887
f(27) = 379 = 379
f(28) = 3179 = 11*17*17
f(29) = 13 = 13
f(30) = 3479 = 7*7*71
f(31) = 227 = 227
f(32) = 3787 = 7*541
f(33) = 493 = 17*29
f(34) = 4103 = 11*373
f(35) = 533 = 13*41
f(36) = 4427 = 19*233
f(37) = 287 = 7*41
f(38) = 4759 = 4759
f(39) = 77 = 7*11
f(40) = 5099 = 5099
f(41) = 659 = 659
f(42) = 5447 = 13*419
f(43) = 703 = 19*37
f(44) = 5803 = 7*829
f(45) = 187 = 11*17
f(46) = 6167 = 7*881
f(47) = 397 = 397
f(48) = 6539 = 13*503
f(49) = 841 = 29*29
f(50) = 6919 = 11*17*37
f(51) = 889 = 7*127
f(52) = 7307 = 7307
f(53) = 469 = 7*67
f(54) = 7703 = 7703
f(55) = 247 = 13*19
f(56) = 8107 = 11*11*67
f(57) = 1039 = 1039
f(58) = 8519 = 7*1217
f(59) = 1091 = 1091
f(60) = 8939 = 7*1277
f(61) = 143 = 11*13
f(62) = 9367 = 17*19*29
f(63) = 599 = 599
f(64) = 9803 = 9803
f(65) = 1253 = 7*179
f(66) = 10247 = 10247
f(67) = 1309 = 7*11*17
f(68) = 10699 = 13*823
f(69) = 683 = 683
f(70) = 11159 = 11159
f(71) = 89 = 89
f(72) = 11627 = 7*11*151
f(73) = 1483 = 1483
f(74) = 12103 = 7*7*13*19
f(75) = 1543 = 1543
f(76) = 12587 = 41*307
f(77) = 401 = 401
f(78) = 13079 = 11*29*41
f(79) = 833 = 7*7*17
f(80) = 13579 = 37*367
f(81) = 1729 = 7*13*19
f(82) = 14087 = 14087
f(83) = 1793 = 11*163
f(84) = 14603 = 17*859
f(85) = 929 = 929
f(86) = 15127 = 7*2161
f(87) = 481 = 13*37
f(88) = 15659 = 7*2237
f(89) = 1991 = 11*181
f(90) = 16199 = 97*167
f(91) = 2059 = 29*71
f(92) = 16747 = 16747
f(93) = 133 = 7*19
f(94) = 17303 = 11*11*11*13
f(95) = 1099 = 7*157
f(96) = 17867 = 17*1051
f(97) = 2269 = 2269
f(98) = 18439 = 18439
f(99) = 2341 = 2341
f(100) = 19019 = 7*11*13*19

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+92x-181

f(0)=181
f(1)=11
f(2)=7
f(3)=13
f(4)=29
f(5)=19
f(6)=37
f(7)=1
f(8)=619
f(9)=1
f(10)=839
f(11)=17
f(12)=97
f(13)=1
f(14)=1303
f(15)=89
f(16)=1
f(17)=1
f(18)=257
f(19)=241
f(20)=71
f(21)=137
f(22)=179
f(23)=1
f(24)=1
f(25)=1
f(26)=2887
f(27)=379
f(28)=1
f(29)=1
f(30)=1
f(31)=227
f(32)=541
f(33)=1
f(34)=373
f(35)=41
f(36)=233
f(37)=1
f(38)=4759
f(39)=1
f(40)=5099
f(41)=659
f(42)=419
f(43)=1
f(44)=829
f(45)=1
f(46)=881
f(47)=397
f(48)=503
f(49)=1
f(50)=1
f(51)=127
f(52)=7307
f(53)=67
f(54)=7703
f(55)=1
f(56)=1
f(57)=1039
f(58)=1217
f(59)=1091
f(60)=1277
f(61)=1
f(62)=1
f(63)=599
f(64)=9803
f(65)=1
f(66)=10247
f(67)=1
f(68)=823
f(69)=683
f(70)=11159
f(71)=1
f(72)=151
f(73)=1483
f(74)=1
f(75)=1543
f(76)=307
f(77)=401
f(78)=1
f(79)=1
f(80)=367
f(81)=1
f(82)=14087
f(83)=163
f(84)=859
f(85)=929
f(86)=2161
f(87)=1
f(88)=2237
f(89)=1
f(90)=167
f(91)=1
f(92)=16747
f(93)=1
f(94)=1
f(95)=157
f(96)=1051
f(97)=2269
f(98)=18439
f(99)=2341

b) Substitution of the polynom
The polynom f(x)=x^2+92x-181 could be written as f(y)= y^2-2297 with x=y-46

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+46
f'(x)>2x+91

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

181, 11, 7, 13, 29, 19, 37, 1, 619, 1, 839, 17, 97, 1, 1303, 89, 1, 1, 257, 241, 71, 137, 179, 1, 1, 1, 2887, 379, 1, 1, 1, 227, 541, 1, 373, 41, 233, 1, 4759, 1, 5099, 659, 419, 1, 829, 1, 881, 397, 503, 1, 1, 127, 7307, 67, 7703, 1, 1, 1039, 1217, 1091, 1277, 1, 1, 599, 9803, 1, 10247, 1, 823, 683, 11159, 1, 151, 1483, 1, 1543, 307, 401, 1, 1, 367, 1, 14087, 163, 859, 929, 2161, 1, 2237, 1, 167, 1, 16747, 1, 1, 157, 1051, 2269, 18439, 2341, 1, 1, 2801, 311, 1, 1, 20807, 1, 21419, 1, 22039, 1, 1193, 1, 3329, 2953, 1, 1, 1447, 1, 1, 457, 2357, 1, 719, 421, 2099, 1, 571, 3541, 1, 191, 29387, 1, 30103, 1, 1063, 557, 1, 1, 32299, 1021, 4721, 2089, 439, 4273, 2659, 1, 35339, 1, 1901, 1, 1, 4663, 1019, 433, 5501, 1, 1, 1, 1, 1, 577, 739, 2459, 1, 3877, 673, 43499, 1, 6337, 509, 1, 1427, 46103, 2909, 2473, 1, 1, 863, 48779, 1, 4517, 1567, 7229, 491, 1, 1, 251, 827, 797, 1, 54347, 1, 1907, 1, 56267, 3547, 1, 1, 8317, 1, 59207, 1, 1, 271, 631, 1, 62219, 7841, 5749, 613, 9181, 4049, 1, 1, 66347, 643, 67399, 1213, 4027, 1, 277, 1, 5431, 8893, 1, 9029, 281, 4583, 5683, 1163, 1, 1, 76103, 1, 2663, 1, 617, 4933, 1, 10009, 1, 1, 1, 1, 1, 1, 7649, 1, 6563, 10739, 1, 1361, 1, 5519, 977, 1, 1, 1031, 1, 821, 92567, 1, 4937, 1, 5591, 11959, 13757, 1, 1, 1, 2671, 12433, 100103, 1, 709, 911, 102679, 3229, 103979, 1, 1, 1, 1, 1, 107927, 1, 6427, 1, 5821, 1987, 10177, 7039, 3907, 1, 16381, 14419, 1, 14591, 6907, 3691, 1, 1, 1693, 1, 121607, 15289, 9463, 1, 1, 3911, 17981, 15823, 1, 1231, 128747, 1, 130199, 1, 11969, 1, 1, 1, 1, 769, 19441, 1069, 1, 17291, 139079, 1, 140587, 1, 1, 8929, 1187, 18049, 1, 1, 1103, 1, 13477, 4657, 149803, 2689, 4091, 1, 152939, 1201, 809, 1, 1, 1783, 1733, 19813, 9371, 10007, 14629, 1, 12503, 2917, 907, 1, 15073, 1, 1259, 1, 1, 1931, 170759, 1, 172427, 1, 1153, 1, 4751, 22079, 9341, 22291, 1, 1, 25841, 1, 182603, 1, 1289, 3307, 2777, 1669, 11047, 1, 189547, 1831, 27329, 24023, 27581, 1, 194839, 941, 2027, 3527, 1061, 3559, 1, 12569, 1, 1, 2647, 1, 1013, 25819, 15959, 1, 1, 1877, 11113, 1, 212999, 1, 5807, 13487, 4423, 1, 1, 2111, 7603, 1, 222379, 997, 20389, 2011, 1, 28393, 228103, 1, 1933, 14437, 2549, 1, 1549, 1, 12413, 4229, 1, 1, 1, 1, 241739, 30341, 1, 1, 3191, 1, 13037, 1, 3517, 1, 1, 4513, 2851, 1, 255767, 1459, 2833, 32353, 5303, 32609, 1, 16433, 15527, 1, 266027, 1, 24373, 1979, 1, 1, 1, 1553, 2063, 34429, 276487, 34693, 1, 1, 1, 1, 6899, 35491, 1993, 35759, 1, 9007, 1117, 18149, 26497, 1, 293639, 1, 295819, 1, 1279, 1, 17659, 37663, 43201, 3449, 43517, 1, 23603, 1, 28097, 1, 311303, 1, 1, 1, 1511, 1, 6491, 2347, 1, 1, 8719, 1, 1, 1, 327179, 1, 17341, 1, 1291, 20809, 4339, 10477, 3697, 2221, 19927, 42491, 2819, 1, 1, 1, 345803, 3943, 1, 43669, 50077, 1, 50417, 1, 355307, 44563, 357703, 1, 1723, 1613, 1597, 1, 21467, 1237, 1, 46073, 7547, 23189, 2371, 1, 1, 1, 9199, 1, 1, 1, 382103, 1, 54941, 2837, 1, 48541, 389579, 1879, 392087, 1, 1, 7069, 397127, 2621, 1, 1, 57457, 1, 1, 50753, 1, 4643, 409867, 3671, 1, 1847, 1301, 4003, 2333, 52363, 60029, 1, 1, 2039, 425419, 1, 428039, 1, 1787, 1, 33331, 6791, 435947, 4969, 8951, 1, 1, 13831, 40357, 1637, 446603, 1, 449287, 1, 2417, 1, 454679, 14251, 1, 1, 65729, 1559, 462827, 7253, 5231, 1, 1, 8387, 1, 59053, 2267, 1747, 5237, 1867, 68477, 60091, 1, 3181, 11827, 1, 487703, 1, 7321, 3617, 17011, 1, 70877, 1, 1, 1, 501803, 62903, 3529, 1, 507499, 1, 26861, 1, 1, 64333, 4337, 64693, 1, 2957, 521879, 1, 1, 9397, 27773, 1, 530603, 1, 4201, 1, 6967, 3539, 1, 1, 41719, 1, 1, 2441, 32251, 9817, 42403, 1, 1, 1, 79601, 34919, 1, 1, 4111, 70589, 1753, 1, 51749, 1, 2521, 4219, 575303, 72103, 1, 18121, 6389, 36433, 1619, 6659, 587527, 1, 1, 1, 8861, 1, 596779, 2579, 1, 5783, 1, 4723, 14783, 1, 609227, 1, 1, 1, 8669, 38567, 1, 1, 6833, 2687, 1, 1, 628139, 1789, 48563, 5651, 1, 1, 57973, 1, 640907, 3089, 1, 1, 1, 81119, 650567, 6271, 38459, 1, 657047, 5881, 660299, 853, 51043, 7559, 95261, 1, 3301, 1, 1, 4441, 676679, 12113, 1823, 1, 5647, 1, 36137, 1, 98561, 1, 1, 1, 1, 21821, 699947, 1, 2539, 12589, 2861, 2767, 3797, 44483, 101917, 1, 7877, 1, 1, 45119, 723607, 1, 727019, 1, 42967, 1, 733867, 1, 1, 1, 1, 92809, 744199, 93241, 1, 6691, 3041, 3361, 1, 94543, 68917, 1, 8369, 11927, 109297, 4357, 1, 96293, 40637, 1, 775627, 1, 779159, 6101, 1, 1, 10211, 1, 6637, 1, 5791, 49697, 5573, 1, 800519, 14327, 804107, 1, 62131, 1, 115901, 1, 16631, 9281, 1, 1, 822167, 1, 2029, 14779, 1, 7993, 833099, 52183, 10867, 13103, 1, 1, 2239, 9613, 847787, 3793, 50087, 1, 1, 9739, 12097, 6329, 123229, 1, 11251, 2087, 870059, 108991, 1, 1, 79777, 1, 23819, 1, 21587, 10079, 1, 111341, 1, 1, 1, 1, 1, 1, 69539, 2311, 82529, 28429, 47981, 57097, 1, 8821, 11939, 115153, 923147, 1, 3607, 1, 930859, 16657, 1, 1, 14009, 1, 10357, 1, 135197, 1, 86389, 3217, 2531, 8537, 56359, 2143, 4603, 2939, 26107, 1, 1, 1, 139121, 1, 977803, 9421, 57751, 1, 1, 8819, 989719, 1, 6949, 1, 142529, 6577, 20443, 15683, 1, 62983, 5641, 1, 1013767, 1, 1, 4903, 6269, 1, 1, 11681, 147137, 9923, 1034027, 32377, 4967, 1, 1042187, 1, 1, 131041, 1, 65777, 1, 1, 11633, 1, 55933, 1, 1066859, 1, 36931, 1, 1075147, 1, 1, 135173, 14071, 1, 155377, 17027,

6. Sequence of the polynom (only primes)

181, 11, 7, 13, 29, 19, 37, 619, 839, 17, 97, 1303, 89, 257, 241, 71, 137, 179, 2887, 379, 227, 541, 373, 41, 233, 4759, 5099, 659, 419, 829, 881, 397, 503, 127, 7307, 67, 7703, 1039, 1217, 1091, 1277, 599, 9803, 10247, 823, 683, 11159, 151, 1483, 1543, 307, 401, 367, 14087, 163, 859, 929, 2161, 2237, 167, 16747, 157, 1051, 2269, 18439, 2341, 2801, 311, 20807, 21419, 22039, 1193, 3329, 2953, 1447, 457, 2357, 719, 421, 2099, 571, 3541, 191, 29387, 30103, 1063, 557, 32299, 1021, 4721, 2089, 439, 4273, 2659, 35339, 1901, 4663, 1019, 433, 5501, 577, 739, 2459, 3877, 673, 43499, 6337, 509, 1427, 46103, 2909, 2473, 863, 48779, 4517, 1567, 7229, 491, 251, 827, 797, 54347, 1907, 56267, 3547, 8317, 59207, 271, 631, 62219, 7841, 5749, 613, 9181, 4049, 66347, 643, 67399, 1213, 4027, 277, 5431, 8893, 9029, 281, 4583, 5683, 1163, 76103, 2663, 617, 4933, 10009, 7649, 6563, 10739, 1361, 5519, 977, 1031, 821, 92567, 4937, 5591, 11959, 13757, 2671, 12433, 100103, 709, 911, 102679, 3229, 103979, 107927, 6427, 5821, 1987, 10177, 7039, 3907, 16381, 14419, 14591, 6907, 3691, 1693, 121607, 15289, 9463, 3911, 17981, 15823, 1231, 128747, 130199, 11969, 769, 19441, 1069, 17291, 139079, 140587, 8929, 1187, 18049, 1103, 13477, 4657, 149803, 2689, 4091, 152939, 1201, 809, 1783, 1733, 19813, 9371, 10007, 14629, 12503, 2917, 907, 15073, 1259, 1931, 170759, 172427, 1153, 4751, 22079, 9341, 22291, 25841, 182603, 1289, 3307, 2777, 1669, 11047, 189547, 1831, 27329, 24023, 27581, 194839, 941, 2027, 3527, 1061, 3559, 12569, 2647, 1013, 25819, 15959, 1877, 11113, 212999, 5807, 13487, 4423, 2111, 7603, 222379, 997, 20389, 2011, 28393, 228103, 1933, 14437, 2549, 1549, 12413, 4229, 241739, 30341, 3191, 13037, 3517, 4513, 2851, 255767, 1459, 2833, 32353, 5303, 32609, 16433, 15527, 266027, 24373, 1979, 1553, 2063, 34429, 276487, 34693, 6899, 35491, 1993, 35759, 9007, 1117, 18149, 26497, 293639, 295819, 1279, 17659, 37663, 43201, 3449, 43517, 23603, 28097, 311303, 1511, 6491, 2347, 8719, 327179, 17341, 1291, 20809, 4339, 10477, 3697, 2221, 19927, 42491, 2819, 345803, 3943, 43669, 50077, 50417, 355307, 44563, 357703, 1723, 1613, 1597, 21467, 1237, 46073, 7547, 23189, 2371, 9199, 382103, 54941, 2837, 48541, 389579, 1879, 392087, 7069, 397127, 2621, 57457, 50753, 4643, 409867, 3671, 1847, 1301, 4003, 2333, 52363, 60029, 2039, 425419, 428039, 1787, 33331, 6791, 435947, 4969, 8951, 13831, 40357, 1637, 446603, 449287, 2417, 454679, 14251, 65729, 1559, 462827, 7253, 5231, 8387, 59053, 2267, 1747, 5237, 1867, 68477, 60091, 3181, 11827, 487703, 7321, 3617, 17011, 70877, 501803, 62903, 3529, 507499, 26861, 64333, 4337, 64693, 2957, 521879, 9397, 27773, 530603, 4201, 6967, 3539, 41719, 2441, 32251, 9817, 42403, 79601, 34919, 4111, 70589, 1753, 51749, 2521, 4219, 575303, 72103, 18121, 6389, 36433, 1619, 6659, 587527, 8861, 596779, 2579, 5783, 4723, 14783, 609227, 8669, 38567, 6833, 2687, 628139, 1789, 48563, 5651, 57973, 640907, 3089, 81119, 650567, 6271, 38459, 657047, 5881, 660299, 853, 51043, 7559, 95261, 3301, 4441, 676679, 12113, 1823, 5647, 36137, 98561, 21821, 699947, 2539, 12589, 2861, 2767, 3797, 44483, 101917, 7877, 45119, 723607, 727019, 42967, 733867, 92809, 744199, 93241, 6691, 3041, 3361, 94543, 68917, 8369, 11927, 109297, 4357, 96293, 40637, 775627, 779159, 6101, 10211, 6637, 5791, 49697, 5573, 800519, 14327, 804107, 62131, 115901, 16631, 9281, 822167, 2029, 14779, 7993, 833099, 52183, 10867, 13103, 2239, 9613, 847787, 3793, 50087, 9739, 12097, 6329, 123229, 11251, 2087, 870059, 108991, 79777, 23819, 21587, 10079, 111341, 69539, 2311, 82529, 28429, 47981, 57097, 8821, 11939, 115153, 923147, 3607, 930859, 16657, 14009, 10357, 135197, 86389, 3217, 2531, 8537, 56359, 2143, 4603, 2939, 26107, 139121, 977803, 9421, 57751, 8819, 989719, 6949, 142529, 6577, 20443, 15683, 62983, 5641, 1013767, 4903, 6269, 11681, 147137, 9923, 1034027, 32377, 4967, 1042187, 131041, 65777, 11633, 55933, 1066859, 36931, 1075147, 135173, 14071, 155377, 17027,

7. Distribution of the primes

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

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
21006036240.6000000.3600000.2400006.6666675.14285712.000000
31.0006022483540.6020000.2480000.35400010.0333346.88888914.750000
410.0006.2871.7234.5640.6287000.1723000.45640010.4435216.94758112.892655
5100.00064.22013.32950.8910.6422000.1332900.50891010.2147287.73592611.150526
61.000.000651.432108.110543.3220.6514320.1081100.54332210.1437568.11088610.676190
710.000.0006.576.192904.6155.671.5770.6576190.0904610.56715810.0949788.36754210.438703
8100.000.00066.222.4087.781.61958.440.7890.6622240.0778160.58440810.0700248.60213410.304152
91.000.000.000665.728.35368.302.688597.425.6650.6657280.0683030.59742610.0529178.77743910.222752
1010.000.000.0006.685.185.464608.575.6586.076.609.8060.6685190.0608580.60766110.0419118.90998210.171324


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
388621.0000000.7500000.2500001.6000001.5000002.000000
41612930.7500000.5625000.1875001.5000001.5000001.500000
532211470.6562500.4375000.2187501.7500001.5555562.333333
6644024160.6250000.3750000.2500001.9047621.7142862.285714
71287542330.5859380.3281250.2578121.8750001.7500002.062500
825614878700.5781250.3046880.2734381.9733331.8571432.121212
95123071411660.5996090.2753910.3242192.0743241.8076922.371428
101.0246162543620.6015620.2480470.3535162.0065151.8014182.180723
112.0481.2514697820.6108400.2290040.3818362.0308441.8464572.160221
124.0962.5528091.7430.6230470.1975100.4255372.0399681.7249472.228900
138.1925.1511.4483.7030.6287840.1767580.4520262.0184171.7898642.124498
1416.38410.3682.6517.7170.6328120.1618040.4710082.0128131.8308012.083986
1532.76820.8324.89215.9400.6357420.1492920.4864502.0092591.8453412.065570
1665.53641.9859.06832.9170.6406400.1383670.5022742.0154091.8536392.065057
17131.07284.37517.00367.3720.6437300.1297230.5140082.0096461.8750552.046724
18262.144169.56831.909137.6590.6468510.1217230.5251272.0096951.8766692.043267
19524.288340.42059.810280.6100.6493000.1140790.5352212.0075721.8743932.038443
201.048.576683.249112.934570.3150.6515970.1077020.5438952.0070771.8882132.032412
212.097.1521.370.792213.4821.157.3100.6536450.1017960.5518482.0062851.8903252.029247
224.194.3042.749.417404.5762.344.8410.6555120.0964580.5590542.0057141.8951292.026113
238.388.6085.512.667768.1804.744.4870.6571610.0915740.5655872.0050311.8987282.023373
2416.777.21611.052.8381.463.7189.589.1200.6588000.0872440.5715562.0049891.9054362.021108
2533.554.43222.152.5342.796.10119.356.4330.6601970.0833300.5768672.0042401.9102732.018583
2667.108.86444.393.8115.351.47439.042.3370.6615190.0797430.5817762.0040061.9139062.017021
27134.217.72888.947.97810.260.53478.687.4440.6627140.0764470.5862672.0036121.9173292.015439
28268.435.456178.194.40119.709.706158.484.6950.6638260.0734240.5904012.0033551.9209242.014104
29536.870.912356.940.90737.928.123319.012.7840.6648540.0706470.5942082.0030981.9243372.012893
301.073.741.824714.921.34173.061.372641.859.9690.6658220.0680440.5977792.0029121.9263112.012019
312.147.483.6481.431.770.202140.948.8081.290.821.3940.6667200.0656340.6010862.0026961.9291832.011064
324.294.967.2962.867.151.378272.269.9732.594.881.4050.6675610.0633930.6041682.0025221.9316942.010256
338.589.934.5925.741.085.259526.540.8715.214.544.3880.6683500.0612970.6070532.0023661.9338922.009550
3417.179.869.18411.494.952.0961.019.436.13010.475.515.9660.6690940.0593390.6097552.0022261.9361012.008904


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
123210111
244310121
386510321
4169631323
53214953524
66424121231038
7128422121614616
825678354313281225
9512141687324462051
101.02425411613839923588
112.0484692152547316562169
124.096809372437123278107301
138.1921.448657791206505195542
1416.3842.6511.1751.476366948364973
1532.7684.8922.1882.7046611.7666681.797
1665.5369.0684.0655.0031.2193.3001.2283.321
17131.07217.0037.6529.3512.2626.2022.2726.267
18262.14431.90914.40717.5024.24911.6724.26511.723
19524.28859.81026.93832.8727.96221.8327.92122.095
201.048.576112.93450.77662.15815.06141.32414.90041.649
212.097.152213.48295.668117.81428.24478.33328.13578.770
224.194.304404.576181.401223.17553.538148.89053.066149.082
238.388.608768.180344.696423.484101.123283.155100.565283.337
2416.777.2161.463.718656.861806.857191.859540.406191.137540.316
2533.554.4322.796.1011.253.8331.542.268365.6301.032.763365.2241.032.484
2667.108.8645.351.4742.399.5082.951.966699.1021.977.547697.3341.977.491
27134.217.72810.260.5344.599.2915.661.2431.337.5563.794.0821.335.4033.793.493
28268.435.45619.709.7068.831.66510.878.0412.563.3957.292.2032.561.1077.293.001
29536.870.91237.928.12316.989.55520.938.5684.924.24114.038.7204.922.81514.042.347
301.073.741.82473.061.37232.718.40740.342.9659.469.25927.060.2799.471.14527.060.689
312.147.483.648140.948.80863.095.94477.852.86418.244.03452.227.38318.247.22652.230.165
324.294.967.296272.269.973121.857.445150.412.52835.202.617100.927.37835.202.788100.937.190
338.589.934.592526.540.871235.610.389290.930.48267.995.439195.268.51468.006.612195.270.306
3417.179.869.1841.019.436.130456.079.708563.356.422131.522.535378.191.646131.520.354378.201.595


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
241010010
382110020
4163211020
5327342131
664166105263
712833161710788
825670353518172114
9512166838340375138
101.024362180182888810779
112.048782364418201186219176
124.0961.743839904463409465406
138.1923.7031.8191.884945894969895
1416.3847.7173.8223.8951.9441.8701.9961.907
1532.76815.9407.9078.0334.0963.8294.1143.901
1665.53632.91716.31216.6058.4747.9948.4807.969
17131.07267.37233.42733.94517.41416.42517.20116.332
18262.144137.65968.28669.37335.44333.44735.21933.550
19524.288280.610139.389141.22171.75068.51971.86668.475
201.048.576570.315283.490286.825145.714139.622145.446139.533
212.097.1521.157.310575.508581.802295.273283.196295.332283.509
224.194.3042.344.8411.167.0001.177.841597.700574.738596.988575.415
238.388.6084.744.4872.362.1532.382.3341.207.4131.164.9811.207.3241.164.769
2416.777.2169.589.1204.773.1444.815.9762.437.6432.356.6982.437.3552.357.424
2533.554.43219.356.4339.637.3009.719.1334.919.0774.761.2694.915.3014.760.786
2667.108.86439.042.33719.444.30219.598.0359.910.0989.610.9909.909.0499.612.200
27134.217.72878.687.44439.197.57039.489.87419.956.34219.386.02019.956.38519.388.697
28268.435.456158.484.69578.960.16279.524.53340.175.33339.069.94140.171.52839.067.893
29536.870.912319.012.784158.962.523160.050.26180.820.38378.694.91080.813.96478.683.527
301.073.741.824641.859.969319.875.475321.984.494162.517.714158.420.870162.510.869158.410.516
312.147.483.6481.290.821.394643.376.922647.444.472326.642.398318.770.136326.652.507318.756.353
324.294.967.2962.594.881.4051.293.515.8951.301.365.510656.315.056641.104.285656.352.920641.109.144
338.589.934.5925.214.544.3882.599.681.6122.614.862.7761.318.353.4741.288.895.2221.318.374.2491.288.921.443
3417.179.869.18410.475.515.9665.223.069.0145.252.446.9522.647.414.5822.590.369.1392.647.414.5512.590.317.694


8. Check for existing Integer Sequences by OEIS

Found in Database : 181, 11, 7, 13, 29, 19, 37, 1, 619, 1, 839, 17, 97, 1, 1303, 89, 1, 1, 257, 241,
Found in Database : 181, 11, 7, 13, 29, 19, 37, 619, 839, 17, 97, 1303, 89, 257, 241, 71, 137, 179, 2887, 379, 227, 541, 373, 41, 233, 4759,
Found in Database : 7, 11, 13, 17, 19, 29, 37, 41, 67, 71, 89, 97, 127, 137,