Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:06:19
Deutsch
19.Apr 2024

Polynom = x^2+11x-5

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) = 5 = 5
f(1) = 7 = 7
f(2) = 21 = 3*7
f(3) = 37 = 37
f(4) = 55 = 5*11
f(5) = 75 = 3*5*5
f(6) = 97 = 97
f(7) = 121 = 11*11
f(8) = 147 = 3*7*7
f(9) = 175 = 5*5*7
f(10) = 205 = 5*41
f(11) = 237 = 3*79
f(12) = 271 = 271
f(13) = 307 = 307
f(14) = 345 = 3*5*23
f(15) = 385 = 5*7*11
f(16) = 427 = 7*61
f(17) = 471 = 3*157
f(18) = 517 = 11*47
f(19) = 565 = 5*113
f(20) = 615 = 3*5*41
f(21) = 667 = 23*29
f(22) = 721 = 7*103
f(23) = 777 = 3*7*37
f(24) = 835 = 5*167
f(25) = 895 = 5*179
f(26) = 957 = 3*11*29
f(27) = 1021 = 1021
f(28) = 1087 = 1087
f(29) = 1155 = 3*5*7*11
f(30) = 1225 = 5*5*7*7
f(31) = 1297 = 1297
f(32) = 1371 = 3*457
f(33) = 1447 = 1447
f(34) = 1525 = 5*5*61
f(35) = 1605 = 3*5*107
f(36) = 1687 = 7*241
f(37) = 1771 = 7*11*23
f(38) = 1857 = 3*619
f(39) = 1945 = 5*389
f(40) = 2035 = 5*11*37
f(41) = 2127 = 3*709
f(42) = 2221 = 2221
f(43) = 2317 = 7*331
f(44) = 2415 = 3*5*7*23
f(45) = 2515 = 5*503
f(46) = 2617 = 2617
f(47) = 2721 = 3*907
f(48) = 2827 = 11*257
f(49) = 2935 = 5*587
f(50) = 3045 = 3*5*7*29
f(51) = 3157 = 7*11*41
f(52) = 3271 = 3271
f(53) = 3387 = 3*1129
f(54) = 3505 = 5*701
f(55) = 3625 = 5*5*5*29
f(56) = 3747 = 3*1249
f(57) = 3871 = 7*7*79
f(58) = 3997 = 7*571
f(59) = 4125 = 3*5*5*5*11
f(60) = 4255 = 5*23*37
f(61) = 4387 = 41*107
f(62) = 4521 = 3*11*137
f(63) = 4657 = 4657
f(64) = 4795 = 5*7*137
f(65) = 4935 = 3*5*7*47
f(66) = 5077 = 5077
f(67) = 5221 = 23*227
f(68) = 5367 = 3*1789
f(69) = 5515 = 5*1103
f(70) = 5665 = 5*11*103
f(71) = 5817 = 3*7*277
f(72) = 5971 = 7*853
f(73) = 6127 = 11*557
f(74) = 6285 = 3*5*419
f(75) = 6445 = 5*1289
f(76) = 6607 = 6607
f(77) = 6771 = 3*37*61
f(78) = 6937 = 7*991
f(79) = 7105 = 5*7*7*29
f(80) = 7275 = 3*5*5*97
f(81) = 7447 = 11*677
f(82) = 7621 = 7621
f(83) = 7797 = 3*23*113
f(84) = 7975 = 5*5*11*29
f(85) = 8155 = 5*7*233
f(86) = 8337 = 3*7*397
f(87) = 8521 = 8521
f(88) = 8707 = 8707
f(89) = 8895 = 3*5*593
f(90) = 9085 = 5*23*79
f(91) = 9277 = 9277
f(92) = 9471 = 3*7*11*41
f(93) = 9667 = 7*1381
f(94) = 9865 = 5*1973
f(95) = 10065 = 3*5*11*61
f(96) = 10267 = 10267
f(97) = 10471 = 37*283
f(98) = 10677 = 3*3559
f(99) = 10885 = 5*7*311
f(100) = 11095 = 5*7*317

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+11x-5

f(0)=5
f(1)=7
f(2)=3
f(3)=37
f(4)=11
f(5)=1
f(6)=97
f(7)=1
f(8)=1
f(9)=1
f(10)=41
f(11)=79
f(12)=271
f(13)=307
f(14)=23
f(15)=1
f(16)=61
f(17)=157
f(18)=47
f(19)=113
f(20)=1
f(21)=29
f(22)=103
f(23)=1
f(24)=167
f(25)=179
f(26)=1
f(27)=1021
f(28)=1087
f(29)=1
f(30)=1
f(31)=1297
f(32)=457
f(33)=1447
f(34)=1
f(35)=107
f(36)=241
f(37)=1
f(38)=619
f(39)=389
f(40)=1
f(41)=709
f(42)=2221
f(43)=331
f(44)=1
f(45)=503
f(46)=2617
f(47)=907
f(48)=257
f(49)=587
f(50)=1
f(51)=1
f(52)=3271
f(53)=1129
f(54)=701
f(55)=1
f(56)=1249
f(57)=1
f(58)=571
f(59)=1
f(60)=1
f(61)=1
f(62)=137
f(63)=4657
f(64)=1
f(65)=1
f(66)=5077
f(67)=227
f(68)=1789
f(69)=1103
f(70)=1
f(71)=277
f(72)=853
f(73)=557
f(74)=419
f(75)=1289
f(76)=6607
f(77)=1
f(78)=991
f(79)=1
f(80)=1
f(81)=677
f(82)=7621
f(83)=1
f(84)=1
f(85)=233
f(86)=397
f(87)=8521
f(88)=8707
f(89)=593
f(90)=1
f(91)=9277
f(92)=1
f(93)=1381
f(94)=1973
f(95)=1
f(96)=10267
f(97)=283
f(98)=3559
f(99)=311

b) Substitution of the polynom
The polynom f(x)=x^2+11x-5 could be written as f(y)= y^2-35.25 with x=y-5.5

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+5.5
f'(x)>2x+10

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

5, 7, 3, 37, 11, 1, 97, 1, 1, 1, 41, 79, 271, 307, 23, 1, 61, 157, 47, 113, 1, 29, 103, 1, 167, 179, 1, 1021, 1087, 1, 1, 1297, 457, 1447, 1, 107, 241, 1, 619, 389, 1, 709, 2221, 331, 1, 503, 2617, 907, 257, 587, 1, 1, 3271, 1129, 701, 1, 1249, 1, 571, 1, 1, 1, 137, 4657, 1, 1, 5077, 227, 1789, 1103, 1, 277, 853, 557, 419, 1289, 6607, 1, 991, 1, 1, 677, 7621, 1, 1, 233, 397, 8521, 8707, 593, 1, 9277, 1, 1381, 1973, 1, 10267, 283, 3559, 311, 317, 3769, 281, 1, 797, 487, 1, 601, 443, 523, 887, 13537, 293, 1, 1, 2897, 4909, 1361, 15217, 1031, 449, 2281, 5407, 16477, 3347, 1, 17257, 2503, 1, 1, 733, 6199, 1, 467, 1, 563, 1, 1, 337, 379, 1409, 3061, 1, 1, 4463, 4523, 7639, 2111, 3361, 1, 439, 661, 359, 25087, 5081, 1, 1, 26371, 809, 1, 5471, 839, 4003, 4051, 1913, 5807, 1013, 9907, 1, 1, 1, 1, 2861, 1, 1, 1, 1567, 1, 33637, 2267, 1, 34747, 509, 461, 1, 2417, 36637, 37021, 1, 7559, 1091, 1, 38971, 39367, 1, 1, 1, 1951, 1, 1, 1, 1, 3911, 14479, 1, 1, 1, 45121, 1231, 613, 9281, 6691, 2251, 4337, 9629, 1, 4457, 811, 2377, 1439, 10163, 743, 51721, 52177, 1, 1, 1093, 1637, 1, 1, 739, 55897, 8053, 2707, 2293, 1051, 19429, 58771, 5387, 569, 1721, 60727, 20407, 61717, 541, 1, 821, 9103, 1, 1, 13049, 953, 66271, 1, 641, 2713, 1667, 2087, 2393, 2797, 1, 10141, 1933, 24019, 14519, 14627, 599, 1, 971, 5021, 15173, 6947, 25657, 77527, 1, 1, 769, 1, 1, 1471, 3259, 3907, 1, 1, 1117, 16871, 1, 983, 12301, 2477, 1, 87877, 88471, 2699, 1, 2579, 4327, 1, 92077, 1, 1, 8537, 643, 13591, 1741, 1, 96997, 2381, 32749, 1, 2843, 1151, 9161, 4409, 6803, 1867, 1, 4951, 1, 1, 1, 1747, 1, 1, 1, 21839, 3329, 1399, 111187, 7457, 1, 1, 37957, 114547, 1, 7727, 1, 1523, 1, 1, 823, 40009, 120721, 5279, 1163, 1, 123517, 881, 1, 25127, 8423, 2593, 18253, 42829, 25841, 5197, 1, 131371, 1, 1, 26711, 134287, 45007, 135757, 27299, 1307, 857, 12611, 46489, 967, 1, 1, 20353, 1, 1, 28949, 1, 48757, 13367, 1, 1, 13577, 1, 1, 6067, 30491, 7297, 22003, 154807, 1, 31277, 157177, 4787, 1, 1, 10691, 161167, 161971, 1871, 32717, 1, 7867, 166021, 1, 11177, 1, 2143, 8101, 24421, 6871, 1, 15767, 7577, 58369, 1, 5051, 59209, 1, 179317, 12011, 883, 25981, 1, 183577, 36887, 1123, 186157, 6449, 1, 5393, 1, 63499, 6599, 17477, 1, 1, 2531, 65257, 196657, 39509, 13229, 4241, 28603, 1, 3673, 40583, 67939, 1, 205627, 1, 5927, 9059, 1, 210187, 42221, 1, 1049, 30553, 1, 8629, 43331, 1, 218521, 1, 2099, 44267, 1, 2011, 2311, 4093, 2153, 1, 1, 1, 1999, 1, 77269, 3023, 33391, 15647, 1, 10289, 1, 1, 1, 1, 241537, 242521, 1, 1, 1693, 1, 35353, 1, 16631, 50093, 251467, 3659, 1, 1, 17033, 1433, 1, 86179, 1, 1489, 12457, 262621, 263647, 3529, 4831, 1, 1, 3491, 1861, 18059, 271927, 272971, 1, 1, 1, 1, 4561, 1, 1699, 1, 40351, 1, 284587, 57131, 3823, 3643, 26261, 13807, 1663, 1, 97729, 2857, 295357, 19763, 8501, 1153, 99907, 1, 60383, 20201, 27647, 6229, 1, 61487, 2683, 1, 310771, 7607, 1, 1, 315247, 9587, 8581, 2549, 21317, 45841, 1, 107719, 1, 1, 4733, 327721, 4271, 1, 1, 332317, 3833, 14549, 67157, 3209, 4391, 11699, 3067, 6211, 13711, 114649, 1, 1, 1, 1, 349837, 1, 3631, 1, 1, 355777, 1, 119389, 1753, 1949, 1, 51853, 33107, 24359, 1, 1, 123007, 1, 10613, 4969, 12893, 375121, 1, 1373, 1, 18097, 1, 382507, 25583, 2081, 386227, 18451, 7933, 3391, 2371, 392467, 393721, 11969, 11321, 1, 2179, 1303, 401287, 1, 1, 5261, 1, 2441, 1487, 1, 1, 412771, 19717, 11867, 1, 139309, 1657, 5323, 1, 1, 60631, 141907, 3779, 85667, 28643, 430957, 1669, 1877, 86981, 17449, 13259, 1, 19139, 1, 12653, 444187, 1531, 1579, 1, 1, 1571, 1, 151189, 2459, 91253, 152539, 458971, 65761, 4397, 8419, 1, 1451, 42467, 93701, 1, 2927, 1, 157999, 3803, 1, 14489, 1, 1, 1, 96737, 1, 1, 16823, 1997, 4673, 492067, 1, 1, 99257, 9049, 23767, 71503, 4691, 1459, 1, 13681, 4127, 1, 2917, 34127, 2029, 2003, 172069, 103529, 14831, 3541, 1, 523417, 3181, 105263, 1697, 1, 1613, 106427, 35573, 14461, 23327, 1, 15413, 1, 180799, 543871, 4507, 1, 109661, 78541, 26251, 552757, 110849, 37049, 1, 558721, 1, 1, 112643, 6491, 4133, 1, 1, 1, 2819, 17387, 1, 115361, 1, 1979, 1, 1, 1, 117191, 1733, 589021, 1, 5639, 2423, 1, 1, 7573, 119963, 1, 86131, 86353, 8783, 11047, 4201, 203569, 55661, 87691, 5861, 1, 618547, 2131, 621697, 1, 1, 89491, 628021, 19079, 3079, 1, 2053, 12979, 91081, 42611, 128153, 2539, 214657, 645577, 1, 1, 8233, 4153, 9473, 4519, 1, 31357, 8573, 1, 1, 1, 666637, 1, 95701, 2741, 44879, 674827, 1, 20549, 1, 19469, 2957, 1, 2207, 45869, 1, 30059, 1, 99241, 1, 1, 699697, 63761, 8081, 4027, 20183, 1, 19183, 24533, 47543, 1, 2089, 1, 65447, 144323, 48221, 7039, 9199, 34687, 1, 146369, 22229, 735271, 736987, 1, 4231, 1, 247957, 1, 1, 49937, 750787, 1, 1, 3217, 1, 253159, 26249, 762967, 7283, 1, 1, 11159, 70157, 1, 51683, 10091, 111253, 260179, 1, 1, 6389, 787621, 112771, 1, 158591, 5801, 24137, 1, 160019, 1, 1, 805471, 269089, 1, 1, 9341, 1, 10601, 54539, 163979, 1, 1, 825337, 23633, 1, 75527, 832621, 278149, 3041, 167621, 1, 1, 843607, 1, 169457, 849127, 1, 5297, 24419, 1, 1, 20981, 2543, 172787, 1, 1, 869521, 2141, 58217, 7001, 1, 41851, 125821, 1, 58967, 886387, 888271, 296719, 1, 25541, 12983, 81611, 899617, 60101, 1, 1, 43201, 24571, 1, 1, 914857, 916771, 1, 1, 36901, 308149, 40277, 19751, 1, 26633, 1, 312007, 22877, 1, 1, 943777, 1, 45127, 1, 190313, 317839, 86861, 1, 9137, 1, 9931, 321757, 33353, 193841, 1, 139021, 139303, 1, 39163, 5303, 29789, 1, 20143, 9419, 198197, 3389, 5437, 996967, 1, 9533, 143281, 1, 3137, 201797,

6. Sequence of the polynom (only primes)

5, 7, 3, 37, 11, 97, 41, 79, 271, 307, 23, 61, 157, 47, 113, 29, 103, 167, 179, 1021, 1087, 1297, 457, 1447, 107, 241, 619, 389, 709, 2221, 331, 503, 2617, 907, 257, 587, 3271, 1129, 701, 1249, 571, 137, 4657, 5077, 227, 1789, 1103, 277, 853, 557, 419, 1289, 6607, 991, 677, 7621, 233, 397, 8521, 8707, 593, 9277, 1381, 1973, 10267, 283, 3559, 311, 317, 3769, 281, 797, 487, 601, 443, 523, 887, 13537, 293, 2897, 4909, 1361, 15217, 1031, 449, 2281, 5407, 16477, 3347, 17257, 2503, 733, 6199, 467, 563, 337, 379, 1409, 3061, 4463, 4523, 7639, 2111, 3361, 439, 661, 359, 25087, 5081, 26371, 809, 5471, 839, 4003, 4051, 1913, 5807, 1013, 9907, 2861, 1567, 33637, 2267, 34747, 509, 461, 2417, 36637, 37021, 7559, 1091, 38971, 39367, 1951, 3911, 14479, 45121, 1231, 613, 9281, 6691, 2251, 4337, 9629, 4457, 811, 2377, 1439, 10163, 743, 51721, 52177, 1093, 1637, 739, 55897, 8053, 2707, 2293, 1051, 19429, 58771, 5387, 569, 1721, 60727, 20407, 61717, 541, 821, 9103, 13049, 953, 66271, 641, 2713, 1667, 2087, 2393, 2797, 10141, 1933, 24019, 14519, 14627, 599, 971, 5021, 15173, 6947, 25657, 77527, 769, 1471, 3259, 3907, 1117, 16871, 983, 12301, 2477, 87877, 88471, 2699, 2579, 4327, 92077, 8537, 643, 13591, 1741, 96997, 2381, 32749, 2843, 1151, 9161, 4409, 6803, 1867, 4951, 1747, 21839, 3329, 1399, 111187, 7457, 37957, 114547, 7727, 1523, 823, 40009, 120721, 5279, 1163, 123517, 881, 25127, 8423, 2593, 18253, 42829, 25841, 5197, 131371, 26711, 134287, 45007, 135757, 27299, 1307, 857, 12611, 46489, 967, 20353, 28949, 48757, 13367, 13577, 6067, 30491, 7297, 22003, 154807, 31277, 157177, 4787, 10691, 161167, 161971, 1871, 32717, 7867, 166021, 11177, 2143, 8101, 24421, 6871, 15767, 7577, 58369, 5051, 59209, 179317, 12011, 883, 25981, 183577, 36887, 1123, 186157, 6449, 5393, 63499, 6599, 17477, 2531, 65257, 196657, 39509, 13229, 4241, 28603, 3673, 40583, 67939, 205627, 5927, 9059, 210187, 42221, 1049, 30553, 8629, 43331, 218521, 2099, 44267, 2011, 2311, 4093, 2153, 1999, 77269, 3023, 33391, 15647, 10289, 241537, 242521, 1693, 35353, 16631, 50093, 251467, 3659, 17033, 1433, 86179, 1489, 12457, 262621, 263647, 3529, 4831, 3491, 1861, 18059, 271927, 272971, 4561, 1699, 40351, 284587, 57131, 3823, 3643, 26261, 13807, 1663, 97729, 2857, 295357, 19763, 8501, 1153, 99907, 60383, 20201, 27647, 6229, 61487, 2683, 310771, 7607, 315247, 9587, 8581, 2549, 21317, 45841, 107719, 4733, 327721, 4271, 332317, 3833, 14549, 67157, 3209, 4391, 11699, 3067, 6211, 13711, 114649, 349837, 3631, 355777, 119389, 1753, 1949, 51853, 33107, 24359, 123007, 10613, 4969, 12893, 375121, 1373, 18097, 382507, 25583, 2081, 386227, 18451, 7933, 3391, 2371, 392467, 393721, 11969, 11321, 2179, 1303, 401287, 5261, 2441, 1487, 412771, 19717, 11867, 139309, 1657, 5323, 60631, 141907, 3779, 85667, 28643, 430957, 1669, 1877, 86981, 17449, 13259, 19139, 12653, 444187, 1531, 1579, 1571, 151189, 2459, 91253, 152539, 458971, 65761, 4397, 8419, 1451, 42467, 93701, 2927, 157999, 3803, 14489, 96737, 16823, 1997, 4673, 492067, 99257, 9049, 23767, 71503, 4691, 1459, 13681, 4127, 2917, 34127, 2029, 2003, 172069, 103529, 14831, 3541, 523417, 3181, 105263, 1697, 1613, 106427, 35573, 14461, 23327, 15413, 180799, 543871, 4507, 109661, 78541, 26251, 552757, 110849, 37049, 558721, 112643, 6491, 4133, 2819, 17387, 115361, 1979, 117191, 1733, 589021, 5639, 2423, 7573, 119963, 86131, 86353, 8783, 11047, 4201, 203569, 55661, 87691, 5861, 618547, 2131, 621697, 89491, 628021, 19079, 3079, 2053, 12979, 91081, 42611, 128153, 2539, 214657, 645577, 8233, 4153, 9473, 4519, 31357, 8573, 666637, 95701, 2741, 44879, 674827, 20549, 19469, 2957, 2207, 45869, 30059, 99241, 699697, 63761, 8081, 4027, 20183, 19183, 24533, 47543, 2089, 65447, 144323, 48221, 7039, 9199, 34687, 146369, 22229, 735271, 736987, 4231, 247957, 49937, 750787, 3217, 253159, 26249, 762967, 7283, 11159, 70157, 51683, 10091, 111253, 260179, 6389, 787621, 112771, 158591, 5801, 24137, 160019, 805471, 269089, 9341, 10601, 54539, 163979, 825337, 23633, 75527, 832621, 278149, 3041, 167621, 843607, 169457, 849127, 5297, 24419, 20981, 2543, 172787, 869521, 2141, 58217, 7001, 41851, 125821, 58967, 886387, 888271, 296719, 25541, 12983, 81611, 899617, 60101, 43201, 24571, 914857, 916771, 36901, 308149, 40277, 19751, 26633, 312007, 22877, 943777, 45127, 190313, 317839, 86861, 9137, 9931, 321757, 33353, 193841, 139021, 139303, 39163, 5303, 29789, 20143, 9419, 198197, 3389, 5437, 996967, 9533, 143281, 3137, 201797,

7. Distribution of the primes

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

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)
1107520.7000000.5000000.7000000.0000000.0000000.000000
21006723440.6700000.2300000.6700009.5714284.60000022.000000
31.0006791235560.6790000.1230000.67900010.1343285.34782612.636364
410.0006.8508426.0080.6850000.0842000.68500010.0883666.84552910.805756
5100.00068.7016.62262.0790.6870100.0662200.68701010.0293437.86460810.332723
61.000.000687.90354.107633.7960.6879030.0541070.68790310.0129998.17079410.209507
710.000.0006.883.590457.0596.426.5310.6883590.0457060.68835910.0066298.44731710.139747
8100.000.00068.881.4153.961.85564.919.5600.6888140.0396190.68881410.0066128.66814810.101805
91.000.000.000689.172.29134.963.728654.208.5630.6891720.0349640.68917210.0051998.82509010.077218
1010.000.000.0006.894.762.034312.914.7766.581.847.2580.6894760.0312910.68947610.0044108.94969710.060778


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
386510.7500000.6250000.1250001.2000001.2500001.000000
41611740.6875000.4375000.2500001.8333331.4000004.000000
5322111100.6562500.3437500.3125001.9090911.5714292.500000
6644116250.6406250.2500000.3906251.9523811.4545452.500000
71288927620.6953120.2109380.4843752.1707321.6875002.480000
8256175431320.6835940.1679690.5156251.9662921.5925932.129032
9512346722740.6757810.1406250.5351561.9771431.6744192.075758
101.0246951235720.6787110.1201170.5585942.0086711.7083332.087591
112.0481.4032231.1800.6850590.1088870.5761722.0187051.8130082.062937
124.0962.7943922.4020.6821290.0957030.5864261.9914471.7578482.035593
138.1925.6017184.8830.6837160.0876460.5960692.0046531.8316332.032889
1416.38411.2461.3299.9170.6864010.0811160.6052862.0078561.8509752.030924
1532.76822.4722.46120.0110.6857910.0751040.6106871.9982221.8517682.017848
1665.53644.9954.54840.4470.6865690.0693970.6171722.0022701.8480292.021238
17131.07290.0528.40881.6440.6870420.0641480.6228942.0013781.8487252.018543
18262.144180.24915.883164.3660.6875950.0605890.6270072.0016101.8890342.013204
19524.288360.65729.883330.7740.6878990.0569970.6309012.0008821.8814462.012424
201.048.576721.41556.468664.9470.6879950.0538520.6341432.0002801.8896362.010276
212.097.1521.443.027107.0081.336.0190.6880890.0510250.6370642.0002731.8950202.009211
224.194.3042.886.669203.6772.682.9920.6882360.0485600.6396752.0004261.9033812.008199
238.388.6085.774.161387.9105.386.2510.6883340.0462420.6420912.0002851.9045352.007554
2416.777.21611.550.928741.50910.809.4190.6884890.0441970.6442922.0004511.9115492.006854
2533.554.43223.105.8791.419.71921.686.1600.6886090.0423110.6462982.0003481.9146352.006228
2667.108.86446.222.0862.721.85943.500.2270.6887630.0405590.6482042.0004471.9171812.005898
27134.217.72892.459.1665.228.41687.230.7500.6888740.0389550.6499202.0003241.9208992.005294
28268.435.456184.944.89710.060.756174.884.1410.6889730.0374790.6514942.0002871.9242452.004845
29536.870.912369.944.29019.388.442350.555.8480.6890750.0361140.6529612.0002951.9271362.004503
301.073.741.824740.000.98637.408.412702.592.5740.6891800.0348390.6543402.0003041.9294182.004225
312.147.483.6481.480.206.26072.269.2271.407.937.0330.6892750.0336530.6556222.0002761.9318982.003917
324.294.967.2962.960.821.649139.786.5342.821.035.1150.6893700.0325470.6568232.0002771.9342472.003666
338.589.934.5925.922.385.898270.668.5585.651.717.3400.6894560.0315100.6579462.0002511.9362992.003420
3417.179.869.18411.846.218.562524.623.26211.321.595.3000.6895410.0305370.6590042.0002441.9382502.003213


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
123110021
244210031
385311031
4167511132
53211912153
664161414165
71282725183106
8256434111271410
95127270119142316
101.024123121133303327
112.048223221165525452
124.09639239019990100103
138.1927187161169178180191
1416.3841.3291.3271321348328332
1532.7682.4612.4591591636610624
1665.5364.5484.54611.1141.1421.1341.158
17131.0728.4088.40612.0542.0962.1322.126
18262.14415.88315.88113.9323.9754.0233.953
19524.28829.88329.88117.4497.5387.4487.448
201.048.57656.46856.466114.09414.23214.16913.973
212.097.152107.008107.006126.74826.85626.69926.705
224.194.304203.677203.675150.83150.98950.79451.063
238.388.608387.910387.908196.58497.03197.01297.283
2416.777.216741.509741.5071184.870185.631185.383185.625
2533.554.4321.419.7191.419.7171354.187355.450355.080355.002
2667.108.8642.721.8592.721.8571679.416681.050680.909680.484
27134.217.7285.228.4165.228.41411.306.8731.307.4191.306.8941.307.230
28268.435.45610.060.75610.060.75412.515.4352.515.3132.514.4352.515.573
29536.870.91219.388.44219.388.44014.846.7054.847.7854.847.2694.846.683
301.073.741.82437.408.41237.408.41019.354.2039.349.5879.350.9979.353.625
312.147.483.64872.269.22772.269.225118.069.51518.066.95318.063.56418.069.195
324.294.967.296139.786.534139.786.532134.948.83234.943.70034.943.43334.950.569
338.589.934.592270.668.558270.668.556167.669.61267.661.97367.659.60667.677.367
3417.179.869.184524.623.262524.623.2601131.159.992131.151.110131.148.653131.163.507


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
241010100
381010100
4164221111
53210553223
6642513128854
712862293318141713
8256132617135323332
951227412614871716468
101.024572250322140144153135
112.0481.180547633271304322283
124.0962.4021.1371.265575605619603
138.1924.8832.3342.5491.1931.2241.2381.228
1416.3849.9174.7925.1252.4432.4422.5092.523
1532.76820.0119.69210.3194.9064.9935.0255.087
1665.53640.44719.64520.8029.92910.15010.14810.220
17131.07281.64439.65741.98720.33720.41520.36520.527
18262.144164.36680.15984.20740.93441.19440.98041.258
19524.288330.774161.803168.97182.45882.88782.78182.648
201.048.576664.947325.582339.365165.840165.943166.487166.677
212.097.1521.336.019654.891681.128334.142333.640334.109334.128
224.194.3042.682.9921.317.4731.365.519670.761670.496671.177670.558
238.388.6085.386.2512.648.0942.738.1571.346.5121.346.8471.346.2851.346.607
2416.777.21610.809.4195.319.5435.489.8762.701.7082.702.4912.702.2942.702.926
2533.554.43221.686.16010.682.83011.003.3305.422.8495.419.6825.420.5685.423.061
2667.108.86443.500.22721.443.65922.056.56810.873.80310.876.61610.872.31610.877.492
27134.217.72887.230.75043.030.74644.200.00421.805.42121.811.00121.804.29321.810.035
28268.435.456174.884.14186.321.00588.563.13643.713.84243.723.74443.722.96843.723.587
29536.870.912350.555.848173.124.642177.431.20687.628.63887.641.88987.640.00387.645.318
301.073.741.824702.592.574347.164.094355.428.480175.635.781175.663.897175.639.332175.653.564
312.147.483.6481.407.937.033696.006.929711.930.104351.979.280351.999.559351.974.940351.983.254
324.294.967.2962.821.035.1151.395.186.7611.425.848.354705.255.057705.280.491705.234.063705.265.504
338.589.934.5925.651.717.3402.796.341.9452.855.375.3951.412.917.8271.412.947.6741.412.913.5951.412.938.244
3417.179.869.18411.321.595.3005.603.818.1475.717.777.1532.830.339.3942.830.419.3182.830.372.8222.830.463.766


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 7, 3, 37, 11, 1, 97, 1, 1, 1, 41, 79, 271, 307, 23, 1, 61, 157, 47, 113,
Found in Database : 5, 7, 3, 37, 11, 97, 41, 79, 271, 307, 23, 61, 157, 47, 113, 29, 103, 167, 179, 1021, 1087, 1297, 457, 1447, 107, 241, 619, 389,
Found in Database : 3, 5, 7, 11, 23, 29, 37, 41, 47, 61, 79, 97, 103, 107, 113, 137,