Inhaltsverzeichnis

Development of
Algorithmic Constructions

10:27:30
Deutsch
20.Apr 2024

Polynom = x^2+70x-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) = 17 = 17
f(2) = 141 = 3*47
f(3) = 27 = 3*3*3
f(4) = 293 = 293
f(5) = 93 = 3*31
f(6) = 453 = 3*151
f(7) = 67 = 67
f(8) = 621 = 3*3*3*23
f(9) = 177 = 3*59
f(10) = 797 = 797
f(11) = 111 = 3*37
f(12) = 981 = 3*3*109
f(13) = 269 = 269
f(14) = 1173 = 3*17*23
f(15) = 159 = 3*53
f(16) = 1373 = 1373
f(17) = 369 = 3*3*41
f(18) = 1581 = 3*17*31
f(19) = 211 = 211
f(20) = 1797 = 3*599
f(21) = 477 = 3*3*53
f(22) = 2021 = 43*47
f(23) = 267 = 3*89
f(24) = 2253 = 3*751
f(25) = 593 = 593
f(26) = 2493 = 3*3*277
f(27) = 327 = 3*109
f(28) = 2741 = 2741
f(29) = 717 = 3*239
f(30) = 2997 = 3*3*3*3*37
f(31) = 391 = 17*23
f(32) = 3261 = 3*1087
f(33) = 849 = 3*283
f(34) = 3533 = 3533
f(35) = 459 = 3*3*3*17
f(36) = 3813 = 3*31*41
f(37) = 989 = 23*43
f(38) = 4101 = 3*1367
f(39) = 531 = 3*3*59
f(40) = 4397 = 4397
f(41) = 1137 = 3*379
f(42) = 4701 = 3*1567
f(43) = 607 = 607
f(44) = 5013 = 3*3*557
f(45) = 1293 = 3*431
f(46) = 5333 = 5333
f(47) = 687 = 3*229
f(48) = 5661 = 3*3*17*37
f(49) = 1457 = 31*47
f(50) = 5997 = 3*1999
f(51) = 771 = 3*257
f(52) = 6341 = 17*373
f(53) = 1629 = 3*3*181
f(54) = 6693 = 3*23*97
f(55) = 859 = 859
f(56) = 7053 = 3*2351
f(57) = 1809 = 3*3*3*67
f(58) = 7421 = 41*181
f(59) = 951 = 3*317
f(60) = 7797 = 3*23*113
f(61) = 1997 = 1997
f(62) = 8181 = 3*3*3*3*101
f(63) = 1047 = 3*349
f(64) = 8573 = 8573
f(65) = 2193 = 3*17*43
f(66) = 8973 = 3*3*997
f(67) = 1147 = 31*37
f(68) = 9381 = 3*53*59
f(69) = 2397 = 3*17*47
f(70) = 9797 = 97*101
f(71) = 1251 = 3*3*139
f(72) = 10221 = 3*3407
f(73) = 2609 = 2609
f(74) = 10653 = 3*53*67
f(75) = 1359 = 3*3*151
f(76) = 11093 = 11093
f(77) = 2829 = 3*23*41
f(78) = 11541 = 3*3847
f(79) = 1471 = 1471
f(80) = 11997 = 3*3*31*43
f(81) = 3057 = 3*1019
f(82) = 12461 = 17*733
f(83) = 1587 = 3*23*23
f(84) = 12933 = 3*3*3*479
f(85) = 3293 = 37*89
f(86) = 13413 = 3*17*263
f(87) = 1707 = 3*569
f(88) = 13901 = 13901
f(89) = 3537 = 3*3*3*131
f(90) = 14397 = 3*4799
f(91) = 1831 = 1831
f(92) = 14901 = 3*4967
f(93) = 3789 = 3*3*421
f(94) = 15413 = 15413
f(95) = 1959 = 3*653
f(96) = 15933 = 3*47*113
f(97) = 4049 = 4049
f(98) = 16461 = 3*3*31*59
f(99) = 2091 = 3*17*41
f(100) = 16997 = 23*739

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

f(0)=3
f(1)=17
f(2)=47
f(3)=1
f(4)=293
f(5)=31
f(6)=151
f(7)=67
f(8)=23
f(9)=59
f(10)=797
f(11)=37
f(12)=109
f(13)=269
f(14)=1
f(15)=53
f(16)=1373
f(17)=41
f(18)=1
f(19)=211
f(20)=599
f(21)=1
f(22)=43
f(23)=89
f(24)=751
f(25)=593
f(26)=277
f(27)=1
f(28)=2741
f(29)=239
f(30)=1
f(31)=1
f(32)=1087
f(33)=283
f(34)=3533
f(35)=1
f(36)=1
f(37)=1
f(38)=1367
f(39)=1
f(40)=4397
f(41)=379
f(42)=1567
f(43)=607
f(44)=557
f(45)=431
f(46)=5333
f(47)=229
f(48)=1
f(49)=1
f(50)=1999
f(51)=257
f(52)=373
f(53)=181
f(54)=97
f(55)=859
f(56)=2351
f(57)=1
f(58)=1
f(59)=317
f(60)=113
f(61)=1997
f(62)=101
f(63)=349
f(64)=8573
f(65)=1
f(66)=997
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=139
f(72)=3407
f(73)=2609
f(74)=1
f(75)=1
f(76)=11093
f(77)=1
f(78)=3847
f(79)=1471
f(80)=1
f(81)=1019
f(82)=733
f(83)=1
f(84)=479
f(85)=1
f(86)=263
f(87)=569
f(88)=13901
f(89)=131
f(90)=4799
f(91)=1831
f(92)=4967
f(93)=421
f(94)=15413
f(95)=653
f(96)=1
f(97)=4049
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+70x-3 could be written as f(y)= y^2-1228 with x=y-35

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

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, 17, 47, 1, 293, 31, 151, 67, 23, 59, 797, 37, 109, 269, 1, 53, 1373, 41, 1, 211, 599, 1, 43, 89, 751, 593, 277, 1, 2741, 239, 1, 1, 1087, 283, 3533, 1, 1, 1, 1367, 1, 4397, 379, 1567, 607, 557, 431, 5333, 229, 1, 1, 1999, 257, 373, 181, 97, 859, 2351, 1, 1, 317, 113, 1997, 101, 349, 8573, 1, 997, 1, 1, 1, 1, 139, 3407, 2609, 1, 1, 11093, 1, 3847, 1471, 1, 1019, 733, 1, 479, 1, 263, 569, 13901, 131, 4799, 1831, 4967, 421, 15413, 653, 1, 4049, 1, 1, 739, 1439, 1949, 1, 163, 1531, 811, 1, 149, 4877, 6599, 1, 1, 1723, 6991, 2659, 1, 1823, 541, 937, 1, 1, 1, 1, 359, 677, 8231, 1, 8447, 1, 25997, 1097, 8887, 397, 3037, 1153, 1, 1, 1063, 3631, 1, 1, 971, 1, 10271, 7793, 457, 443, 32261, 2719, 647, 1, 1, 2843, 2029, 1453, 3917, 1, 12007, 1, 1187, 1033, 12527, 1, 12791, 1, 911, 1, 13327, 439, 1511, 1, 41621, 1, 1, 233, 14431, 3643, 1193, 619, 1, 1, 15287, 643, 2749, 3931, 1, 6007, 1, 4079, 1051, 1, 1, 12689, 1, 2153, 1409, 487, 769, 6691, 1, 1, 54941, 2309, 601, 829, 6317, 2389, 863, 1, 1, 7411, 19927, 5023, 60773, 1, 1, 15569, 1231, 1, 1, 1, 1, 8167, 271, 5531, 1, 1, 7549, 17117, 1, 2897, 70061, 1, 1, 1, 24071, 1, 3187, 1, 24799, 1, 8389, 3169, 3331, 1, 2879, 9787, 1, 6619, 79997, 1, 1, 659, 27431, 1151, 4909, 1, 1, 10651, 9533, 313, 86981, 1, 1, 22193, 1, 1, 1, 1, 827, 11551, 307, 1, 94253, 1, 1, 24029, 3583, 4057, 1, 8219, 1, 12487, 1, 8431, 1, 1423, 34367, 701, 1, 1459, 105701, 8863, 35671, 1, 12037, 1, 109661, 4597, 4111, 27917, 37447, 1, 1, 353, 38351, 1, 1, 3253, 117797, 4937, 39727, 1303, 13397, 1, 1, 10223, 13709, 15511, 2447, 10459, 1117, 1, 2503, 1, 1163, 1, 4211, 10939, 1913, 1, 4943, 1, 2287, 5653, 1, 2017, 1069, 1, 139397, 1, 1, 17707, 1283, 1, 4643, 6029, 48487, 1, 16333, 1, 1669, 1, 1, 18859, 50551, 12703, 9013, 1, 51599, 401, 52127, 1, 3853, 1, 1237, 20047, 17909, 13499, 1, 1, 18269, 409, 55351, 1, 1, 1, 1201, 1, 56999, 1, 7507, 7229, 58111, 43793, 1, 7369, 10453, 14879, 1, 22531, 1, 1, 182813, 2551, 61511, 46349, 1321, 1, 5081, 15739, 63247, 23827, 21277, 1, 1297, 8089, 1, 1, 65599, 8237, 1, 1847, 66791, 1, 67391, 5641, 1, 8537, 1, 1667, 1, 8689, 4871, 1, 1381, 1, 3089, 17839, 1319, 2999, 72287, 54449, 72911, 1, 220613, 499, 74167, 1, 8311, 1, 2333, 1, 25357, 1, 1871, 9629, 2129, 6473, 77999, 1277, 1, 6581, 1021, 1, 4703, 60209, 1, 1, 14341, 20399, 9103, 1, 82591, 20731, 2473, 1, 1, 63197, 2729, 3539, 5443, 1259, 1, 32359, 1, 1279, 1607, 10957, 29333, 1123, 1, 1, 268133, 7477, 90071, 1, 1, 2531, 16141, 1, 1, 69389, 1, 1, 2143, 1, 1, 35491, 94999, 1, 287141, 4003, 96431, 1, 97151, 1, 293621, 1, 2293, 1, 1, 24923, 1, 12553, 3733, 75869, 101527, 1, 13339, 2851, 103007, 38767, 1, 8677, 4679, 13109, 1, 2141, 1, 13297, 10331, 26783, 35837, 40459, 108271, 1181, 7607, 1, 1861, 4861, 110567, 1, 1583, 1, 112111, 42187, 1, 28319, 8317, 1, 38149, 2003, 1, 1, 348053, 1, 6871, 43951, 5113, 9833, 1229, 1, 119191, 1, 1, 1, 362381, 1, 1, 45751, 1, 30703, 1, 1, 4001, 93329, 124847, 1, 1361, 1, 126487, 2069, 42437, 1, 8179, 16069, 42989, 4219, 1, 1, 23053, 1, 4241, 49459, 1, 1, 7537, 1, 133999, 1, 14983, 1, 7681, 34031, 1979, 1657, 1, 2027, 1, 5779, 1, 1, 139991, 5851, 422573, 35323, 1, 1, 47533, 35759, 11633, 17989, 1, 1, 8543, 1, 438341, 1, 8647, 55291, 3607, 1, 446333, 1, 1543, 112589, 1619, 1, 12281, 1, 50789, 3371, 153271, 38431, 5197, 1, 155087, 116657, 1, 1, 1, 39343, 157831, 59359, 1, 1, 1, 1, 1, 1, 161527, 20249, 28669, 13577, 1499, 1429, 1627, 1, 495797, 20717, 166207, 3049, 55717, 1, 4993, 1, 2087, 1, 3617, 1, 11927, 2381, 1, 129293, 172871, 1, 8839, 43579, 174799, 65731, 1, 1, 31189, 22153, 1601, 133649, 1, 22397, 17387, 15013, 180647, 67927, 1, 5059, 547853, 1, 2063, 138077, 1, 1, 556781, 46523, 1, 4127, 1, 1, 18251, 7879, 189599, 6199, 190607, 7963, 2137, 1, 192631, 1, 3797, 48539, 583997, 787, 1, 1, 1, 1, 593213, 5507, 1759, 74731, 199799, 16693, 602501, 25169, 1, 8929, 1, 1, 1, 1, 2971, 2083, 206047, 1, 13219, 1, 1, 2953, 1597, 1, 630797, 1, 1, 1, 23599, 53231, 1, 1, 1663, 1, 5827, 27017, 1621, 1, 1, 1, 3709, 1, 659741, 1, 7129, 166157, 1, 1637, 1, 55931, 24919, 84307, 6091, 56479, 1, 1, 227567, 5519, 3413, 9551, 1, 1, 1, 1, 4549, 1, 1, 29209, 1, 1, 3989, 1, 709421, 19753, 4483, 1, 238727, 1, 719573, 1, 4547, 10657, 26903, 1, 2713, 1, 1, 91867, 1, 1, 1, 10303, 247847, 186317, 1, 10399, 5399, 62683, 14783, 1, 3659, 1, 760901, 1, 9437, 191537, 1, 32069, 20849, 7159, 2663, 5711, 5521, 21673, 781997, 1, 261847, 1, 2039, 1, 19333, 1, 88469, 4337, 266599, 1, 21713, 1, 15823, 1, 270191, 3761, 1, 1, 2699, 102451, 10141, 2213, 3541, 1, 92077, 207629, 1, 34757, 835997, 1, 1, 1, 2579, 1, 1, 1, 12329, 1, 94933, 35677, 858101, 71663, 1, 2297, 1, 1, 51133, 1, 290999, 218717, 17191, 12203, 28403, 1, 294751, 1, 98669, 74159, 891797, 1, 1, 2521, 1, 1, 17041, 1, 8171, 1, 1, 1, 17257, 38189, 5189, 5351, 34159, 1, 1, 77339, 103333, 116491, 18311, 77983, 40771, 1, 1, 235889, 7687, 13159, 22079, 79279, 6761, 1, 106357, 1, 961133, 40129, 1, 14221, 322999, 1, 972941, 1, 325631, 3307, 326951, 1, 5441, 41117, 8039, 247697, 2347, 1, 8821, 83231, 1, 1, 7789, 1, 59341, 1, 337607, 6857, 14737, 1, 1020893, 85243, 341647, 1, 1, 1, 1033061, 1, 115237, 1, 347071, 2557, 2633, 1, 1, 131431, 9491, 1, 1057613, 1, 353911, 1, 118429, 44497,

6. Sequence of the polynom (only primes)

3, 17, 47, 293, 31, 151, 67, 23, 59, 797, 37, 109, 269, 53, 1373, 41, 211, 599, 43, 89, 751, 593, 277, 2741, 239, 1087, 283, 3533, 1367, 4397, 379, 1567, 607, 557, 431, 5333, 229, 1999, 257, 373, 181, 97, 859, 2351, 317, 113, 1997, 101, 349, 8573, 997, 139, 3407, 2609, 11093, 3847, 1471, 1019, 733, 479, 263, 569, 13901, 131, 4799, 1831, 4967, 421, 15413, 653, 4049, 739, 1439, 1949, 163, 1531, 811, 149, 4877, 6599, 1723, 6991, 2659, 1823, 541, 937, 359, 677, 8231, 8447, 25997, 1097, 8887, 397, 3037, 1153, 1063, 3631, 971, 10271, 7793, 457, 443, 32261, 2719, 647, 2843, 2029, 1453, 3917, 12007, 1187, 1033, 12527, 12791, 911, 13327, 439, 1511, 41621, 233, 14431, 3643, 1193, 619, 15287, 643, 2749, 3931, 6007, 4079, 1051, 12689, 2153, 1409, 487, 769, 6691, 54941, 2309, 601, 829, 6317, 2389, 863, 7411, 19927, 5023, 60773, 15569, 1231, 8167, 271, 5531, 7549, 17117, 2897, 70061, 24071, 3187, 24799, 8389, 3169, 3331, 2879, 9787, 6619, 79997, 659, 27431, 1151, 4909, 10651, 9533, 313, 86981, 22193, 827, 11551, 307, 94253, 24029, 3583, 4057, 8219, 12487, 8431, 1423, 34367, 701, 1459, 105701, 8863, 35671, 12037, 109661, 4597, 4111, 27917, 37447, 353, 38351, 3253, 117797, 4937, 39727, 1303, 13397, 10223, 13709, 15511, 2447, 10459, 1117, 2503, 1163, 4211, 10939, 1913, 4943, 2287, 5653, 2017, 1069, 139397, 17707, 1283, 4643, 6029, 48487, 16333, 1669, 18859, 50551, 12703, 9013, 51599, 401, 52127, 3853, 1237, 20047, 17909, 13499, 18269, 409, 55351, 1201, 56999, 7507, 7229, 58111, 43793, 7369, 10453, 14879, 22531, 182813, 2551, 61511, 46349, 1321, 5081, 15739, 63247, 23827, 21277, 1297, 8089, 65599, 8237, 1847, 66791, 67391, 5641, 8537, 1667, 8689, 4871, 1381, 3089, 17839, 1319, 2999, 72287, 54449, 72911, 220613, 499, 74167, 8311, 2333, 25357, 1871, 9629, 2129, 6473, 77999, 1277, 6581, 1021, 4703, 60209, 14341, 20399, 9103, 82591, 20731, 2473, 63197, 2729, 3539, 5443, 1259, 32359, 1279, 1607, 10957, 29333, 1123, 268133, 7477, 90071, 2531, 16141, 69389, 2143, 35491, 94999, 287141, 4003, 96431, 97151, 293621, 2293, 24923, 12553, 3733, 75869, 101527, 13339, 2851, 103007, 38767, 8677, 4679, 13109, 2141, 13297, 10331, 26783, 35837, 40459, 108271, 1181, 7607, 1861, 4861, 110567, 1583, 112111, 42187, 28319, 8317, 38149, 2003, 348053, 6871, 43951, 5113, 9833, 1229, 119191, 362381, 45751, 30703, 4001, 93329, 124847, 1361, 126487, 2069, 42437, 8179, 16069, 42989, 4219, 23053, 4241, 49459, 7537, 133999, 14983, 7681, 34031, 1979, 1657, 2027, 5779, 139991, 5851, 422573, 35323, 47533, 35759, 11633, 17989, 8543, 438341, 8647, 55291, 3607, 446333, 1543, 112589, 1619, 12281, 50789, 3371, 153271, 38431, 5197, 155087, 116657, 39343, 157831, 59359, 161527, 20249, 28669, 13577, 1499, 1429, 1627, 495797, 20717, 166207, 3049, 55717, 4993, 2087, 3617, 11927, 2381, 129293, 172871, 8839, 43579, 174799, 65731, 31189, 22153, 1601, 133649, 22397, 17387, 15013, 180647, 67927, 5059, 547853, 2063, 138077, 556781, 46523, 4127, 18251, 7879, 189599, 6199, 190607, 7963, 2137, 192631, 3797, 48539, 583997, 787, 593213, 5507, 1759, 74731, 199799, 16693, 602501, 25169, 8929, 2971, 2083, 206047, 13219, 2953, 1597, 630797, 23599, 53231, 1663, 5827, 27017, 1621, 3709, 659741, 7129, 166157, 1637, 55931, 24919, 84307, 6091, 56479, 227567, 5519, 3413, 9551, 4549, 29209, 3989, 709421, 19753, 4483, 238727, 719573, 4547, 10657, 26903, 2713, 91867, 10303, 247847, 186317, 10399, 5399, 62683, 14783, 3659, 760901, 9437, 191537, 32069, 20849, 7159, 2663, 5711, 5521, 21673, 781997, 261847, 2039, 19333, 88469, 4337, 266599, 21713, 15823, 270191, 3761, 2699, 102451, 10141, 2213, 3541, 92077, 207629, 34757, 835997, 2579, 12329, 94933, 35677, 858101, 71663, 2297, 51133, 290999, 218717, 17191, 12203, 28403, 294751, 98669, 74159, 891797, 2521, 17041, 8171, 17257, 38189, 5189, 5351, 34159, 77339, 103333, 116491, 18311, 77983, 40771, 235889, 7687, 13159, 22079, 79279, 6761, 106357, 961133, 40129, 14221, 322999, 972941, 325631, 3307, 326951, 5441, 41117, 8039, 247697, 2347, 8821, 83231, 7789, 59341, 337607, 6857, 14737, 1020893, 85243, 341647, 1033061, 115237, 347071, 2557, 2633, 131431, 9491, 1057613, 353911, 118429, 44497,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+70x-3 and
the reducible primes which appear as divisor for the first time
p | x^2+70x-3 and p < x^2+70x-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)
11010551.0000000.5000000.5000000.0000000.0000000.000000
21006624420.6600000.2400000.4200006.6000004.8000008.400000
31.0006201294910.6200000.1290000.4910009.3939395.37500011.690476
410.0006.4729535.5190.6472000.0953000.55190010.4387097.38759711.240326
5100.00065.7457.43558.3100.6574500.0743500.58310010.1583757.80167910.565320
61.000.000663.28960.536602.7530.6632890.0605360.60275310.0888138.14203110.337044
710.000.0006.676.836508.8436.167.9930.6676840.0508840.61679910.0662558.40562610.233036
8100.000.00067.088.3864.388.06662.700.3200.6708840.0438810.62700310.0479318.62361410.165433
91.000.000.000673.349.98038.603.049634.746.9310.6733500.0386030.63474710.0367598.79728010.123504
1010.000.000.0006.753.181.496344.607.4116.408.574.0850.6753180.0344610.64085710.0292308.92694910.096266


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
244311.0000000.7500000.2500001.3333331.5000001.000000
388441.0000000.5000000.5000002.0000001.3333334.000000
41615780.9375000.4375000.5000001.8750001.7500002.000000
5322510150.7812500.3125000.4687501.6666671.4285711.875000
6644617290.7187500.2656250.4531251.8400001.7000001.933333
71288226560.6406250.2031250.4375001.7826091.5294121.931034
8256162431190.6328120.1679690.4648441.9756101.6538462.125000
9512319742450.6230470.1445310.4785161.9691361.7209302.058824
101.0246391315080.6240230.1279300.4960942.0031351.7702702.073469
112.0481.2962361.0600.6328120.1152340.5175782.0281691.8015272.086614
124.0962.6234342.1890.6403810.1059570.5344242.0239201.8389832.065094
138.1925.2848004.4840.6450200.0976560.5473632.0144871.8433182.048424
1416.38410.6571.4439.2140.6504520.0880740.5623782.0168431.8037502.054862
1532.76821.4482.69118.7570.6545410.0821230.5724182.0125741.8648652.035707
1665.53643.0245.05837.9660.6564940.0771790.5793152.0059681.8795992.024098
17131.07286.3239.51876.8050.6585920.0726170.5859762.0063921.8817712.022994
18262.144173.05417.843155.2110.6601490.0680660.5920832.0047261.8746592.020845
19524.288347.05733.552313.5050.6619590.0639950.5979632.0054841.8804012.019863
201.048.576695.71463.207632.5070.6634850.0602790.6032062.0046101.8838522.017534
212.097.1521.394.450119.6481.274.8020.6649260.0570530.6078732.0043441.8929552.015475
224.194.3042.794.320227.0202.567.3000.6662180.0541260.6120922.0038871.8973992.013881
238.388.6085.598.316432.0845.166.2320.6673710.0515080.6158632.0034631.9032862.012321
2416.777.21611.214.855823.57910.391.2760.6684570.0490890.6193682.0032551.9060622.011384
2533.554.43222.464.1541.574.34720.889.8070.6694840.0469190.6225652.0030711.9115922.010322
2667.108.86444.989.3103.016.86241.972.4480.6703930.0449550.6254382.0027161.9162622.009231
27134.217.72890.091.5155.788.83984.302.6760.6712340.0431300.6281042.0025091.9188282.008524
28268.435.456180.393.88011.127.721169.266.1590.6720200.0414540.6305662.0023411.9222722.007839
29536.870.912361.174.32421.421.437339.752.8870.6727400.0399010.6328392.0021431.9250512.007211
301.073.741.824723.073.93441.296.657681.777.2770.6734150.0384610.6349552.0020081.9278192.006686
312.147.483.6481.447.514.50179.714.8371.367.799.6640.6740510.0371200.6369312.0018901.9302982.006227
324.294.967.2962.897.573.849154.072.6812.743.501.1680.6746440.0358730.6387712.0017581.9327982.005777
338.589.934.5925.799.927.588298.133.8905.501.793.6980.6752000.0347070.6404932.0016501.9350212.005392
3417.179.869.18411.608.900.013577.479.09311.031.420.9200.6757270.0336140.6421132.0015591.9369792.005059
3534.359.738.36823.234.809.6981.119.690.49022.115.119.2080.6762220.0325870.6436352.0014651.9389282.004739
3668.719.476.73646.501.773.3662.173.072.99444.328.700.3720.6766900.0316220.6450682.0013841.9407802.004452


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
122011100
243021110
384121210
4167151240
53210272350
6641741224101
71282671845143
825643132978226
951274244911143811
101.024131418917257217
112.04823669166303813632
124.096434116317536326454
138.192800222577107116470107
1416.3841.4433761.066181190885187
1532.7682.6917241.9663473631.619362
1665.5365.0581.3523.7056486703.057683
17131.0729.5182.5426.9751.2351.2805.7401.263
18262.14417.8434.70213.1402.2782.35410.8622.349
19524.28833.5528.83324.7184.2544.42520.4644.409
201.048.57663.20716.51446.6928.0808.29538.6128.220
212.097.152119.64831.24088.40715.30315.64073.10415.601
224.194.304227.02059.238167.78129.02829.615138.75329.624
238.388.608432.084112.597319.48654.96956.383264.51756.215
2416.777.216823.579214.416609.162104.568107.336504.594107.081
2533.554.4321.574.347409.2621.165.084199.993204.652965.091204.611
2667.108.8643.016.862783.2762.233.585383.122391.7821.850.463391.495
27134.217.7285.788.8391.499.9694.288.869734.233750.8353.554.636749.135
28268.435.45611.127.7212.879.6428.248.0781.410.5601.440.8536.837.5181.438.790
29536.870.91221.421.4375.534.50715.886.9292.713.7732.767.81913.173.1562.766.689
301.073.741.82441.296.65710.655.82630.640.8305.230.5405.328.25125.410.2905.327.576
312.147.483.64879.714.83720.545.47959.169.35710.091.51410.272.20249.077.84310.273.278
324.294.967.296154.072.68139.670.140114.402.54019.496.03219.835.25394.906.50819.834.888
338.589.934.592298.133.89076.682.517221.451.37237.709.39438.342.726183.741.97838.339.792
3417.179.869.184577.479.093148.395.604429.083.48873.013.52274.203.675356.069.96674.191.930
3534.359.738.3681.119.690.490287.491.494832.198.995141.525.090143.753.243690.673.905143.738.252
3668.719.476.7362.173.072.994557.497.9831.615.575.010274.592.120278.754.0881.340.982.890278.743.896


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
121010001
241010001
384220004
4168440134
53215782148
664291514331013
7128562630581726
8256119625716223051
9512245129116344265104
101.0245082672418292133201
112.0481.060545515187203271399
124.0962.1891.1081.081431430545783
138.1924.4842.2582.2269188991.1341.533
1416.3849.2144.6284.5861.9241.9632.2813.046
1532.76818.7579.4449.3133.9584.0534.6636.083
1665.53637.96619.08418.8828.2078.2579.43712.065
17131.07276.80538.69438.11116.81416.74419.17324.074
18262.144155.21178.04377.16834.39434.25738.91847.642
19524.288313.505157.860155.64570.34869.94978.33494.874
201.048.576632.507318.346314.161142.664142.483158.248189.112
212.097.1521.274.802641.756633.046289.587289.376318.616377.223
224.194.3042.567.3001.291.5111.275.789587.444585.772640.354753.730
238.388.6085.166.2322.598.8002.567.4321.187.9201.185.5421.288.3581.504.412
2416.777.21610.391.2765.228.6425.162.6342.399.2772.396.6402.592.6003.002.759
2533.554.43220.889.80710.506.75510.383.0524.844.3434.838.2185.212.2905.994.956
2667.108.86441.972.44821.107.45720.864.9919.770.9949.759.43610.470.95411.971.064
27134.217.72884.302.67642.379.42141.923.25519.685.68719.672.68521.032.33623.911.968
28268.435.456169.266.15985.068.01484.198.14539.644.40339.611.93542.240.24047.769.581
29536.870.912339.752.887170.731.125169.021.76279.792.84879.737.41084.790.67195.431.958
301.073.741.824681.777.277342.538.949339.238.328160.523.483160.422.546170.149.574190.681.674
312.147.483.6481.367.799.664687.064.497680.735.167322.793.195322.620.532341.371.342381.014.595
324.294.967.2962.743.501.1681.377.843.2791.365.657.889648.867.283648.506.756684.728.676761.398.453
338.589.934.5925.501.793.6982.762.667.3052.739.126.3931.303.899.0181.303.114.2421.373.209.8261.521.570.612
3417.179.869.18411.031.420.9205.538.468.1895.492.952.7312.619.280.4632.617.766.9462.753.453.2713.040.920.240
3534.359.738.36822.115.119.20811.101.667.91311.013.451.2955.260.069.1755.257.197.1085.520.219.6386.077.633.287
3668.719.476.73644.328.700.37222.249.934.42822.078.765.94410.560.819.32610.555.337.63411.065.253.75712.147.289.655


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 17, 47, 1, 293, 31, 151, 67, 23, 59, 797, 37, 109, 269, 1, 53, 1373, 41, 1, 211,
Found in Database : 3, 17, 47, 293, 31, 151, 67, 23, 59, 797, 37, 109, 269, 53, 1373, 41, 211, 599, 43, 89, 751, 593, 277, 2741, 239, 1087, 283, 3533, 1367,
Found in Database : 3, 17, 23, 31, 37, 41, 43, 47, 53, 59, 67, 89, 97, 101, 109, 113, 131, 139, 149,