Inhaltsverzeichnis

Development of
Algorithmic Constructions

17:54:42
Deutsch
20.Apr 2024

Polynom = x^2+16x-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) = 33 = 3*11
f(3) = 27 = 3*3*3
f(4) = 77 = 7*11
f(5) = 51 = 3*17
f(6) = 129 = 3*43
f(7) = 79 = 79
f(8) = 189 = 3*3*3*7
f(9) = 111 = 3*37
f(10) = 257 = 257
f(11) = 147 = 3*7*7
f(12) = 333 = 3*3*37
f(13) = 187 = 11*17
f(14) = 417 = 3*139
f(15) = 231 = 3*7*11
f(16) = 509 = 509
f(17) = 279 = 3*3*31
f(18) = 609 = 3*7*29
f(19) = 331 = 331
f(20) = 717 = 3*239
f(21) = 387 = 3*3*43
f(22) = 833 = 7*7*17
f(23) = 447 = 3*149
f(24) = 957 = 3*11*29
f(25) = 511 = 7*73
f(26) = 1089 = 3*3*11*11
f(27) = 579 = 3*193
f(28) = 1229 = 1229
f(29) = 651 = 3*7*31
f(30) = 1377 = 3*3*3*3*17
f(31) = 727 = 727
f(32) = 1533 = 3*7*73
f(33) = 807 = 3*269
f(34) = 1697 = 1697
f(35) = 891 = 3*3*3*3*11
f(36) = 1869 = 3*7*89
f(37) = 979 = 11*89
f(38) = 2049 = 3*683
f(39) = 1071 = 3*3*7*17
f(40) = 2237 = 2237
f(41) = 1167 = 3*389
f(42) = 2433 = 3*811
f(43) = 1267 = 7*181
f(44) = 2637 = 3*3*293
f(45) = 1371 = 3*457
f(46) = 2849 = 7*11*37
f(47) = 1479 = 3*17*29
f(48) = 3069 = 3*3*11*31
f(49) = 1591 = 37*43
f(50) = 3297 = 3*7*157
f(51) = 1707 = 3*569
f(52) = 3533 = 3533
f(53) = 1827 = 3*3*7*29
f(54) = 3777 = 3*1259
f(55) = 1951 = 1951
f(56) = 4029 = 3*17*79
f(57) = 2079 = 3*3*3*7*11
f(58) = 4289 = 4289
f(59) = 2211 = 3*11*67
f(60) = 4557 = 3*7*7*31
f(61) = 2347 = 2347
f(62) = 4833 = 3*3*3*179
f(63) = 2487 = 3*829
f(64) = 5117 = 7*17*43
f(65) = 2631 = 3*877
f(66) = 5409 = 3*3*601
f(67) = 2779 = 7*397
f(68) = 5709 = 3*11*173
f(69) = 2931 = 3*977
f(70) = 6017 = 11*547
f(71) = 3087 = 3*3*7*7*7
f(72) = 6333 = 3*2111
f(73) = 3247 = 17*191
f(74) = 6657 = 3*7*317
f(75) = 3411 = 3*3*379
f(76) = 6989 = 29*241
f(77) = 3579 = 3*1193
f(78) = 7329 = 3*7*349
f(79) = 3751 = 11*11*31
f(80) = 7677 = 3*3*853
f(81) = 3927 = 3*7*11*17
f(82) = 8033 = 29*277
f(83) = 4107 = 3*37*37
f(84) = 8397 = 3*3*3*311
f(85) = 4291 = 7*613
f(86) = 8769 = 3*37*79
f(87) = 4479 = 3*1493
f(88) = 9149 = 7*1307
f(89) = 4671 = 3*3*3*173
f(90) = 9537 = 3*11*17*17
f(91) = 4867 = 31*157
f(92) = 9933 = 3*7*11*43
f(93) = 5067 = 3*3*563
f(94) = 10337 = 10337
f(95) = 5271 = 3*7*251
f(96) = 10749 = 3*3583
f(97) = 5479 = 5479
f(98) = 11169 = 3*3*17*73
f(99) = 5691 = 3*7*271
f(100) = 11597 = 11597

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

f(0)=3
f(1)=7
f(2)=11
f(3)=1
f(4)=1
f(5)=17
f(6)=43
f(7)=79
f(8)=1
f(9)=37
f(10)=257
f(11)=1
f(12)=1
f(13)=1
f(14)=139
f(15)=1
f(16)=509
f(17)=31
f(18)=29
f(19)=331
f(20)=239
f(21)=1
f(22)=1
f(23)=149
f(24)=1
f(25)=73
f(26)=1
f(27)=193
f(28)=1229
f(29)=1
f(30)=1
f(31)=727
f(32)=1
f(33)=269
f(34)=1697
f(35)=1
f(36)=89
f(37)=1
f(38)=683
f(39)=1
f(40)=2237
f(41)=389
f(42)=811
f(43)=181
f(44)=293
f(45)=457
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=157
f(51)=569
f(52)=3533
f(53)=1
f(54)=1259
f(55)=1951
f(56)=1
f(57)=1
f(58)=4289
f(59)=67
f(60)=1
f(61)=2347
f(62)=179
f(63)=829
f(64)=1
f(65)=877
f(66)=601
f(67)=397
f(68)=173
f(69)=977
f(70)=547
f(71)=1
f(72)=2111
f(73)=191
f(74)=317
f(75)=379
f(76)=241
f(77)=1193
f(78)=349
f(79)=1
f(80)=853
f(81)=1
f(82)=277
f(83)=1
f(84)=311
f(85)=613
f(86)=1
f(87)=1493
f(88)=1307
f(89)=1
f(90)=1
f(91)=1
f(92)=1
f(93)=563
f(94)=10337
f(95)=251
f(96)=3583
f(97)=5479
f(98)=1
f(99)=271

b) Substitution of the polynom
The polynom f(x)=x^2+16x-3 could be written as f(y)= y^2-67 with x=y-8

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

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, 11, 1, 1, 17, 43, 79, 1, 37, 257, 1, 1, 1, 139, 1, 509, 31, 29, 331, 239, 1, 1, 149, 1, 73, 1, 193, 1229, 1, 1, 727, 1, 269, 1697, 1, 89, 1, 683, 1, 2237, 389, 811, 181, 293, 457, 1, 1, 1, 1, 157, 569, 3533, 1, 1259, 1951, 1, 1, 4289, 67, 1, 2347, 179, 829, 1, 877, 601, 397, 173, 977, 547, 1, 2111, 191, 317, 379, 241, 1193, 349, 1, 853, 1, 277, 1, 311, 613, 1, 1493, 1307, 1, 1, 1, 1, 563, 10337, 251, 3583, 5479, 1, 271, 11597, 1, 1, 557, 4159, 1, 1847, 1, 4463, 1, 1, 1, 1303, 347, 449, 443, 1, 2593, 15809, 2677, 1, 8287, 1, 1, 1021, 1, 1, 1297, 6143, 1039, 2711, 3209, 383, 9907, 1, 1, 1879, 499, 787, 10771, 1, 1, 22433, 421, 1097, 1061, 7883, 1, 3467, 1, 1, 1801, 2837, 1, 26177, 631, 1, 367, 1, 4637, 761, 1583, 1373, 503, 9839, 1, 1777, 463, 10303, 1, 1171, 1, 1, 5449, 3673, 983, 1609, 5693, 1, 1, 1069, 17827, 12011, 1, 1187, 6197, 1789, 18979, 4261, 587, 5591, 599, 1, 1, 1, 6857, 41549, 1, 487, 21391, 1, 2423, 4003, 1, 2137, 22651, 5081, 1, 46589, 461, 5273, 1, 16111, 739, 1, 1, 16703, 1487, 1, 953, 1, 1, 1601, 26647, 1, 1291, 3217, 1, 883, 28051, 18859, 1, 8219, 1, 1, 1, 1, 3331, 60449, 1451, 20479, 1, 991, 617, 1, 10657, 1, 32479, 1, 1571, 2293, 1, 22511, 4861, 22859, 1, 1, 1063, 23563, 1, 1, 12049, 1, 1747, 1, 1201, 2273, 1, 1, 4259, 3677, 1051, 26111, 1, 11351, 13337, 26863, 1, 1009, 1, 1, 1987, 9337, 42307, 4057, 1, 86369, 4831, 1, 44071, 2689, 709, 647, 1, 1787, 6553, 1, 15493, 13367, 1427, 3511, 4337, 1, 1, 1093, 1, 32843, 1153, 1, 797, 9187, 997, 1, 51487, 1, 17377, 2141, 1, 11801, 1, 35839, 1, 2531, 1, 1, 55411, 5309, 1, 6637, 18917, 5437, 57427, 1, 2767, 10627, 19597, 773, 1, 39883, 1, 17291, 6763, 1103, 1, 5897, 1, 1, 2999, 42223, 63691, 1, 3067, 129533, 1277, 1, 65851, 4013, 22193, 1, 1, 45119, 9721, 2683, 7643, 881, 1, 1607, 6389, 2243, 23677, 1, 23929, 1, 72547, 48619, 3491, 13399, 8231, 4513, 1, 50159, 2801, 1, 25469, 51199, 77191, 821, 1, 156749, 1, 1, 1, 1, 1, 2411, 1, 1, 1123, 4993, 9199, 2161, 1, 1, 1723, 1109, 1, 171329, 4099, 1, 7901, 8317, 2659, 176333, 1, 1, 89431, 1619, 1433, 181409, 1, 1, 1, 1867, 30949, 919, 31237, 20921, 1, 9049, 31817, 1, 1, 2081, 8837, 65099, 1, 4583, 32993, 1, 99871, 2477, 33589, 1, 33889, 2063, 14653, 68683, 2029, 207869, 1657, 69899, 1, 1439, 1, 1, 1, 1, 108079, 24121, 1, 1, 1, 8179, 1, 1, 37277, 2917, 4177, 75503, 113731, 1, 12743, 1, 5507, 77419, 10601, 26021, 1, 236129, 1, 3779, 1, 1, 40169, 1, 13499, 7393, 17497, 1, 1, 6701, 5927, 83311, 3391, 1, 42157, 253949, 3863, 1, 11681, 85999, 1, 1, 14503, 87359, 18793, 5179, 14731, 3457, 44537, 1, 4643, 1, 1459, 272417, 1, 3389, 4751, 92203, 1, 278717, 1, 1, 8291, 1, 1, 1, 1289, 1429, 20593, 1, 48409, 1559, 6967, 32633, 147391, 1, 1151, 298049, 16619, 1, 13697, 100811, 1, 1, 50957, 3527, 21997, 11447, 3041, 6353, 52069, 3167, 157327, 1367, 52817, 10259, 1, 1, 160711, 1361, 1, 2069, 1, 1, 1, 2153, 1489, 47387, 1913, 1, 1, 112111, 56249, 1811, 1, 10333, 171079, 16349, 19139, 8039, 57809, 16573, 10271, 38933, 1, 1949, 1, 39461, 25453, 119179, 3517, 51419, 20063, 120779, 2713, 1579, 1, 1, 1, 7247, 5011, 1531, 8887, 1, 62617, 1, 17189, 1, 1, 7793, 21283, 128111, 27541, 128939, 21559, 5333, 1, 1, 1319, 1, 65929, 396833, 1543, 2113, 11783, 133963, 1, 404429, 1, 1, 1, 136511, 1, 3463, 68897, 1, 6709, 1, 1, 38167, 1, 1, 211867, 141679, 10151, 2239, 23831, 2927, 6961, 144299, 1, 62219, 6619, 146059, 31393, 1, 73693, 443489, 1, 1, 223747, 1, 75029, 41047, 1, 1, 1, 1, 3637, 1, 76829, 154111, 3011, 51673, 1, 3931, 78193, 1, 235951, 1, 1, 6521, 1, 1, 1, 14593, 3833, 6131, 1, 23197, 8423, 54437, 4817, 1637, 7487, 55061, 1, 1, 2687, 501197, 3989, 9883, 252727, 24137, 9413, 1, 85193, 1, 1, 1, 1, 14009, 86629, 1997, 1, 174703, 7963, 1, 1, 6091, 1, 25373, 29683, 535757, 12791, 179563, 15887, 5471, 1, 1597, 91009, 2897, 1, 183499, 91997, 4651, 1, 185483, 3623, 186479, 2833, 18143, 1, 11087, 1, 1, 94993, 6421, 1, 1, 288007, 1, 1, 580577, 1, 194543, 1, 1, 3631, 1, 1, 2707, 27017, 1, 99577, 599009, 1, 1, 301831, 11867, 14447, 1907, 1, 2647, 306511, 1, 34231, 1, 103217, 4813, 1, 69337, 9479, 627197, 1, 1, 18587, 30169, 2861, 1, 11821, 1, 320767, 19489, 1, 1, 1, 216523, 1, 72533, 3761, 93719, 109609, 1, 2731, 4507, 1, 665789, 5297, 223019, 335347, 13183, 1783, 675617, 112877, 2939, 1901, 2297, 1, 97931, 6737, 76537, 1, 230719, 115637, 18797, 1, 3191, 1873, 1, 39103, 705533, 1, 33757, 1, 2729, 1, 1, 119557, 1, 51481, 240811, 120689, 14813, 1, 1, 365479, 1, 3709, 736097, 1, 246511, 1, 2663, 1, 746429, 124693, 11903, 12959, 1, 1, 9829, 1, 253439, 1877, 1, 14177, 767309, 18311, 256939, 35117, 1, 1, 777857, 129937, 1, 391579, 261643, 18731, 46381, 1, 24001, 56701, 24109, 1, 114167, 133493, 9227, 23663, 12799, 1, 1, 1, 1, 37061, 272383, 1, 2143, 15233, 1, 5659, 276011, 46103, 1, 138917, 1, 59797, 1, 3259, 842657, 20107, 1, 1, 2381, 12907, 27539, 1, 40829, 429631, 1, 1, 4481, 1, 6733, 1, 1, 1, 1, 146317, 1, 25931, 42073, 1, 23981, 7057, 297023, 1, 298283, 1, 52861, 150089, 1, 3253, 100693, 151357, 4483, 4903, 1, 65413, 27809, 153269, 1, 1, 1, 5869, 44249, 1, 2819, 1, 44617, 42677, 104537, 22447, 944717, 9281, 105401, 1, 317503, 1, 12421, 1, 29101, 481147, 1, 1, 4051, 23099, 10453, 487051, 36151, 1, 57649, 14879, 15619, 1, 1, 1, 141707, 55219, 10709, 1, 1, 55663, 8297, 1, 1, 7537, 16063, 9941,

6. Sequence of the polynom (only primes)

3, 7, 11, 17, 43, 79, 37, 257, 139, 509, 31, 29, 331, 239, 149, 73, 193, 1229, 727, 269, 1697, 89, 683, 2237, 389, 811, 181, 293, 457, 157, 569, 3533, 1259, 1951, 4289, 67, 2347, 179, 829, 877, 601, 397, 173, 977, 547, 2111, 191, 317, 379, 241, 1193, 349, 853, 277, 311, 613, 1493, 1307, 563, 10337, 251, 3583, 5479, 271, 11597, 557, 4159, 1847, 4463, 1303, 347, 449, 443, 2593, 15809, 2677, 8287, 1021, 1297, 6143, 1039, 2711, 3209, 383, 9907, 1879, 499, 787, 10771, 22433, 421, 1097, 1061, 7883, 3467, 1801, 2837, 26177, 631, 367, 4637, 761, 1583, 1373, 503, 9839, 1777, 463, 10303, 1171, 5449, 3673, 983, 1609, 5693, 1069, 17827, 12011, 1187, 6197, 1789, 18979, 4261, 587, 5591, 599, 6857, 41549, 487, 21391, 2423, 4003, 2137, 22651, 5081, 46589, 461, 5273, 16111, 739, 16703, 1487, 953, 1601, 26647, 1291, 3217, 883, 28051, 18859, 8219, 3331, 60449, 1451, 20479, 991, 617, 10657, 32479, 1571, 2293, 22511, 4861, 22859, 1063, 23563, 12049, 1747, 1201, 2273, 4259, 3677, 1051, 26111, 11351, 13337, 26863, 1009, 1987, 9337, 42307, 4057, 86369, 4831, 44071, 2689, 709, 647, 1787, 6553, 15493, 13367, 1427, 3511, 4337, 1093, 32843, 1153, 797, 9187, 997, 51487, 17377, 2141, 11801, 35839, 2531, 55411, 5309, 6637, 18917, 5437, 57427, 2767, 10627, 19597, 773, 39883, 17291, 6763, 1103, 5897, 2999, 42223, 63691, 3067, 129533, 1277, 65851, 4013, 22193, 45119, 9721, 2683, 7643, 881, 1607, 6389, 2243, 23677, 23929, 72547, 48619, 3491, 13399, 8231, 4513, 50159, 2801, 25469, 51199, 77191, 821, 156749, 2411, 1123, 4993, 9199, 2161, 1723, 1109, 171329, 4099, 7901, 8317, 2659, 176333, 89431, 1619, 1433, 181409, 1867, 30949, 919, 31237, 20921, 9049, 31817, 2081, 8837, 65099, 4583, 32993, 99871, 2477, 33589, 33889, 2063, 14653, 68683, 2029, 207869, 1657, 69899, 1439, 108079, 24121, 8179, 37277, 2917, 4177, 75503, 113731, 12743, 5507, 77419, 10601, 26021, 236129, 3779, 40169, 13499, 7393, 17497, 6701, 5927, 83311, 3391, 42157, 253949, 3863, 11681, 85999, 14503, 87359, 18793, 5179, 14731, 3457, 44537, 4643, 1459, 272417, 3389, 4751, 92203, 278717, 8291, 1289, 1429, 20593, 48409, 1559, 6967, 32633, 147391, 1151, 298049, 16619, 13697, 100811, 50957, 3527, 21997, 11447, 3041, 6353, 52069, 3167, 157327, 1367, 52817, 10259, 160711, 1361, 2069, 2153, 1489, 47387, 1913, 112111, 56249, 1811, 10333, 171079, 16349, 19139, 8039, 57809, 16573, 10271, 38933, 1949, 39461, 25453, 119179, 3517, 51419, 20063, 120779, 2713, 1579, 7247, 5011, 1531, 8887, 62617, 17189, 7793, 21283, 128111, 27541, 128939, 21559, 5333, 1319, 65929, 396833, 1543, 2113, 11783, 133963, 404429, 136511, 3463, 68897, 6709, 38167, 211867, 141679, 10151, 2239, 23831, 2927, 6961, 144299, 62219, 6619, 146059, 31393, 73693, 443489, 223747, 75029, 41047, 3637, 76829, 154111, 3011, 51673, 3931, 78193, 235951, 6521, 14593, 3833, 6131, 23197, 8423, 54437, 4817, 1637, 7487, 55061, 2687, 501197, 3989, 9883, 252727, 24137, 9413, 85193, 14009, 86629, 1997, 174703, 7963, 6091, 25373, 29683, 535757, 12791, 179563, 15887, 5471, 1597, 91009, 2897, 183499, 91997, 4651, 185483, 3623, 186479, 2833, 18143, 11087, 94993, 6421, 288007, 580577, 194543, 3631, 2707, 27017, 99577, 599009, 301831, 11867, 14447, 1907, 2647, 306511, 34231, 103217, 4813, 69337, 9479, 627197, 18587, 30169, 2861, 11821, 320767, 19489, 216523, 72533, 3761, 93719, 109609, 2731, 4507, 665789, 5297, 223019, 335347, 13183, 1783, 675617, 112877, 2939, 1901, 2297, 97931, 6737, 76537, 230719, 115637, 18797, 3191, 1873, 39103, 705533, 33757, 2729, 119557, 51481, 240811, 120689, 14813, 365479, 3709, 736097, 246511, 2663, 746429, 124693, 11903, 12959, 9829, 253439, 1877, 14177, 767309, 18311, 256939, 35117, 777857, 129937, 391579, 261643, 18731, 46381, 24001, 56701, 24109, 114167, 133493, 9227, 23663, 12799, 37061, 272383, 2143, 15233, 5659, 276011, 46103, 138917, 59797, 3259, 842657, 20107, 2381, 12907, 27539, 40829, 429631, 4481, 6733, 146317, 25931, 42073, 23981, 7057, 297023, 298283, 52861, 150089, 3253, 100693, 151357, 4483, 4903, 65413, 27809, 153269, 5869, 44249, 2819, 44617, 42677, 104537, 22447, 944717, 9281, 105401, 317503, 12421, 29101, 481147, 4051, 23099, 10453, 487051, 36151, 57649, 14879, 15619, 141707, 55219, 10709, 55663, 8297, 7537, 16063, 9941,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+16x-3 and
the reducible primes which appear as divisor for the first time
p | x^2+16x-3 and p < x^2+16x-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)
1108440.8000000.4000000.4000000.0000000.0000000.000000
21006217450.6200000.1700000.4500007.7500004.25000011.250000
31.000644935510.6440000.0930000.55100010.3870965.47058812.244445
410.0006.6136905.9230.6613000.0690000.59230010.2686347.41935510.749546
5100.00066.7645.29361.4710.6676400.0529300.61471010.0958727.67101410.378356
61.000.000672.13042.779629.3510.6721300.0427790.62935110.0672528.08218410.238177
710.000.0006.748.572361.7436.386.8290.6748570.0361740.63868310.0405758.45608810.148278
8100.000.00067.702.5463.134.31964.568.2270.6770250.0313430.64568210.0321298.66449110.109591
91.000.000.000678.731.38327.631.275651.100.1080.6787310.0276310.65110010.0251988.81572010.083908
1010.000.000.0006.801.046.830247.048.6486.553.998.1820.6801050.0247050.65540010.0202338.94090610.066038


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
386330.7500000.3750000.3750002.0000001.5000003.000000
41610550.6250000.3125000.3125001.6666671.6666671.666667
53217890.5312500.2500000.2812501.7000001.6000001.800000
6643614220.5625000.2187500.3437502.1176471.7500002.444444
71287719580.6015620.1484380.4531252.1388891.3571432.636364
8256161331280.6289060.1289060.5000002.0909091.7368422.206897
9512328552730.6406250.1074220.5332032.0372671.6666672.132812
101.024659965630.6435550.0937500.5498052.0091461.7454552.062271
112.0481.3311701.1610.6499020.0830080.5668952.0197271.7708332.062167
124.0962.6793082.3710.6540530.0751950.5788572.0127721.8117652.042205
138.1925.4185764.8420.6613770.0703120.5910642.0223961.8701302.042176
1416.38410.8461.0579.7890.6619870.0645140.5974732.0018461.8350692.021685
1532.76821.7911.94019.8510.6650090.0592040.6058042.0091281.8353832.027889
1665.53643.7143.63340.0810.6670230.0554350.6115882.0060581.8726802.019092
17131.07287.6436.70480.9390.6686630.0511470.6175162.0049181.8453072.019386
18262.144175.63212.539163.0930.6699830.0478320.6221502.0039481.8703762.015011
19524.288351.72723.623328.1040.6708660.0450570.6258092.0026361.8839622.011760
201.048.576704.79144.683660.1080.6721410.0426130.6295282.0038011.8915042.011886
212.097.1521.411.29784.7161.326.5810.6729590.0403960.6325632.0024331.8959342.009642
224.194.3042.826.629160.9322.665.6970.6739210.0383690.6355522.0028591.8996652.009449
238.388.6085.659.702307.1135.352.5890.6746890.0366110.6380782.0022801.9083402.007951
2416.777.21611.331.366586.67910.744.6870.6754020.0349690.6404332.0021141.9103032.007381
2533.554.43222.684.8411.122.35321.562.4880.6760610.0334490.6426122.0019511.9130612.006805
2667.108.86445.412.5572.152.68043.259.8770.6767000.0320770.6446222.0018901.9180062.006256
27134.217.72890.902.4994.135.11786.767.3820.6772760.0308090.6464672.0017041.9209162.005724
28268.435.456181.949.7347.955.332173.994.4020.6778160.0296360.6481802.0015921.9238472.005297
29536.870.912364.166.05415.323.707348.842.3470.6783120.0285430.6497692.0014651.9262182.004905
301.073.741.824728.828.23729.559.754699.268.4830.6787740.0275300.6512452.0013621.9290212.004540
312.147.483.6481.458.602.42957.090.2301.401.512.1990.6792150.0265850.6526302.0012981.9313502.004255
324.294.967.2962.918.993.643110.393.8782.808.599.7650.6796310.0257030.6539282.0012261.9336742.003978
338.589.934.5925.841.341.452213.703.9815.627.637.4710.6800220.0248780.6551432.0011491.9358322.003716
3417.179.869.18411.689.030.084414.126.83511.274.903.2490.6803910.0241050.6562862.0010861.9378532.003488
3534.359.738.36823.390.043.560803.283.53722.586.760.0230.6807400.0233790.6573612.0010251.9397042.003277
3668.719.476.73646.802.836.4231.559.514.55245.243.321.8710.6810710.0226940.6583772.0009731.9414252.003090


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
383200102
4165221112
5328431223
66414673344
7128198105356
82563317158979
951255302412161215
101.02496484724222327
112.048170878241434145
124.09630815615178777380
138.192576289286152145134145
1416.3841.057530526276269250262
1532.7681.940984955478505477480
1665.5363.6331.8491.783907952876898
17131.0726.7043.4023.3011.6741.7201.6271.683
18262.14412.5396.3576.1813.0953.1903.0863.168
19524.28823.62311.93311.6895.8395.9575.8505.977
201.048.57644.68322.64622.03611.08611.40110.95011.246
212.097.15284.71642.85741.85820.98921.46320.86921.395
224.194.304160.93281.48679.44539.70840.77339.73740.714
238.388.608307.113155.328151.78475.78077.90976.00477.420
2416.777.216586.679296.550290.128145.012148.473145.116148.078
2533.554.4321.122.353567.378554.974277.205283.978277.769283.401
2667.108.8642.152.6801.087.7031.064.976532.885544.137532.091543.567
27134.217.7284.135.1172.087.6992.047.4171.023.8421.044.1721.023.5751.043.528
28268.435.4567.955.3324.015.6913.939.6401.970.5482.008.2791.969.0922.007.413
29536.870.91215.323.7077.732.8387.590.8683.796.4293.867.3433.794.4393.865.496
301.073.741.82429.559.75414.909.27914.650.4747.325.3547.454.3357.325.1207.454.945
312.147.483.64857.090.23028.792.30128.297.92814.150.16414.394.37414.147.76414.397.928
324.294.967.296110.393.87855.658.58054.735.29727.371.93327.827.30127.363.36427.831.280
338.589.934.592213.703.981107.708.536105.995.44453.006.24553.851.70952.989.19953.856.828
3417.179.869.184414.126.835208.671.113205.455.721102.734.998104.338.214102.720.723104.332.900
3534.359.738.368803.283.537404.676.431398.607.105199.312.561202.340.498199.294.544202.335.934
3668.719.476.7361.559.514.552785.461.842774.052.709387.038.094392.741.150387.014.615392.720.693


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
121010100
241010100
383121200
4165321310
5329543321
6642210126781
712858283013142011
8256128616730323333
951227313613770706766
101.024563270293141135145142
112.0481.161568593285291296289
124.0962.3711.1741.197572601603595
138.1924.8422.4362.4061.1931.2271.2321.190
1416.3849.7894.9014.8882.4092.4582.5062.416
1532.76819.8519.9189.9334.8834.9415.0384.989
1665.53640.08119.90920.1729.8899.99310.15510.044
17131.07280.93940.34040.59920.09020.19220.41920.238
18262.144163.09381.43281.66140.69640.82440.79740.776
19524.288328.104164.090164.01481.79582.13982.29681.874
201.048.576660.108329.734330.374165.076164.940165.491164.601
212.097.1521.326.581662.471664.110331.968331.102332.579330.932
224.194.3042.665.6971.332.2451.333.452667.384665.809666.893665.611
238.388.6085.352.5892.675.3472.677.2421.340.1131.336.8971.338.8111.336.768
2416.777.21610.744.6875.370.8215.373.8662.687.6552.684.1852.687.9232.684.924
2533.554.43221.562.48810.781.50810.780.9805.393.7565.388.3995.391.6815.388.652
2667.108.86443.259.87721.628.77521.631.10210.821.33910.812.34810.818.69010.807.500
27134.217.72886.767.38243.382.10643.385.27621.698.88021.684.71021.702.16221.681.630
28268.435.456173.994.40286.996.85286.997.55043.517.13543.479.34643.515.74043.482.181
29536.870.912348.842.347174.428.021174.414.32687.238.52187.183.63687.239.73787.180.453
301.073.741.824699.268.483349.648.809349.619.674174.874.091174.760.681174.879.406174.754.305
312.147.483.6481.401.512.199700.781.839700.730.360350.486.205350.256.225350.509.412350.260.357
324.294.967.2962.808.599.7651.404.341.5341.404.258.231702.380.077701.896.492702.411.816701.911.380
338.589.934.5925.627.637.4712.813.916.8462.813.720.6251.407.326.7771.406.435.1551.407.421.2741.406.454.265
3417.179.869.18411.274.903.2495.637.581.5015.637.321.7482.819.573.2142.817.868.4682.819.554.9582.817.906.609
3534.359.738.36822.586.760.02311.293.725.02311.293.035.0005.648.279.0575.645.072.1335.648.256.0915.645.152.742
3668.719.476.73645.243.321.87122.622.488.27022.620.833.60111.313.843.60511.307.848.87711.313.674.56911.307.954.820


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 7, 11, 1, 1, 17, 43, 79, 1, 37, 257, 1, 1, 1, 139, 1, 509, 31, 29, 331,
Found in Database : 3, 7, 11, 17, 43, 79, 37, 257, 139, 509, 31, 29, 331, 239, 149, 73, 193, 1229, 727, 269, 1697, 89, 683,
Found in Database : 3, 7, 11, 17, 29, 31, 37, 43, 67, 73, 79, 89, 139, 149,