Inhaltsverzeichnis

Development of
Algorithmic Constructions

05:34:15
Deutsch
19.Apr 2024

Polynom = x^2+58x-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) = 7 = 7
f(2) = 117 = 3*3*13
f(3) = 45 = 3*3*5
f(4) = 245 = 5*7*7
f(5) = 39 = 3*13
f(6) = 381 = 3*127
f(7) = 113 = 113
f(8) = 525 = 3*5*5*7
f(9) = 75 = 3*5*5
f(10) = 677 = 677
f(11) = 189 = 3*3*3*7
f(12) = 837 = 3*3*3*31
f(13) = 115 = 5*23
f(14) = 1005 = 3*5*67
f(15) = 273 = 3*7*13
f(16) = 1181 = 1181
f(17) = 159 = 3*53
f(18) = 1365 = 3*5*7*13
f(19) = 365 = 5*73
f(20) = 1557 = 3*3*173
f(21) = 207 = 3*3*23
f(22) = 1757 = 7*251
f(23) = 465 = 3*5*31
f(24) = 1965 = 3*5*131
f(25) = 259 = 7*37
f(26) = 2181 = 3*727
f(27) = 573 = 3*191
f(28) = 2405 = 5*13*37
f(29) = 315 = 3*3*5*7
f(30) = 2637 = 3*3*293
f(31) = 689 = 13*53
f(32) = 2877 = 3*7*137
f(33) = 375 = 3*5*5*5
f(34) = 3125 = 5*5*5*5*5
f(35) = 813 = 3*271
f(36) = 3381 = 3*7*7*23
f(37) = 439 = 439
f(38) = 3645 = 3*3*3*3*3*3*5
f(39) = 945 = 3*3*3*5*7
f(40) = 3917 = 3917
f(41) = 507 = 3*13*13
f(42) = 4197 = 3*1399
f(43) = 1085 = 5*7*31
f(44) = 4485 = 3*5*13*23
f(45) = 579 = 3*193
f(46) = 4781 = 7*683
f(47) = 1233 = 3*3*137
f(48) = 5085 = 3*3*5*113
f(49) = 655 = 5*131
f(50) = 5397 = 3*7*257
f(51) = 1389 = 3*463
f(52) = 5717 = 5717
f(53) = 735 = 3*5*7*7
f(54) = 6045 = 3*5*13*31
f(55) = 1553 = 1553
f(56) = 6381 = 3*3*709
f(57) = 819 = 3*3*7*13
f(58) = 6725 = 5*5*269
f(59) = 1725 = 3*5*5*23
f(60) = 7077 = 3*7*337
f(61) = 907 = 907
f(62) = 7437 = 3*37*67
f(63) = 1905 = 3*5*127
f(64) = 7805 = 5*7*223
f(65) = 999 = 3*3*3*37
f(66) = 8181 = 3*3*3*3*101
f(67) = 2093 = 7*13*23
f(68) = 8565 = 3*5*571
f(69) = 1095 = 3*5*73
f(70) = 8957 = 13*13*53
f(71) = 2289 = 3*7*109
f(72) = 9357 = 3*3119
f(73) = 1195 = 5*239
f(74) = 9765 = 3*3*5*7*31
f(75) = 2493 = 3*3*277
f(76) = 10181 = 10181
f(77) = 1299 = 3*433
f(78) = 10605 = 3*5*7*101
f(79) = 2705 = 5*541
f(80) = 11037 = 3*13*283
f(81) = 1407 = 3*7*67
f(82) = 11477 = 23*499
f(83) = 2925 = 3*3*5*5*13
f(84) = 11925 = 3*3*5*5*53
f(85) = 1519 = 7*7*31
f(86) = 12381 = 3*4127
f(87) = 3153 = 3*1051
f(88) = 12845 = 5*7*367
f(89) = 1635 = 3*5*109
f(90) = 13317 = 3*23*193
f(91) = 3389 = 3389
f(92) = 13797 = 3*3*3*7*73
f(93) = 1755 = 3*3*3*5*13
f(94) = 14285 = 5*2857
f(95) = 3633 = 3*7*173
f(96) = 14781 = 3*13*379
f(97) = 1879 = 1879
f(98) = 15285 = 3*5*1019
f(99) = 3885 = 3*5*7*37
f(100) = 15797 = 15797

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+58x-3

f(0)=3
f(1)=7
f(2)=13
f(3)=5
f(4)=1
f(5)=1
f(6)=127
f(7)=113
f(8)=1
f(9)=1
f(10)=677
f(11)=1
f(12)=31
f(13)=23
f(14)=67
f(15)=1
f(16)=1181
f(17)=53
f(18)=1
f(19)=73
f(20)=173
f(21)=1
f(22)=251
f(23)=1
f(24)=131
f(25)=37
f(26)=727
f(27)=191
f(28)=1
f(29)=1
f(30)=293
f(31)=1
f(32)=137
f(33)=1
f(34)=1
f(35)=271
f(36)=1
f(37)=439
f(38)=1
f(39)=1
f(40)=3917
f(41)=1
f(42)=1399
f(43)=1
f(44)=1
f(45)=193
f(46)=683
f(47)=1
f(48)=1
f(49)=1
f(50)=257
f(51)=463
f(52)=5717
f(53)=1
f(54)=1
f(55)=1553
f(56)=709
f(57)=1
f(58)=269
f(59)=1
f(60)=337
f(61)=907
f(62)=1
f(63)=1
f(64)=223
f(65)=1
f(66)=101
f(67)=1
f(68)=571
f(69)=1
f(70)=1
f(71)=109
f(72)=3119
f(73)=239
f(74)=1
f(75)=277
f(76)=10181
f(77)=433
f(78)=1
f(79)=541
f(80)=283
f(81)=1
f(82)=499
f(83)=1
f(84)=1
f(85)=1
f(86)=4127
f(87)=1051
f(88)=367
f(89)=1
f(90)=1
f(91)=3389
f(92)=1
f(93)=1
f(94)=2857
f(95)=1
f(96)=379
f(97)=1879
f(98)=1019
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+58x-3 could be written as f(y)= y^2-844 with x=y-29

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+29
f'(x)>2x+57

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, 13, 5, 1, 1, 127, 113, 1, 1, 677, 1, 31, 23, 67, 1, 1181, 53, 1, 73, 173, 1, 251, 1, 131, 37, 727, 191, 1, 1, 293, 1, 137, 1, 1, 271, 1, 439, 1, 1, 3917, 1, 1399, 1, 1, 193, 683, 1, 1, 1, 257, 463, 5717, 1, 1, 1553, 709, 1, 269, 1, 337, 907, 1, 1, 223, 1, 101, 1, 571, 1, 1, 109, 3119, 239, 1, 277, 10181, 433, 1, 541, 283, 1, 499, 1, 1, 1, 4127, 1051, 367, 1, 1, 3389, 1, 1, 2857, 1, 379, 1879, 1019, 1, 15797, 1, 1, 829, 1123, 1, 1, 1471, 1, 1, 2053, 521, 19037, 1, 1307, 4973, 1, 853, 4153, 1, 1, 2707, 563, 1, 4513, 953, 7727, 839, 1, 1, 3491, 2063, 643, 1, 1, 167, 1, 1, 601, 1, 9239, 1, 389, 479, 1, 1, 1103, 1, 1, 1, 10399, 1, 10639, 1, 6529, 1, 3709, 4219, 1, 1, 34877, 1, 1697, 1801, 809, 1, 37181, 1, 2531, 1, 12919, 1, 5651, 1, 1, 10193, 1, 1733, 1, 1, 1, 5407, 211, 1, 1, 1873, 2161, 881, 3083, 1, 1, 1321, 5333, 1, 3259, 4111, 743, 1, 1, 2557, 1, 241, 52517, 883, 509, 1, 18127, 653, 2213, 1, 1, 2027, 19079, 1, 1663, 1, 19727, 7459, 1, 1, 2659, 1, 20719, 1, 4211, 1, 4937, 599, 1, 1, 22079, 5563, 1373, 1, 911, 2459, 593, 971, 1, 1, 769, 9007, 3457, 1, 14737, 1031, 1187, 1, 5059, 1, 2081, 281, 2003, 1, 587, 739, 11483, 3373, 1087, 821, 1, 3469, 6449, 1, 1889, 823, 1249, 1033, 1, 733, 4217, 719, 9973, 1, 1, 1, 30727, 1657, 1, 1567, 937, 1, 1, 1, 1, 4073, 751, 1, 1, 1, 11213, 1, 102197, 857, 6899, 3719, 659, 1, 1, 1, 11933, 1039, 1, 1823, 1693, 1, 1, 1, 1, 1, 114077, 1, 1, 2903, 1, 9791, 16883, 1, 2657, 859, 1753, 1, 3947, 1, 1, 15559, 1987, 1, 25321, 1061, 1, 32189, 43159, 1, 5237, 1, 4903, 2377, 8923, 2243, 1487, 5669, 45599, 1, 1, 1931, 1237, 1, 9419, 1, 47599, 1709, 1, 1, 1, 36653, 3779, 6173, 1, 1, 50159, 1, 1877, 1, 991, 919, 1, 38993, 1493, 1, 158357, 4421, 2539, 4019, 10771, 1933, 163181, 6833, 10987, 1, 18493, 1, 1847, 1, 1, 21319, 8161, 1, 1, 1, 1, 43889, 4523, 1, 35617, 1, 1223, 1, 1, 1013, 26171, 7669, 1163, 1327, 1, 1, 1, 1, 1, 1, 9137, 16063, 8419, 1621, 1861, 1583, 1, 1, 3061, 3331, 66919, 1, 1, 3391, 5839, 2851, 1, 2251, 1, 1741, 209837, 1, 1907, 1063, 1, 1, 215381, 9013, 2069, 10909, 73039, 1, 1, 1, 1, 1, 2417, 1447, 45337, 1, 3313, 57389, 3659, 1, 46489, 1, 11161, 1, 1, 1, 18329, 3323, 26693, 1723, 1, 10133, 34883, 20431, 16411, 1, 1, 1, 6761, 1, 16811, 1, 1, 1, 51241, 1429, 4099, 1409, 1, 1, 1499, 10973, 6779, 9479, 1, 1, 268517, 3209, 90199, 6791, 1, 22811, 1, 1277, 1, 1069, 1, 1667, 281117, 4703, 1, 5077, 1, 1, 1, 1, 1, 72689, 1, 2441, 1, 1171, 32909, 37159, 19891, 1, 300557, 12569, 1109, 15193, 1, 1, 6269, 1117, 20627, 1, 1423, 1, 1, 1, 1, 6101, 15161, 13313, 4933, 1, 15377, 40507, 1571, 1, 65497, 13693, 2971, 1, 1, 2777, 1, 1, 4157, 8447, 3229, 28351, 1, 2039, 4583, 3449, 38453, 1, 348437, 5827, 1, 1913, 117727, 29531, 10159, 1, 1283, 1, 1, 1, 5581, 619, 121727, 1, 1, 1, 1, 1, 17737, 1, 4999, 2239, 1579, 1, 1, 1361, 9803, 31963, 7853, 3217, 25819, 1, 1, 5431, 1, 1, 1, 1597, 132439, 1, 1, 1, 2129, 100913, 5399, 1, 58211, 1481, 4409, 1, 1, 11497, 1, 1, 27851, 1, 1, 17569, 1, 2357, 1, 53359, 10979, 5113, 86161, 1, 144479, 15527, 1, 1, 1, 36671, 1, 55339, 4229, 1, 446717, 1, 1, 1, 30139, 2699, 1607, 38011, 4357, 11471, 51133, 12821, 5087, 1, 1, 1, 156127, 1, 3769, 1, 17551, 59407, 22697, 1, 95881, 1, 22961, 2281, 1, 1, 487757, 40763, 1619, 1, 1, 41231, 1, 6911, 1, 1, 1, 1613, 504677, 1, 1, 1, 6301, 1, 4463, 4289, 3511, 1, 172999, 4337, 1, 14537, 58309, 9397, 1, 8819, 530597, 3167, 177839, 1, 1, 1, 10177, 3467, 1, 2719, 181759, 1, 3169, 1, 1, 19739, 184727, 1, 15919, 9311, 1, 70207, 1, 3137, 113233, 1, 1, 142673, 1, 1, 44249, 1, 1, 1, 1, 48571, 2693, 24413, 39163, 1, 21871, 2741, 593597, 1, 39779, 74779, 1, 50111, 120577, 1, 9619, 2267, 203039, 1, 122449, 51151, 1, 1, 2749, 1, 88811, 25969, 208279, 31321, 5981, 1, 631181, 1, 1, 1, 1, 1, 2143, 1, 6133, 1, 71909, 9011, 18583, 10867, 9473, 11701, 16843, 1, 5281, 1, 73709, 1, 1, 5569, 2803, 1, 32057, 16871, 5011, 1, 679781, 28393, 1, 1, 228799, 28669, 2663, 1, 15401, 2347, 33161, 58171, 2153, 1, 1789, 13553, 1, 1, 141961, 1, 33961, 1, 1, 11971, 2099, 1, 1, 5179, 3727, 1, 1, 8713, 48907, 1, 11699, 20521, 740477, 1, 1, 1, 249127, 1, 150169, 1, 83813, 1, 6827, 12659, 21751, 31793, 254927, 14741, 1, 1, 59369, 9209, 2371, 19427, 1, 9293, 782381, 10891, 1, 7877, 1, 32969, 1, 1, 2309, 1, 1, 22277, 160753, 1, 1, 202289, 1, 1, 1, 7559, 1, 102499, 54787, 1, 26627, 34469, 276359, 1, 3701, 1, 1, 3037, 56003, 1, 40177, 2273, 1, 1, 18913, 1, 284927, 5099, 171697, 1, 41057, 108007, 2467, 1, 24847, 36313, 1, 31259, 2339, 1, 38299, 1, 7561, 1, 8461, 1, 24113, 37253, 1, 44893, 1, 1, 29147, 15091, 1, 1, 303727, 76091, 2011, 1, 34031, 230189, 1, 1, 37061, 1, 310127, 116539, 1, 1, 938117, 1, 1, 1, 63059, 1, 1, 26437, 21193, 3413, 8627, 6151, 1, 1, 4951, 1, 1, 1, 38933, 3251, 1, 1, 327079, 2341, 1, 13711, 1, 1, 1, 8293, 1, 1, 333719, 1, 3191, 1, 6043, 1, 67547, 2207, 26083, 6067, 5347, 1, 1, 2423, 343127, 1, 29527, 8629, 1, 1, 115733, 1, 1, 12473, 349927, 131479, 10037, 17599,

6. Sequence of the polynom (only primes)

3, 7, 13, 5, 127, 113, 677, 31, 23, 67, 1181, 53, 73, 173, 251, 131, 37, 727, 191, 293, 137, 271, 439, 3917, 1399, 193, 683, 257, 463, 5717, 1553, 709, 269, 337, 907, 223, 101, 571, 109, 3119, 239, 277, 10181, 433, 541, 283, 499, 4127, 1051, 367, 3389, 2857, 379, 1879, 1019, 15797, 829, 1123, 1471, 2053, 521, 19037, 1307, 4973, 853, 4153, 2707, 563, 4513, 953, 7727, 839, 3491, 2063, 643, 167, 601, 9239, 389, 479, 1103, 10399, 10639, 6529, 3709, 4219, 34877, 1697, 1801, 809, 37181, 2531, 12919, 5651, 10193, 1733, 5407, 211, 1873, 2161, 881, 3083, 1321, 5333, 3259, 4111, 743, 2557, 241, 52517, 883, 509, 18127, 653, 2213, 2027, 19079, 1663, 19727, 7459, 2659, 20719, 4211, 4937, 599, 22079, 5563, 1373, 911, 2459, 593, 971, 769, 9007, 3457, 14737, 1031, 1187, 5059, 2081, 281, 2003, 587, 739, 11483, 3373, 1087, 821, 3469, 6449, 1889, 823, 1249, 1033, 733, 4217, 719, 9973, 30727, 1657, 1567, 937, 4073, 751, 11213, 102197, 857, 6899, 3719, 659, 11933, 1039, 1823, 1693, 114077, 2903, 9791, 16883, 2657, 859, 1753, 3947, 15559, 1987, 25321, 1061, 32189, 43159, 5237, 4903, 2377, 8923, 2243, 1487, 5669, 45599, 1931, 1237, 9419, 47599, 1709, 36653, 3779, 6173, 50159, 1877, 991, 919, 38993, 1493, 158357, 4421, 2539, 4019, 10771, 1933, 163181, 6833, 10987, 18493, 1847, 21319, 8161, 43889, 4523, 35617, 1223, 1013, 26171, 7669, 1163, 1327, 9137, 16063, 8419, 1621, 1861, 1583, 3061, 3331, 66919, 3391, 5839, 2851, 2251, 1741, 209837, 1907, 1063, 215381, 9013, 2069, 10909, 73039, 2417, 1447, 45337, 3313, 57389, 3659, 46489, 11161, 18329, 3323, 26693, 1723, 10133, 34883, 20431, 16411, 6761, 16811, 51241, 1429, 4099, 1409, 1499, 10973, 6779, 9479, 268517, 3209, 90199, 6791, 22811, 1277, 1069, 1667, 281117, 4703, 5077, 72689, 2441, 1171, 32909, 37159, 19891, 300557, 12569, 1109, 15193, 6269, 1117, 20627, 1423, 6101, 15161, 13313, 4933, 15377, 40507, 1571, 65497, 13693, 2971, 2777, 4157, 8447, 3229, 28351, 2039, 4583, 3449, 38453, 348437, 5827, 1913, 117727, 29531, 10159, 1283, 5581, 619, 121727, 17737, 4999, 2239, 1579, 1361, 9803, 31963, 7853, 3217, 25819, 5431, 1597, 132439, 2129, 100913, 5399, 58211, 1481, 4409, 11497, 27851, 17569, 2357, 53359, 10979, 5113, 86161, 144479, 15527, 36671, 55339, 4229, 446717, 30139, 2699, 1607, 38011, 4357, 11471, 51133, 12821, 5087, 156127, 3769, 17551, 59407, 22697, 95881, 22961, 2281, 487757, 40763, 1619, 41231, 6911, 1613, 504677, 6301, 4463, 4289, 3511, 172999, 4337, 14537, 58309, 9397, 8819, 530597, 3167, 177839, 10177, 3467, 2719, 181759, 3169, 19739, 184727, 15919, 9311, 70207, 3137, 113233, 142673, 44249, 48571, 2693, 24413, 39163, 21871, 2741, 593597, 39779, 74779, 50111, 120577, 9619, 2267, 203039, 122449, 51151, 2749, 88811, 25969, 208279, 31321, 5981, 631181, 2143, 6133, 71909, 9011, 18583, 10867, 9473, 11701, 16843, 5281, 73709, 5569, 2803, 32057, 16871, 5011, 679781, 28393, 228799, 28669, 2663, 15401, 2347, 33161, 58171, 2153, 1789, 13553, 141961, 33961, 11971, 2099, 5179, 3727, 8713, 48907, 11699, 20521, 740477, 249127, 150169, 83813, 6827, 12659, 21751, 31793, 254927, 14741, 59369, 9209, 2371, 19427, 9293, 782381, 10891, 7877, 32969, 2309, 22277, 160753, 202289, 7559, 102499, 54787, 26627, 34469, 276359, 3701, 3037, 56003, 40177, 2273, 18913, 284927, 5099, 171697, 41057, 108007, 2467, 24847, 36313, 31259, 2339, 38299, 7561, 8461, 24113, 37253, 44893, 29147, 15091, 303727, 76091, 2011, 34031, 230189, 37061, 310127, 116539, 938117, 63059, 26437, 21193, 3413, 8627, 6151, 4951, 38933, 3251, 327079, 2341, 13711, 8293, 333719, 3191, 6043, 67547, 2207, 26083, 6067, 5347, 2423, 343127, 29527, 8629, 115733, 12473, 349927, 131479, 10037, 17599,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+58x-3 and
the reducible primes which appear as divisor for the first time
p | x^2+58x-3 and p < x^2+58x-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)
1106420.6000000.4000000.2000000.0000000.0000000.000000
21005114370.5100000.1400000.3700008.5000003.50000018.500000
31.000563684950.5630000.0680000.49500011.0392164.85714313.378378
410.0005.9985145.4840.5998000.0514000.54840010.6536417.55882411.078788
5100.00061.9533.76058.1930.6195300.0376000.58193010.3289437.31517510.611415
61.000.000632.71330.261602.4520.6327130.0302610.60245210.2127908.04813910.352654
710.000.0006.416.386253.3786.163.0080.6416390.0253380.61630110.1410688.37308810.229874
8100.000.00064.827.6542.186.86462.640.7900.6482770.0218690.62640810.1034548.63083610.163997
91.000.000.000653.377.66319.230.168634.147.4950.6533780.0192300.63414810.0786878.79349010.123555
1010.000.000.0006.574.266.035171.699.0116.402.567.0240.6574270.0171700.64025710.0619698.92862810.096337


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
243210.7500000.5000000.2500001.0000001.0000001.000000
385320.6250000.3750000.2500001.6666671.5000002.000000
4169540.5625000.3125000.2500001.8000001.6666672.000000
532185130.5625000.1562500.4062502.0000001.0000003.250000
6643310230.5156250.1562500.3593751.8333332.0000001.769231
71286717500.5234380.1328120.3906252.0303031.7000002.173913
8256136251110.5312500.0976560.4335942.0298511.4705882.220000
9512283412420.5527340.0800780.4726562.0808821.6400002.180180
101.024580695110.5664060.0673830.4990232.0494701.6829272.111570
112.0481.1741291.0450.5732420.0629880.5102542.0241381.8695652.045010
124.0962.3872342.1530.5827640.0571290.5256352.0332201.8139542.060287
138.1924.8934274.4660.5972900.0521240.5451662.0498531.8247862.074315
1416.3849.9327689.1640.6062010.0468750.5593262.0298391.7985952.051948
1532.76820.0601.38818.6720.6121830.0423580.5698242.0197341.8072922.037538
1665.53640.4362.58037.8560.6170040.0393680.5776372.0157531.8587902.027421
17131.07281.4174.78676.6310.6211620.0365140.5846482.0134781.8550392.024276
18262.144164.0458.972155.0730.6257820.0342250.5915572.0148741.8746342.023633
19524.288330.10216.687313.4150.6296200.0318280.5977922.0122651.8598972.021080
201.048.576663.64731.585632.0620.6329030.0301220.6027812.0104301.8927912.016694
212.097.1521.333.72959.7341.273.9950.6359720.0284830.6074882.0096961.8912142.015617
224.194.3042.678.716113.2252.565.4910.6386560.0269950.6116612.0084411.8954872.013737
238.388.6085.377.413215.2795.162.1340.6410380.0256630.6153742.0074591.9013382.012143
2416.777.21610.793.755410.26510.383.4900.6433580.0244540.6189042.0072391.9057362.011472
2533.554.43221.655.208784.56220.870.6460.6453750.0233820.6219942.0062721.9123302.009984
2667.108.86443.436.7431.502.97841.933.7650.6472580.0223960.6248622.0058341.9156912.009222
27134.217.72887.108.2272.884.92184.223.3060.6490070.0214940.6275132.0054041.9194702.008484
28268.435.456174.652.8335.542.525169.110.3080.6506330.0206480.6299852.0050101.9212052.007880
29536.870.912350.109.12410.671.743339.437.3810.6521290.0198780.6322512.0046001.9254302.007195
301.073.741.824701.708.31020.570.819681.137.4910.6535170.0191580.6343592.0042561.9275972.006666
312.147.483.6481.406.216.44939.710.4411.366.506.0080.6548210.0184920.6363292.0039901.9304262.006212
324.294.967.2962.817.674.75576.767.0982.740.907.6570.6560410.0178740.6381672.0037281.9331722.005778
338.589.934.5925.645.182.951148.546.8745.496.636.0770.6571860.0172930.6398932.0034901.9350332.005407
3417.179.869.18411.308.859.185287.706.42211.021.152.7630.6582620.0167470.6415152.0032761.9368062.005072
3534.359.738.36822.652.576.173557.847.06522.094.729.1080.6592770.0162350.6430412.0030821.9389452.004757
3668.719.476.73645.370.928.4221.082.644.78244.288.283.6400.6602340.0157550.6444792.0029041.9407552.004473


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
122100101
242100101
383111101
4165131121
5325131121
66410362242
7128175112393
82562591535125
951241112965237
101.0246923459113613
112.048129389019187121
124.09623461172362713635
138.192427112314615625357
1416.38476820156610410746295
1532.7681.388398989177198812201
1665.5362.5807231.8563303631.526361
17131.0724.7861.3033.4826136502.869654
18262.1448.9722.3676.6041.1431.1845.4611.184
19524.28816.6874.47412.2122.1332.25610.0792.219
201.048.57631.5858.33323.2514.0324.21019.2194.124
212.097.15259.73415.70544.0287.5597.89636.4697.810
224.194.304113.22529.61783.60714.39614.79769.21114.821
238.388.608215.27956.148159.13027.27828.035131.85228.114
2416.777.216410.265106.722303.54252.07153.285251.47153.438
2533.554.432784.562203.556581.00599.785101.600481.220101.957
2667.108.8641.502.978389.6461.113.331190.948194.910922.383194.737
27134.217.7282.884.921746.8172.138.103365.897373.3971.772.206373.421
28268.435.4565.542.5251.433.6354.108.889702.283717.1233.406.606716.513
29536.870.91210.671.7432.756.5707.915.1721.351.7281.378.7636.563.4441.377.808
301.073.741.82420.570.8195.306.84015.263.9782.604.3122.653.61712.659.6662.653.224
312.147.483.64839.710.44110.232.70329.477.7375.026.0175.118.35624.451.7205.114.348
324.294.967.29676.767.09819.765.12057.001.9779.712.7359.884.20247.289.2429.880.919
338.589.934.592148.546.87438.209.132110.337.74118.782.89419.105.79891.554.84719.103.335
3417.179.869.184287.706.42273.928.993213.777.42836.365.53836.962.894177.411.89036.966.100
3534.359.738.368557.847.065143.222.749414.624.31570.505.36171.612.821344.118.95471.609.929
3668.719.476.7361.082.644.782277.738.073804.906.708136.798.220138.874.857668.108.488138.863.217


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
121100010
241100010
382200011
4164400112
53213672344
6642313105468
712850302011131115
8256111555626322033
951224212112153665568
101.024511248263124136112139
112.0481.045518527263260230292
124.0962.1531.0541.099539564463587
138.1924.4662.2442.2221.1281.1271.0341.177
1416.3849.1644.5944.5702.3122.3542.1262.372
1532.76818.6729.3449.3284.7184.7924.2504.912
1665.53637.85618.92918.9279.5479.6428.7339.934
17131.07276.63138.36738.26419.34419.36717.74520.175
18262.144155.07377.81277.26139.00439.29236.20540.572
19524.288313.415157.015156.40078.79779.11973.50181.998
201.048.576632.062316.856315.206158.575159.401149.333164.753
212.097.1521.273.995637.994636.001320.108321.064301.937330.886
224.194.3042.565.4911.284.4741.281.017644.224646.265609.895665.107
238.388.6085.162.1342.584.1892.577.9451.295.6371.298.9381.230.5141.337.045
2416.777.21610.383.4905.198.5145.184.9762.605.7852.610.9302.482.7112.684.064
2533.554.43220.870.64610.450.71510.419.9315.240.6805.242.8694.999.7655.387.332
2667.108.86441.933.76520.999.60120.934.16410.528.37310.529.38610.065.57410.810.432
27134.217.72884.223.30642.167.03142.056.27521.142.51321.147.50820.252.65621.680.629
28268.435.456169.110.30884.664.71784.445.59142.446.94142.453.11740.730.32743.479.923
29536.870.912339.437.381169.945.661169.491.72085.187.85685.189.42481.880.49487.179.607
301.073.741.824681.137.491341.020.042340.117.449170.914.051170.913.908164.527.394174.782.138
312.147.483.6481.366.506.008684.111.001682.395.007342.835.908342.868.114330.524.990350.276.996
324.294.967.2962.740.907.6571.372.097.8441.368.809.813687.539.417687.620.166663.809.569701.938.505
338.589.934.5925.496.636.0772.751.449.3092.745.186.7681.378.646.3401.378.769.9811.332.737.3431.406.482.413
3417.179.869.18411.021.152.7635.516.675.1495.504.477.6142.763.951.3132.764.177.4822.674.998.9172.818.025.051
3534.359.738.36822.094.729.10811.059.265.97211.035.463.1365.540.433.1045.540.916.1925.368.032.7065.645.347.106
3668.719.476.73644.288.283.64022.167.135.98322.121.147.65711.104.644.59211.105.385.95510.769.966.67911.308.286.414


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 7, 13, 5, 1, 1, 127, 113, 1, 1, 677, 1, 31, 23, 67, 1, 1181, 53, 1, 73,
Found in Database : 3, 7, 13, 5, 127, 113, 677, 31, 23, 67, 1181, 53, 73, 173, 251, 131, 37, 727, 191, 293, 137, 271, 439,
Found in Database : 3, 5, 7, 13, 23, 31, 37, 53, 67, 73, 101, 109, 113, 127, 131, 137,