Inhaltsverzeichnis

Development of
Algorithmic Constructions

12:38:31
Deutsch
19.Apr 2024

Polynom = x^2+8x+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) = 7 = 7
f(2) = 67 = 67
f(3) = 5 = 5
f(4) = 95 = 5*19
f(5) = 7 = 7
f(6) = 131 = 131
f(7) = 19 = 19
f(8) = 175 = 5*5*7
f(9) = 25 = 5*5
f(10) = 227 = 227
f(11) = 1 = 1
f(12) = 287 = 7*41
f(13) = 5 = 5
f(14) = 355 = 5*71
f(15) = 49 = 7*7
f(16) = 431 = 431
f(17) = 59 = 59
f(18) = 515 = 5*103
f(19) = 35 = 5*7
f(20) = 607 = 607
f(21) = 41 = 41
f(22) = 707 = 7*101
f(23) = 95 = 5*19
f(24) = 815 = 5*163
f(25) = 109 = 109
f(26) = 931 = 7*7*19
f(27) = 31 = 31
f(28) = 1055 = 5*211
f(29) = 35 = 5*7
f(30) = 1187 = 1187
f(31) = 157 = 157
f(32) = 1327 = 1327
f(33) = 175 = 5*5*7
f(34) = 1475 = 5*5*59
f(35) = 97 = 97
f(36) = 1631 = 7*233
f(37) = 107 = 107
f(38) = 1795 = 5*359
f(39) = 235 = 5*47
f(40) = 1967 = 7*281
f(41) = 257 = 257
f(42) = 2147 = 19*113
f(43) = 35 = 5*7
f(44) = 2335 = 5*467
f(45) = 19 = 19
f(46) = 2531 = 2531
f(47) = 329 = 7*47
f(48) = 2735 = 5*547
f(49) = 355 = 5*71
f(50) = 2947 = 7*421
f(51) = 191 = 191
f(52) = 3167 = 3167
f(53) = 205 = 5*41
f(54) = 3395 = 5*7*97
f(55) = 439 = 439
f(56) = 3631 = 3631
f(57) = 469 = 7*67
f(58) = 3875 = 5*5*5*31
f(59) = 125 = 5*5*5
f(60) = 4127 = 4127
f(61) = 133 = 7*19
f(62) = 4387 = 41*107
f(63) = 565 = 5*113
f(64) = 4655 = 5*7*7*19
f(65) = 599 = 599
f(66) = 4931 = 4931
f(67) = 317 = 317
f(68) = 5215 = 5*7*149
f(69) = 335 = 5*67
f(70) = 5507 = 5507
f(71) = 707 = 7*101
f(72) = 5807 = 5807
f(73) = 745 = 5*149
f(74) = 6115 = 5*1223
f(75) = 49 = 7*7
f(76) = 6431 = 59*109
f(77) = 103 = 103
f(78) = 6755 = 5*7*193
f(79) = 865 = 5*173
f(80) = 7087 = 19*373
f(81) = 907 = 907
f(82) = 7427 = 7*1061
f(83) = 475 = 5*5*19
f(84) = 7775 = 5*5*311
f(85) = 497 = 7*71
f(86) = 8131 = 47*173
f(87) = 1039 = 1039
f(88) = 8495 = 5*1699
f(89) = 1085 = 5*7*31
f(90) = 8867 = 8867
f(91) = 283 = 283
f(92) = 9247 = 7*1321
f(93) = 295 = 5*59
f(94) = 9635 = 5*41*47
f(95) = 1229 = 1229
f(96) = 10031 = 7*1433
f(97) = 1279 = 1279
f(98) = 10435 = 5*2087
f(99) = 665 = 5*7*19
f(100) = 10847 = 10847

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

f(0)=47
f(1)=7
f(2)=67
f(3)=5
f(4)=19
f(5)=1
f(6)=131
f(7)=1
f(8)=1
f(9)=1
f(10)=227
f(11)=1
f(12)=41
f(13)=1
f(14)=71
f(15)=1
f(16)=431
f(17)=59
f(18)=103
f(19)=1
f(20)=607
f(21)=1
f(22)=101
f(23)=1
f(24)=163
f(25)=109
f(26)=1
f(27)=31
f(28)=211
f(29)=1
f(30)=1187
f(31)=157
f(32)=1327
f(33)=1
f(34)=1
f(35)=97
f(36)=233
f(37)=107
f(38)=359
f(39)=1
f(40)=281
f(41)=257
f(42)=113
f(43)=1
f(44)=467
f(45)=1
f(46)=2531
f(47)=1
f(48)=547
f(49)=1
f(50)=421
f(51)=191
f(52)=3167
f(53)=1
f(54)=1
f(55)=439
f(56)=3631
f(57)=1
f(58)=1
f(59)=1
f(60)=4127
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=599
f(66)=4931
f(67)=317
f(68)=149
f(69)=1
f(70)=5507
f(71)=1
f(72)=5807
f(73)=1
f(74)=1223
f(75)=1
f(76)=1
f(77)=1
f(78)=193
f(79)=173
f(80)=373
f(81)=907
f(82)=1061
f(83)=1
f(84)=311
f(85)=1
f(86)=1
f(87)=1039
f(88)=1699
f(89)=1
f(90)=8867
f(91)=283
f(92)=1321
f(93)=1
f(94)=1
f(95)=1229
f(96)=1433
f(97)=1279
f(98)=2087
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+8x+47 could be written as f(y)= y^2+31 with x=y-4

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

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, 7, 67, 5, 19, 1, 131, 1, 1, 1, 227, 1, 41, 1, 71, 1, 431, 59, 103, 1, 607, 1, 101, 1, 163, 109, 1, 31, 211, 1, 1187, 157, 1327, 1, 1, 97, 233, 107, 359, 1, 281, 257, 113, 1, 467, 1, 2531, 1, 547, 1, 421, 191, 3167, 1, 1, 439, 3631, 1, 1, 1, 4127, 1, 1, 1, 1, 599, 4931, 317, 149, 1, 5507, 1, 5807, 1, 1223, 1, 1, 1, 193, 173, 373, 907, 1061, 1, 311, 1, 1, 1039, 1699, 1, 8867, 283, 1321, 1, 1, 1229, 1433, 1279, 2087, 1, 10847, 691, 593, 1, 2339, 1489, 1733, 1, 503, 1, 1861, 1657, 13487, 1, 2791, 887, 14431, 1, 1, 379, 1, 1, 15907, 1, 1, 521, 16931, 307, 3491, 443, 17987, 1, 1, 1, 1, 1, 293, 1, 577, 1, 1093, 1, 21347, 541, 1, 397, 22531, 1427, 661, 1, 23747, 1, 1, 617, 4999, 1, 1, 811, 1051, 1, 26927, 3407, 563, 349, 5651, 1787, 4133, 3659, 5923, 1, 30307, 479, 1, 1, 6343, 1, 1, 4099, 1, 419, 1, 2141, 1117, 1, 1, 1, 36131, 1, 1, 1, 5381, 1, 38447, 971, 1, 2477, 40031, 1, 8167, 1031, 41647, 751, 42467, 1, 1237, 683, 44131, 5569, 1, 1, 45827, 1, 46687, 1, 9511, 857, 2549, 1, 1409, 1, 50207, 1583, 1, 1289, 1, 937, 1291, 1, 10771, 1, 54787, 6907, 1, 1, 2267, 1, 8233, 1, 11719, 1, 59567, 7507, 1, 1, 1, 3877, 8933, 7879, 1, 1601, 9221, 1, 1, 1, 701, 8389, 67631, 1217, 1, 1, 1423, 4391, 997, 1783, 2053, 9049, 72931, 1, 1, 1, 1, 1, 76207, 1, 1, 1, 733, 4937, 2273, 2003, 80687, 1451, 1741, 1, 3319, 1, 84131, 10589, 2437, 1, 86467, 5441, 659, 1103, 1, 1597, 90031, 11329, 1, 1, 1, 727, 13381, 2357, 18979, 11939, 1, 6047, 1, 1, 98627, 653, 1693, 1, 20231, 3181, 14633, 3221, 20743, 2609, 2143, 1, 106307, 1, 21523, 1, 1123, 1, 22051, 1, 839, 877, 112927, 1, 1, 14369, 115631, 1, 23399, 1471, 2887, 1063, 119747, 3011, 3461, 1, 6449, 3851, 3541, 1, 769, 2251, 1163, 3187, 25639, 1151, 129631, 8147, 1, 1, 132527, 16657, 19141, 1, 27091, 1, 919, 17209, 1, 1, 139907, 1, 20201, 1777, 1, 17959, 1, 18149, 29191, 1, 147487, 1, 149027, 1, 1, 18919, 1, 1, 1, 1931, 1, 19507, 2341, 1, 31687, 1, 160031, 1, 32327, 1, 23321, 20507, 1459, 1, 1, 10457, 8849, 1, 6791, 853, 171427, 1, 173087, 1087, 4993, 1, 176431, 22159, 1, 2237, 179807, 1613, 1, 1, 36643, 1, 1831, 2903, 5333, 1, 1, 1, 1, 1, 1, 1721, 1, 12157, 39079, 1, 2777, 1303, 1, 1249, 2113, 6301, 28933, 1, 40867, 1, 977, 12941, 207967, 1, 41959, 26339, 1, 1, 8539, 1, 1619, 1, 4621, 1, 1, 1, 220931, 1, 44563, 2797, 1, 1, 5527, 5689, 6529, 1, 230431, 1033, 46471, 1, 234287, 4201, 12433, 1, 1361, 14947, 240131, 30139, 6917, 1, 2281, 1, 7937, 1, 1, 4447, 250031, 31379, 1, 3163, 254047, 1, 1, 6427, 1259, 1, 4409, 8161, 10487, 1, 2017, 1, 1, 1, 1, 1, 5519, 1, 54503, 1, 1, 34457, 276707, 1, 55763, 4373, 1, 1, 56611, 7103, 1, 17891, 287327, 1, 11579, 36319, 15349, 5227, 1, 1, 42281, 9283, 1, 7481, 8581, 1, 4261, 2711, 1, 3823, 306947, 5501, 309167, 7757, 1, 1, 6673, 2459, 1, 1, 318127, 5701, 320387, 4019, 1373, 1, 324931, 40759, 9349, 8209, 3023, 10333, 1, 2081, 3517, 5987, 3331, 2221, 67751, 1, 341087, 21391, 1, 1723, 13831, 1399, 1213, 2729, 70099, 1, 352867, 44257, 3449, 1, 71527, 1, 2707, 1, 1, 9091, 52121, 45757, 1307, 1, 73939, 1, 372131, 1, 14983, 1879, 53861, 1, 19973, 4759, 1559, 2521, 12401, 1, 77383, 1, 2389, 1, 391907, 9829, 1, 49459, 396931, 1, 1, 5009, 401987, 1, 404527, 2029, 1, 1823, 1, 12841, 11777, 10337, 414767, 1, 59621, 5233, 83987, 3761, 1, 1709, 85027, 1523, 1, 1, 8783, 1, 86599, 1, 62233, 1, 1, 1, 6581, 1, 443587, 1, 1, 55949, 1, 14071, 2203, 1, 64901, 56957, 1, 1637, 91943, 28817, 2837, 1, 3001, 1, 66841, 58657, 470627, 1, 1, 3709, 2467, 8527, 1, 12007, 481667, 1, 484447, 6073, 13921, 1, 490031, 1, 14081, 3089, 495647, 1, 498467, 12497, 1, 1, 1621, 1663, 2897, 1, 26833, 63907, 10463, 12853, 1, 1, 518431, 8123, 2543, 1867, 4639, 65707, 1, 6607, 1493, 1, 4007, 1, 107171, 1, 4943, 16883, 541727, 1, 21787, 1, 78233, 68639, 110119, 1, 2551, 1, 9433, 1993, 2381, 3691, 3583, 1, 5953, 1, 1, 71257, 12161, 14327, 16417, 36007, 1609, 5171, 23227, 1, 583727, 1, 586787, 3677, 1, 18481, 592931, 3911, 17029, 14939, 1, 1, 4597, 7547, 121063, 10837, 608431, 76249, 1, 1, 614687, 9629, 88261, 1, 1, 11117, 1, 39107, 1, 1, 630467, 1, 1, 15881, 1901, 1, 91433, 20051, 1, 1, 15767, 1, 1, 1, 130579, 2153, 1, 82219, 1, 1, 13523, 1, 2591, 1, 133831, 1, 4283, 12037, 1, 8467, 97001, 2239, 682307, 17099, 1, 85909, 1847, 3083, 138451, 4337, 1, 12451, 17047, 1, 4013, 43997, 705631, 44207, 1, 1, 37493, 1, 6949, 1, 143827, 1, 15373, 90529, 2963, 18191, 3779, 45691, 104681, 9181, 1, 13177, 739631, 92669, 29723, 1, 12653, 1, 5639, 18793, 4861, 94399, 1, 47417, 152083, 1, 763907, 95707, 3637, 1, 154183, 12073, 1, 1, 1, 1, 111641, 5153, 1, 1, 31543, 1, 792131, 14177, 1, 19937, 1, 25033, 1907, 1, 23041, 3259, 4241, 1, 162727, 10193, 43013, 1, 13913, 1, 23557, 103289, 828131, 1, 1, 1, 835427, 14951, 839087, 21023, 4111, 7541, 44549, 53017, 1, 1, 853807, 106957, 122501, 1, 172243, 3853, 27901, 1, 2593, 3109, 872387, 1, 2663, 1, 7039, 5801, 126233, 1, 9341, 1, 1, 6977, 894947, 3203, 1, 1, 1, 56527, 1, 11353, 130021, 1, 1, 3271, 9661, 1, 1, 1, 37019, 4637, 132761, 1973, 6263, 11689, 1, 58687, 940931, 1, 1, 23669, 948707, 1, 13417, 1, 27329, 119809, 50549, 120299, 1, 1, 9587, 8663, 972227, 4871, 39047, 17467, 980131, 1, 1, 6163, 988067, 123757, 7459, 24851, 199207, 1, 24391, 62627, 200807, 3593,

6. Sequence of the polynom (only primes)

47, 7, 67, 5, 19, 131, 227, 41, 71, 431, 59, 103, 607, 101, 163, 109, 31, 211, 1187, 157, 1327, 97, 233, 107, 359, 281, 257, 113, 467, 2531, 547, 421, 191, 3167, 439, 3631, 4127, 599, 4931, 317, 149, 5507, 5807, 1223, 193, 173, 373, 907, 1061, 311, 1039, 1699, 8867, 283, 1321, 1229, 1433, 1279, 2087, 10847, 691, 593, 2339, 1489, 1733, 503, 1861, 1657, 13487, 2791, 887, 14431, 379, 15907, 521, 16931, 307, 3491, 443, 17987, 293, 577, 1093, 21347, 541, 397, 22531, 1427, 661, 23747, 617, 4999, 811, 1051, 26927, 3407, 563, 349, 5651, 1787, 4133, 3659, 5923, 30307, 479, 6343, 4099, 419, 2141, 1117, 36131, 5381, 38447, 971, 2477, 40031, 8167, 1031, 41647, 751, 42467, 1237, 683, 44131, 5569, 45827, 46687, 9511, 857, 2549, 1409, 50207, 1583, 1289, 937, 1291, 10771, 54787, 6907, 2267, 8233, 11719, 59567, 7507, 3877, 8933, 7879, 1601, 9221, 701, 8389, 67631, 1217, 1423, 4391, 997, 1783, 2053, 9049, 72931, 76207, 733, 4937, 2273, 2003, 80687, 1451, 1741, 3319, 84131, 10589, 2437, 86467, 5441, 659, 1103, 1597, 90031, 11329, 727, 13381, 2357, 18979, 11939, 6047, 98627, 653, 1693, 20231, 3181, 14633, 3221, 20743, 2609, 2143, 106307, 21523, 1123, 22051, 839, 877, 112927, 14369, 115631, 23399, 1471, 2887, 1063, 119747, 3011, 3461, 6449, 3851, 3541, 769, 2251, 1163, 3187, 25639, 1151, 129631, 8147, 132527, 16657, 19141, 27091, 919, 17209, 139907, 20201, 1777, 17959, 18149, 29191, 147487, 149027, 18919, 1931, 19507, 2341, 31687, 160031, 32327, 23321, 20507, 1459, 10457, 8849, 6791, 853, 171427, 173087, 1087, 4993, 176431, 22159, 2237, 179807, 1613, 36643, 1831, 2903, 5333, 1721, 12157, 39079, 2777, 1303, 1249, 2113, 6301, 28933, 40867, 977, 12941, 207967, 41959, 26339, 8539, 1619, 4621, 220931, 44563, 2797, 5527, 5689, 6529, 230431, 1033, 46471, 234287, 4201, 12433, 1361, 14947, 240131, 30139, 6917, 2281, 7937, 4447, 250031, 31379, 3163, 254047, 6427, 1259, 4409, 8161, 10487, 2017, 5519, 54503, 34457, 276707, 55763, 4373, 56611, 7103, 17891, 287327, 11579, 36319, 15349, 5227, 42281, 9283, 7481, 8581, 4261, 2711, 3823, 306947, 5501, 309167, 7757, 6673, 2459, 318127, 5701, 320387, 4019, 1373, 324931, 40759, 9349, 8209, 3023, 10333, 2081, 3517, 5987, 3331, 2221, 67751, 341087, 21391, 1723, 13831, 1399, 1213, 2729, 70099, 352867, 44257, 3449, 71527, 2707, 9091, 52121, 45757, 1307, 73939, 372131, 14983, 1879, 53861, 19973, 4759, 1559, 2521, 12401, 77383, 2389, 391907, 9829, 49459, 396931, 5009, 401987, 404527, 2029, 1823, 12841, 11777, 10337, 414767, 59621, 5233, 83987, 3761, 1709, 85027, 1523, 8783, 86599, 62233, 6581, 443587, 55949, 14071, 2203, 64901, 56957, 1637, 91943, 28817, 2837, 3001, 66841, 58657, 470627, 3709, 2467, 8527, 12007, 481667, 484447, 6073, 13921, 490031, 14081, 3089, 495647, 498467, 12497, 1621, 1663, 2897, 26833, 63907, 10463, 12853, 518431, 8123, 2543, 1867, 4639, 65707, 6607, 1493, 4007, 107171, 4943, 16883, 541727, 21787, 78233, 68639, 110119, 2551, 9433, 1993, 2381, 3691, 3583, 5953, 71257, 12161, 14327, 16417, 36007, 1609, 5171, 23227, 583727, 586787, 3677, 18481, 592931, 3911, 17029, 14939, 4597, 7547, 121063, 10837, 608431, 76249, 614687, 9629, 88261, 11117, 39107, 630467, 15881, 1901, 91433, 20051, 15767, 130579, 2153, 82219, 13523, 2591, 133831, 4283, 12037, 8467, 97001, 2239, 682307, 17099, 85909, 1847, 3083, 138451, 4337, 12451, 17047, 4013, 43997, 705631, 44207, 37493, 6949, 143827, 15373, 90529, 2963, 18191, 3779, 45691, 104681, 9181, 13177, 739631, 92669, 29723, 12653, 5639, 18793, 4861, 94399, 47417, 152083, 763907, 95707, 3637, 154183, 12073, 111641, 5153, 31543, 792131, 14177, 19937, 25033, 1907, 23041, 3259, 4241, 162727, 10193, 43013, 13913, 23557, 103289, 828131, 835427, 14951, 839087, 21023, 4111, 7541, 44549, 53017, 853807, 106957, 122501, 172243, 3853, 27901, 2593, 3109, 872387, 2663, 7039, 5801, 126233, 9341, 6977, 894947, 3203, 56527, 11353, 130021, 3271, 9661, 37019, 4637, 132761, 1973, 6263, 11689, 58687, 940931, 23669, 948707, 13417, 27329, 119809, 50549, 120299, 9587, 8663, 972227, 4871, 39047, 17467, 980131, 6163, 988067, 123757, 7459, 24851, 199207, 24391, 62627, 200807, 3593,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+8x+47 and
the reducible primes which appear as divisor for the first time
p | x^2+8x+47 and p < x^2+8x+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)
1106510.6000000.5000000.1000000.0000000.0000000.000000
21005833250.5800000.3300000.2500009.6666676.60000025.000000
31.0006302383920.6300000.2380000.39200010.8620697.21212115.680000
410.0006.4511.6664.7850.6451000.1666000.47850010.2396827.00000012.206633
5100.00065.60412.80052.8040.6560400.1280000.52804010.1695867.68307311.035318
61.000.000662.506103.189559.3170.6625060.1031890.55931710.0985618.06164110.592322
710.000.0006.669.923862.1235.807.8000.6669920.0862120.58078010.0677188.35479510.383736
8100.000.00067.027.6657.423.30959.604.3560.6702770.0742330.59604410.0492418.61049810.262812
91.000.000.000672.816.44065.138.106607.678.3340.6728160.0651380.60767810.0378928.77480710.195200
1010.000.000.0006.748.432.824580.419.3736.168.013.4510.6748430.0580420.61680110.0301258.91059710.150128


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
244311.0000000.7500000.2500001.3333331.000000inf
385410.6250000.5000000.1250001.2500001.3333331.000000
4169630.5625000.3750000.1875001.8000001.5000003.000000
532191270.5937500.3750000.2187502.1111112.0000002.333333
6643521140.5468750.3281250.2187501.8421051.7500002.000000
71287642340.5937500.3281250.2656252.1714292.0000002.428571
825615077730.5859380.3007810.2851561.9736841.8333332.147059
95123091381710.6035160.2695310.3339842.0600001.7922082.342466
101.0246422424000.6269530.2363280.3906252.0776701.7536232.339181
112.0481.2914388530.6303710.2138670.4165042.0109031.8099172.132500
124.0962.6107741.8360.6372070.1889650.4482422.0216891.7671232.152403
138.1925.2791.3933.8860.6444090.1700440.4743652.0226051.7997422.116558
1416.38410.6172.5608.0570.6480100.1562500.4917602.0111761.8377602.073340
1532.76821.3844.72116.6630.6525880.1440730.5085142.0141281.8441412.068140
1665.53642.9008.79734.1030.6546020.1342320.5203702.0061731.8633762.046630
17131.07286.11416.32169.7930.6569980.1245190.5324782.0073191.8552922.046535
18262.144172.75830.586142.1720.6590190.1166760.5423432.0061551.8740272.037052
19524.288346.60757.197289.4100.6611000.1090950.5520062.0063151.8700392.035633
201.048.576694.863107.736587.1270.6626730.1027450.5599282.0047581.8835952.028703
212.097.1521.392.743203.4321.189.3110.6641120.0970040.5671082.0043421.8882452.025645
224.194.3042.791.329385.4902.405.8390.6655050.0919080.5735972.0041951.8949332.022885
238.388.6085.593.061732.5694.860.4920.6667450.0873290.5794162.0037271.9003582.020290
2416.777.21611.204.5121.395.8999.808.6130.6678410.0832020.5846392.0032881.9054852.018029
2533.554.43222.441.6092.666.64219.774.9670.6688120.0794720.5893402.0029081.9103402.016082
2667.108.86444.946.0175.103.61439.842.4030.6697480.0760500.5936982.0027981.9138732.014790
27134.217.72890.010.7289.788.06180.222.6670.6706320.0729270.5977052.0026411.9178692.013499
28268.435.456180.239.64318.796.445161.443.1980.6714450.0700220.6014232.0024241.9203442.012439
29536.870.912360.875.95136.164.393324.711.5580.6721840.0673610.6048222.0022011.9240022.011305
301.073.741.824722.503.49869.678.394652.825.1040.6728840.0648930.6079912.0020831.9267132.010477
312.147.483.6481.446.402.787134.426.0421.311.976.7450.6735340.0625970.6109372.0019321.9292362.009691
324.294.967.2962.895.433.388259.660.4092.635.772.9790.6741460.0604570.6136892.0018171.9316232.009009
338.589.934.5925.795.816.032502.192.1045.293.623.9280.6747220.0584630.6162592.0017091.9340342.008376
3417.179.869.18411.600.906.752972.300.13610.628.606.6160.6752620.0565950.6186662.0016001.9361122.007813
3534.359.738.36823.219.315.8381.884.462.39721.334.853.4410.6757710.0548450.6209262.0015091.9381492.007305
3668.719.476.73646.471.741.4403.655.795.64842.815.945.7920.6762530.0531990.6230542.0014261.9399682.006855


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
123210102
243210102
384220202
4166240303
53212660525
6642191227210
7128421824515418
8256773245633830
9512138607815531654
101.02424210613634972883
112.0484381922465916956154
124.096774358416106292104272
138.1921.393635758194517188494
1416.3842.5601.1381.422363939341917
1532.7684.7212.1192.6026491.7096451.718
1665.5368.7973.9404.8571.1553.2151.2183.209
17131.07216.3217.3228.9992.1745.9492.2275.971
18262.14430.58613.72816.8584.02511.1804.09311.288
19524.28857.19725.69131.5067.51921.0567.63920.983
201.048.576107.73648.35059.38614.26939.57614.33439.557
212.097.152203.43291.350112.08226.70274.82726.92974.974
224.194.304385.490173.191212.29950.579142.02950.763142.119
238.388.608732.569329.435403.13495.795269.72096.393270.661
2416.777.2161.395.899627.086768.813182.474515.000182.920515.505
2533.554.4322.666.6421.197.4241.469.218348.219984.322348.701985.400
2667.108.8645.103.6142.290.1292.813.485664.9681.886.764665.4351.886.447
27134.217.7289.788.0614.388.6885.399.3731.273.7653.620.3221.274.6403.619.334
28268.435.45618.796.4458.423.45510.372.9902.443.3916.955.5392.443.4526.954.063
29536.870.91236.164.39316.199.76819.964.6254.693.56413.387.1884.693.36113.390.280
301.073.741.82469.678.39431.205.93238.472.4629.031.28325.804.9339.031.00525.811.173
312.147.483.648134.426.04260.184.28174.241.76117.403.15449.810.77117.401.74749.810.370
324.294.967.296259.660.409116.225.859143.434.55033.578.23496.256.59933.573.49096.252.086
338.589.934.592502.192.104224.725.193277.466.91164.863.894186.230.29664.864.613186.233.301
3417.179.869.184972.300.136434.989.666537.310.470125.450.298360.700.282125.453.973360.695.583
3534.359.738.3681.884.462.397842.904.2741.041.558.123242.890.081699.335.936242.897.822699.338.558
3668.719.476.7363.655.795.6481.634.893.1162.020.902.532470.768.5511.357.132.842470.781.6501.357.112.605


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
241100100
381100100
4163121101
5327431312
66414684523
712834142081088
825673343916202215
9512171957642424443
101.02440020819210193104102
112.048853440413217212212212
124.0961.836924912469453473441
138.1923.8861.9531.933957977998954
1416.3848.0574.1153.9422.0551.9792.0471.976
1532.76816.6638.4638.2004.1894.0834.2474.144
1665.53634.10317.23916.8648.5288.4458.6628.468
17131.07269.79335.08534.70817.41617.32517.66917.383
18262.144142.17271.59270.58035.61835.29935.80735.448
19524.288289.410145.625143.78572.90971.56172.69772.243
201.048.576587.127295.237291.890147.612145.884147.537146.094
212.097.1521.189.311597.810591.501298.817295.600299.184295.710
224.194.3042.405.8391.209.3941.196.445605.060597.275605.629597.875
238.388.6084.860.4922.439.8602.420.6321.222.8451.207.3551.221.6691.208.623
2416.777.2169.808.6134.922.6864.885.9272.465.6642.436.9472.465.9812.440.021
2533.554.43219.774.9679.920.5059.854.4624.967.8374.916.7584.971.5264.918.846
2667.108.86439.842.40319.985.84119.856.56210.007.5679.911.25210.010.2389.913.346
27134.217.72880.222.66740.239.14139.983.52620.146.77119.965.04320.148.12319.962.730
28268.435.456161.443.19880.969.38080.473.81840.534.65340.189.46440.533.63640.185.445
29536.870.912324.711.558162.829.427161.882.13181.510.94480.854.14481.505.81880.840.652
301.073.741.824652.825.104327.330.841325.494.263163.842.873162.571.674163.852.783162.557.774
312.147.483.6481.311.976.745657.767.620654.209.125329.220.844326.779.903329.203.423326.772.575
324.294.967.2962.635.772.9791.321.329.8791.314.443.100661.297.527656.601.235661.286.527656.587.690
338.589.934.5925.293.623.9282.653.480.4792.640.143.4491.327.913.6781.318.889.3451.327.902.5201.318.918.385
3417.179.869.18410.628.606.6165.327.228.5505.301.378.0662.665.800.2282.648.462.8512.665.853.2592.648.490.278
3534.359.738.36821.334.853.44110.692.365.68610.642.487.7555.350.326.3995.317.040.3235.350.497.8405.316.988.879
3668.719.476.73642.815.945.79221.456.336.46821.359.609.32410.736.065.64710.671.790.94510.736.228.13110.671.861.069


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 7, 67, 5, 19, 1, 131, 1, 1, 1, 227, 1, 41, 1, 71, 1, 431, 59, 103, 1,
Found in Database : 47, 7, 67, 5, 19, 131, 227, 41, 71, 431, 59, 103, 607, 101, 163, 109, 31, 211, 1187, 157, 1327, 97, 233, 107, 359,
Found in Database : 5, 7, 19, 31, 41, 47, 59, 67, 71, 97, 101, 103, 107, 109, 113, 131, 149,