Inhaltsverzeichnis

Development of
Algorithmic Constructions

16:48:53
Deutsch
20.Apr 2024

Polynom = x^2+132x+59

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) = 59 = 59
f(1) = 3 = 3
f(2) = 327 = 3*109
f(3) = 29 = 29
f(4) = 603 = 3*3*67
f(5) = 93 = 3*31
f(6) = 887 = 887
f(7) = 129 = 3*43
f(8) = 1179 = 3*3*131
f(9) = 83 = 83
f(10) = 1479 = 3*17*29
f(11) = 51 = 3*17
f(12) = 1787 = 1787
f(13) = 243 = 3*3*3*3*3
f(14) = 2103 = 3*701
f(15) = 283 = 283
f(16) = 2427 = 3*809
f(17) = 81 = 3*3*3*3
f(18) = 2759 = 31*89
f(19) = 183 = 3*61
f(20) = 3099 = 3*1033
f(21) = 409 = 409
f(22) = 3447 = 3*3*383
f(23) = 453 = 3*151
f(24) = 3803 = 3803
f(25) = 249 = 3*83
f(26) = 4167 = 3*3*463
f(27) = 17 = 17
f(28) = 4539 = 3*17*89
f(29) = 591 = 3*197
f(30) = 4919 = 4919
f(31) = 639 = 3*3*71
f(32) = 5307 = 3*29*61
f(33) = 43 = 43
f(34) = 5703 = 3*1901
f(35) = 369 = 3*3*41
f(36) = 6107 = 31*197
f(37) = 789 = 3*263
f(38) = 6519 = 3*41*53
f(39) = 841 = 29*29
f(40) = 6939 = 3*3*3*257
f(41) = 447 = 3*149
f(42) = 7367 = 53*139
f(43) = 237 = 3*79
f(44) = 7803 = 3*3*3*17*17
f(45) = 1003 = 17*59
f(46) = 8247 = 3*2749
f(47) = 1059 = 3*353
f(48) = 8699 = 8699
f(49) = 279 = 3*3*31
f(50) = 9159 = 3*43*71
f(51) = 587 = 587
f(52) = 9627 = 3*3209
f(53) = 1233 = 3*3*137
f(54) = 10103 = 10103
f(55) = 1293 = 3*431
f(56) = 10587 = 3*3529
f(57) = 677 = 677
f(58) = 11079 = 3*3*1231
f(59) = 177 = 3*59
f(60) = 11579 = 11579
f(61) = 1479 = 3*17*29
f(62) = 12087 = 3*3*17*79
f(63) = 1543 = 1543
f(64) = 12603 = 3*4201
f(65) = 201 = 3*67
f(66) = 13127 = 13127
f(67) = 837 = 3*3*3*31
f(68) = 13659 = 3*29*157
f(69) = 1741 = 1741
f(70) = 14199 = 3*4733
f(71) = 1809 = 3*3*3*67
f(72) = 14747 = 14747
f(73) = 939 = 3*313
f(74) = 15303 = 3*5101
f(75) = 487 = 487
f(76) = 15867 = 3*3*41*43
f(77) = 2019 = 3*673
f(78) = 16439 = 17*967
f(79) = 2091 = 3*17*41
f(80) = 17019 = 3*3*31*61
f(81) = 541 = 541
f(82) = 17607 = 3*5869
f(83) = 1119 = 3*373
f(84) = 18203 = 109*167
f(85) = 2313 = 3*3*257
f(86) = 18807 = 3*6269
f(87) = 2389 = 2389
f(88) = 19419 = 3*6473
f(89) = 1233 = 3*3*137
f(90) = 20039 = 29*691
f(91) = 159 = 3*53
f(92) = 20667 = 3*83*83
f(93) = 2623 = 43*61
f(94) = 21303 = 3*3*3*3*263
f(95) = 2703 = 3*17*53
f(96) = 21947 = 17*1291
f(97) = 87 = 3*29
f(98) = 22599 = 3*3*3*3*3*3*31
f(99) = 1433 = 1433
f(100) = 23259 = 3*7753

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+132x+59

f(0)=59
f(1)=3
f(2)=109
f(3)=29
f(4)=67
f(5)=31
f(6)=887
f(7)=43
f(8)=131
f(9)=83
f(10)=17
f(11)=1
f(12)=1787
f(13)=1
f(14)=701
f(15)=283
f(16)=809
f(17)=1
f(18)=89
f(19)=61
f(20)=1033
f(21)=409
f(22)=383
f(23)=151
f(24)=3803
f(25)=1
f(26)=463
f(27)=1
f(28)=1
f(29)=197
f(30)=4919
f(31)=71
f(32)=1
f(33)=1
f(34)=1901
f(35)=41
f(36)=1
f(37)=263
f(38)=53
f(39)=1
f(40)=257
f(41)=149
f(42)=139
f(43)=79
f(44)=1
f(45)=1
f(46)=2749
f(47)=353
f(48)=8699
f(49)=1
f(50)=1
f(51)=587
f(52)=3209
f(53)=137
f(54)=10103
f(55)=431
f(56)=3529
f(57)=677
f(58)=1231
f(59)=1
f(60)=11579
f(61)=1
f(62)=1
f(63)=1543
f(64)=4201
f(65)=1
f(66)=13127
f(67)=1
f(68)=157
f(69)=1741
f(70)=4733
f(71)=1
f(72)=14747
f(73)=313
f(74)=5101
f(75)=487
f(76)=1
f(77)=673
f(78)=967
f(79)=1
f(80)=1
f(81)=541
f(82)=5869
f(83)=373
f(84)=167
f(85)=1
f(86)=6269
f(87)=2389
f(88)=6473
f(89)=1
f(90)=691
f(91)=1
f(92)=1
f(93)=1
f(94)=1
f(95)=1
f(96)=1291
f(97)=1
f(98)=1
f(99)=1433

b) Substitution of the polynom
The polynom f(x)=x^2+132x+59 could be written as f(y)= y^2-4297 with x=y-66

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

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

59, 3, 109, 29, 67, 31, 887, 43, 131, 83, 17, 1, 1787, 1, 701, 283, 809, 1, 89, 61, 1033, 409, 383, 151, 3803, 1, 463, 1, 1, 197, 4919, 71, 1, 1, 1901, 41, 1, 263, 53, 1, 257, 149, 139, 79, 1, 1, 2749, 353, 8699, 1, 1, 587, 3209, 137, 10103, 431, 3529, 677, 1231, 1, 11579, 1, 1, 1543, 4201, 1, 13127, 1, 157, 1741, 4733, 1, 14747, 313, 5101, 487, 1, 673, 967, 1, 1, 541, 5869, 373, 167, 1, 6269, 2389, 6473, 1, 691, 1, 1, 1, 1, 1, 1291, 1, 1, 1433, 7753, 983, 337, 1, 1, 1559, 8429, 1, 1, 1097, 8893, 1, 179, 1, 1, 593, 3203, 1, 1, 1, 739, 1, 1, 491, 10601, 1, 1123, 1373, 11113, 1, 223, 719, 521, 1471, 3967, 4513, 1, 769, 557, 1, 12713, 1, 419, 547, 751, 1, 797, 1, 1, 1747, 42359, 1783, 1601, 2729, 241, 1, 44987, 631, 1, 5791, 503, 1, 1109, 1, 953, 6133, 5503, 2083, 50459, 1061, 5711, 1621, 17449, 1, 1, 1, 18089, 1, 18413, 1, 3307, 1, 19069, 7213, 1, 1223, 59207, 311, 6691, 7591, 1, 1, 877, 1, 21101, 3989, 1, 1, 3847, 1, 22153, 1, 1, 709, 2213, 1, 1, 8779, 23593, 743, 71879, 1, 24329, 317, 1453, 1, 75227, 1579, 25453, 601, 1, 3253, 1, 3301, 8867, 1, 1, 1699, 82139, 1, 27773, 617, 1657, 1, 85703, 1, 1, 10939, 9791, 3697, 2179, 937, 347, 1, 1, 3851, 93047, 1301, 1, 349, 1, 1, 96827, 1, 1, 12343, 1, 1, 1213, 2111, 1259, 12829, 34429, 1, 3607, 1, 1, 3331, 35753, 1499, 829, 1, 1, 3457, 1, 2333, 1847, 4723, 12671, 14341, 1, 1, 6871, 1, 1, 1, 39869, 1, 121019, 1, 40813, 1, 13763, 1, 125303, 1, 14083, 1, 1, 1, 1, 1811, 401, 1, 44201, 1, 134087, 1, 1051, 17041, 5077, 5743, 138587, 2903, 5189, 1, 2777, 1, 143159, 1999, 1, 2273, 1, 1021, 2423, 1, 49789, 1, 1, 1, 152519, 1597, 17123, 1, 1, 6521, 157307, 1, 52973, 1, 907, 1, 1, 6791, 54601, 10289, 1, 433, 167099, 6997, 1103, 1, 56809, 1, 2917, 1201, 1093, 1, 2017, 1, 3343, 3709, 59629, 1, 6689, 7561, 4447, 449, 1, 5779, 61933, 3889, 187547, 2617, 1, 23773, 63689, 1, 2441, 1009, 2237, 24439, 1, 8221, 1, 1, 1, 1, 67273, 8447, 6569, 947, 68489, 12899, 1607, 1, 209147, 8753, 1153, 1, 1, 1, 1, 4493, 1, 1, 1087, 1, 7109, 1, 74093, 1, 74729, 1, 226103, 9461, 2621, 1789, 1, 1, 5393, 1, 2887, 1, 1, 4933, 237767, 1, 509, 30091, 1, 3371, 243707, 2549, 81901, 1, 1619, 1, 1, 1, 1, 15797, 84589, 1327, 255803, 1, 1409, 32359, 2113, 1, 261959, 5479, 1, 1949, 29567, 11131, 1, 1, 1, 1, 90793, 11393, 5179, 1, 1, 8677, 1753, 1, 280859, 1, 1, 35509, 1, 1, 9907, 1, 1, 36319, 97213, 12197, 6833, 1, 98669, 599, 99401, 4157, 1, 1, 1, 1, 33871, 3187, 307067, 12841, 34367, 38803, 3581, 3257, 1, 1, 1, 1279, 106109, 1, 18859, 6703, 2503, 1, 36131, 13597, 327479, 13693, 36643, 5171, 3571, 1, 334427, 1, 112253, 1, 1, 1, 341447, 1, 114601, 1487, 12821, 1, 4909, 3643, 1, 1, 1, 14771, 5309, 4957, 1511, 1321, 7069, 1, 5417, 15173, 121789, 45823, 40867, 1, 370247, 1, 41411, 1, 125053, 15683, 4243, 1, 1, 1, 127529, 1777, 385079, 16097, 129193, 1, 1, 1, 1, 16411, 1, 49549, 1, 8311, 400199, 1, 1, 50503, 135101, 5647, 1, 2131, 136813, 25733, 5099, 1, 415607, 1, 1721, 1, 140269, 4397, 24907, 1, 1, 53419, 3323, 1493, 13913, 9013, 1831, 54409, 1, 1, 2909, 1, 49103, 3463, 148201, 1, 1, 1, 149993, 1, 150893, 1, 1, 19031, 1, 727, 51203, 9629, 6529, 1, 1, 1, 1, 1, 471803, 1, 158189, 1, 159113, 1, 2153, 20063, 160969, 30269, 17989, 1, 2027, 1, 1, 3623, 9689, 1, 8147, 3461, 166601, 62653, 1, 7001, 17431, 1, 4133, 1, 1, 1, 514103, 21481, 1, 1, 173293, 10861, 3761, 1, 175229, 1, 176201, 1, 1523, 1, 2659, 2161, 1, 22453, 540347, 1, 1, 1, 182089, 787, 1, 7649, 184073, 34607, 185069, 1933, 558203, 23321, 187069, 2269, 20897, 1, 1, 1, 21121, 71473, 1, 1, 3671, 4013, 193133, 1, 6263, 8111, 2069, 1, 196201, 9221, 2267, 1, 1, 24847, 66431, 74929, 200329, 12553, 1, 1, 202409, 76099, 6563, 2833, 613499, 1, 205549, 38639, 4051, 1, 622967, 1, 2399, 39233, 2357, 1, 15427, 8807, 1, 1, 212969, 1, 1, 13411, 2417, 1, 1, 27091, 651803, 13613, 8087, 20521, 219433, 1, 1, 1, 1, 1, 2819, 4651, 8089, 1, 13229, 4973, 1, 14159, 21977, 3557, 1, 1, 229309, 1, 1, 1, 231533, 43517, 2803, 1, 5119, 1723, 1, 1, 1, 7393, 1, 1, 79423, 89563, 4517, 7499, 1, 5023, 1, 90841, 242813, 10141, 43051, 1, 1871, 2879, 27361, 30853, 742199, 1, 27617, 5839, 3727, 15643, 752603, 10477, 252029, 2203, 3779, 1, 44887, 1, 1, 96043, 2087, 1, 1, 1, 86351, 1, 1, 32603, 27043, 1, 1, 1, 1, 1, 4441, 1, 1, 1, 89123, 1, 805703, 16823, 89923, 1913, 270973, 1, 816539, 5683, 8819, 1, 1, 11467, 827447, 1, 1, 26029, 1, 1, 10613, 1, 31189, 1, 1, 17659, 20719, 1, 16729, 6287, 285629, 11927, 3041, 1, 288109, 1, 96451, 1, 5851, 1, 97283, 1, 2689, 1, 6353, 1, 17389, 111091, 1, 1, 894407, 1, 299401, 1907, 1, 37663, 905819, 18911, 1, 14243, 304489, 1, 53959, 1, 7489, 14423, 308333, 1, 928859, 38783, 1, 116833, 1, 19553, 1, 9817, 1, 4079, 7351, 1, 1, 3313, 318701, 59879, 320009, 1, 10831, 1, 322633, 60617, 1, 1, 975803, 1, 108863, 122719, 19289, 1, 16741, 1, 330569, 124213, 5441, 1, 1, 1, 1, 1, 2731, 42073, 15101, 1, 1, 1, 19997, 1, 33029, 14249, 342653, 128749, 1, 1, 14593, 5407, 3181, 130279, 38677, 43597, 36151, 5471, 2293, 3877, 352201, 44111, 34217, 1, 354953, 66683, 356333, 3719, 1073147, 1, 359101, 134923, 120163, 11287, 26479, 1, 1, 3329, 364669, 1, 1098203, 1, 367469, 8629, 368873, 1, 1110839, 1, 7013, 1091, 124367, 1, 1, 1, 125311, 141241,

6. Sequence of the polynom (only primes)

59, 3, 109, 29, 67, 31, 887, 43, 131, 83, 17, 1787, 701, 283, 809, 89, 61, 1033, 409, 383, 151, 3803, 463, 197, 4919, 71, 1901, 41, 263, 53, 257, 149, 139, 79, 2749, 353, 8699, 587, 3209, 137, 10103, 431, 3529, 677, 1231, 11579, 1543, 4201, 13127, 157, 1741, 4733, 14747, 313, 5101, 487, 673, 967, 541, 5869, 373, 167, 6269, 2389, 6473, 691, 1291, 1433, 7753, 983, 337, 1559, 8429, 1097, 8893, 179, 593, 3203, 739, 491, 10601, 1123, 1373, 11113, 223, 719, 521, 1471, 3967, 4513, 769, 557, 12713, 419, 547, 751, 797, 1747, 42359, 1783, 1601, 2729, 241, 44987, 631, 5791, 503, 1109, 953, 6133, 5503, 2083, 50459, 1061, 5711, 1621, 17449, 18089, 18413, 3307, 19069, 7213, 1223, 59207, 311, 6691, 7591, 877, 21101, 3989, 3847, 22153, 709, 2213, 8779, 23593, 743, 71879, 24329, 317, 1453, 75227, 1579, 25453, 601, 3253, 3301, 8867, 1699, 82139, 27773, 617, 1657, 85703, 10939, 9791, 3697, 2179, 937, 347, 3851, 93047, 1301, 349, 96827, 12343, 1213, 2111, 1259, 12829, 34429, 3607, 3331, 35753, 1499, 829, 3457, 2333, 1847, 4723, 12671, 14341, 6871, 39869, 121019, 40813, 13763, 125303, 14083, 1811, 401, 44201, 134087, 1051, 17041, 5077, 5743, 138587, 2903, 5189, 2777, 143159, 1999, 2273, 1021, 2423, 49789, 152519, 1597, 17123, 6521, 157307, 52973, 907, 6791, 54601, 10289, 433, 167099, 6997, 1103, 56809, 2917, 1201, 1093, 2017, 3343, 3709, 59629, 6689, 7561, 4447, 449, 5779, 61933, 3889, 187547, 2617, 23773, 63689, 2441, 1009, 2237, 24439, 8221, 67273, 8447, 6569, 947, 68489, 12899, 1607, 209147, 8753, 1153, 4493, 1087, 7109, 74093, 74729, 226103, 9461, 2621, 1789, 5393, 2887, 4933, 237767, 509, 30091, 3371, 243707, 2549, 81901, 1619, 15797, 84589, 1327, 255803, 1409, 32359, 2113, 261959, 5479, 1949, 29567, 11131, 90793, 11393, 5179, 8677, 1753, 280859, 35509, 9907, 36319, 97213, 12197, 6833, 98669, 599, 99401, 4157, 33871, 3187, 307067, 12841, 34367, 38803, 3581, 3257, 1279, 106109, 18859, 6703, 2503, 36131, 13597, 327479, 13693, 36643, 5171, 3571, 334427, 112253, 341447, 114601, 1487, 12821, 4909, 3643, 14771, 5309, 4957, 1511, 1321, 7069, 5417, 15173, 121789, 45823, 40867, 370247, 41411, 125053, 15683, 4243, 127529, 1777, 385079, 16097, 129193, 16411, 49549, 8311, 400199, 50503, 135101, 5647, 2131, 136813, 25733, 5099, 415607, 1721, 140269, 4397, 24907, 53419, 3323, 1493, 13913, 9013, 1831, 54409, 2909, 49103, 3463, 148201, 149993, 150893, 19031, 727, 51203, 9629, 6529, 471803, 158189, 159113, 2153, 20063, 160969, 30269, 17989, 2027, 3623, 9689, 8147, 3461, 166601, 62653, 7001, 17431, 4133, 514103, 21481, 173293, 10861, 3761, 175229, 176201, 1523, 2659, 2161, 22453, 540347, 182089, 787, 7649, 184073, 34607, 185069, 1933, 558203, 23321, 187069, 2269, 20897, 21121, 71473, 3671, 4013, 193133, 6263, 8111, 2069, 196201, 9221, 2267, 24847, 66431, 74929, 200329, 12553, 202409, 76099, 6563, 2833, 613499, 205549, 38639, 4051, 622967, 2399, 39233, 2357, 15427, 8807, 212969, 13411, 2417, 27091, 651803, 13613, 8087, 20521, 219433, 2819, 4651, 8089, 13229, 4973, 14159, 21977, 3557, 229309, 231533, 43517, 2803, 5119, 1723, 7393, 79423, 89563, 4517, 7499, 5023, 90841, 242813, 10141, 43051, 1871, 2879, 27361, 30853, 742199, 27617, 5839, 3727, 15643, 752603, 10477, 252029, 2203, 3779, 44887, 96043, 2087, 86351, 32603, 27043, 4441, 89123, 805703, 16823, 89923, 1913, 270973, 816539, 5683, 8819, 11467, 827447, 26029, 10613, 31189, 17659, 20719, 16729, 6287, 285629, 11927, 3041, 288109, 96451, 5851, 97283, 2689, 6353, 17389, 111091, 894407, 299401, 1907, 37663, 905819, 18911, 14243, 304489, 53959, 7489, 14423, 308333, 928859, 38783, 116833, 19553, 9817, 4079, 7351, 3313, 318701, 59879, 320009, 10831, 322633, 60617, 975803, 108863, 122719, 19289, 16741, 330569, 124213, 5441, 2731, 42073, 15101, 19997, 33029, 14249, 342653, 128749, 14593, 5407, 3181, 130279, 38677, 43597, 36151, 5471, 2293, 3877, 352201, 44111, 34217, 354953, 66683, 356333, 3719, 1073147, 359101, 134923, 120163, 11287, 26479, 3329, 364669, 1098203, 367469, 8629, 368873, 1110839, 7013, 1091, 124367, 125311, 141241,

7. Distribution of the primes

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

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
21006423410.6400000.2300000.4100006.4000004.6000008.200000
31.0005991484510.5990000.1480000.4510009.3593756.43478311.000000
410.0006.2421.0935.1490.6242000.1093000.51490010.4207017.38513511.416851
5100.00064.0578.21055.8470.6405700.0821000.55847010.2622567.51143610.846184
61.000.000650.17665.740584.4360.6501760.0657400.58443610.1499618.00730810.464949
710.000.0006.565.110551.7686.013.3420.6565110.0551770.60133410.0974358.39318610.289137
8100.000.00066.123.6924.746.87061.376.8220.6612370.0474690.61376810.0719858.60301810.206774
91.000.000.000664.854.56241.663.682623.190.8800.6648550.0416640.62319110.0547108.77708410.153522
1010.000.000.0006.677.339.766371.229.7276.306.110.0390.6677340.0371230.63061110.0433088.91015210.119066


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
245321.2500000.7500000.5000001.6666671.5000002.000000
389451.1250000.5000000.6250001.8000001.3333332.500000
41614770.8750000.4375000.4375001.5555561.7500001.400000
5322510150.7812500.3125000.4687501.7857141.4285712.142857
6644416280.6875000.2500000.4375001.7600001.6000001.866667
71287825530.6093750.1953120.4140621.7727271.5625001.892857
8256154471070.6015620.1835940.4179691.9743591.8800002.018868
9512304842200.5937500.1640620.4296881.9740261.7872342.056075
101.0246121534590.5976560.1494140.4482422.0131581.8214292.086364
112.0481.2412709710.6059570.1318360.4741212.0277781.7647062.115469
124.0962.5125082.0040.6132810.1240230.4892582.0241741.8814822.063852
138.1925.0989204.1780.6223140.1123050.5100102.0294591.8110242.084830
1416.38410.3231.6408.6830.6300660.1000980.5299682.0249121.7826092.078267
1532.76820.8243.04317.7810.6354980.0928650.5426332.0172431.8554882.047795
1665.53641.8975.64636.2510.6392970.0861510.5531462.0119571.8554062.038749
17131.07284.16710.44873.7190.6421430.0797120.5624312.0089031.8505142.033571
18262.144169.21219.491149.7210.6454930.0743520.5711402.0104321.8655252.030969
19524.288339.77136.502303.2690.6480620.0696220.5784402.0079601.8727622.025561
201.048.576681.98468.704613.2800.6503910.0655210.5848692.0071871.8821982.022231
212.097.1521.368.118130.4531.237.6650.6523690.0622050.5901652.0060851.8987692.018108
224.194.3042.744.440246.4522.497.9880.6543250.0587590.5955672.0059961.8892022.018307
238.388.6085.504.162468.5905.035.5720.6561470.0558600.6002872.0055681.9013442.015851
2416.777.21611.034.119893.63610.140.4830.6576850.0532650.6044202.0046861.9070742.013770
2533.554.43222.118.4851.705.80320.412.6820.6591820.0508370.6083452.0045541.9088342.012989
2667.108.86444.325.9683.264.84641.061.1220.6605080.0486500.6118582.0040241.9139642.011549
27134.217.72888.818.9746.261.89382.557.0810.6617530.0466550.6150982.0037681.9179752.010590
28268.435.456177.944.59412.025.804165.918.7900.6628950.0448000.6180962.0034521.9204742.009746
29536.870.912356.461.13223.133.237333.327.8950.6639610.0430890.6208722.0032141.9236332.008982
301.073.741.824713.986.93344.566.428669.420.5050.6649520.0415060.6234462.0029871.9265112.008294
312.147.483.6481.429.960.19785.974.2881.343.985.9090.6658770.0400350.6258422.0027821.9291272.007686
324.294.967.2962.863.653.598166.088.5512.697.565.0470.6667460.0386710.6280762.0026111.9318402.007138
338.589.934.5925.734.320.558321.190.7805.413.129.7780.6675630.0373920.6301712.0024491.9338532.006673
3417.179.869.18411.481.816.737621.848.31510.859.968.4220.6683300.0361960.6321332.0022981.9360722.006227


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
122010200
243020210
384030211
4167150511
53210271612
664163121924
71282571721157
8256471729518915
95128432519331626
101.024153589418572751
112.04827010016937993797
124.0965081873206718370188
138.192920333586115340126339
1416.3841.6405901.049234595214597
1532.7683.0431.0991.9434171.1054151.106
1665.5365.6462.0363.6097762.0317672.072
17131.07210.4483.6816.7661.3813.8051.4063.856
18262.14419.4916.89512.5952.5877.1802.5907.134
19524.28836.50212.77823.7234.83513.3984.83813.431
201.048.57668.70424.03944.6649.16925.2129.11125.212
212.097.152130.45345.59484.85817.35448.03917.15947.901
224.194.304246.45285.810160.64132.61390.78532.43790.617
238.388.608468.590162.706305.88361.811172.61661.593172.570
2416.777.216893.636309.653583.982117.159329.837117.231329.409
2533.554.4321.705.803589.8801.115.922222.962630.061223.100629.680
2667.108.8643.264.8461.127.4802.137.365425.9031.206.641426.1231.206.179
27134.217.7286.261.8932.159.9414.101.951815.6902.315.622816.1312.314.450
28268.435.45612.025.8044.141.2187.884.5851.563.3004.449.0521.564.0884.449.364
29536.870.91223.133.2377.954.83315.178.4033.002.1618.562.2533.003.8708.564.953
301.073.741.82444.566.42815.305.88229.260.5455.776.90816.503.9825.774.88716.510.651
312.147.483.64885.974.28829.493.03456.481.25311.130.51831.862.05411.126.54231.855.174
324.294.967.296166.088.55156.921.650109.166.90021.477.12661.574.26421.472.50161.564.660
338.589.934.592321.190.780109.975.600211.215.17941.483.238119.116.24441.479.558119.111.740
3417.179.869.184621.848.315212.755.028409.093.28680.224.056230.696.61980.232.103230.695.537


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
242200110
385410311
4167431321
53215873345
6642813159478
71285328251891610
8256107575032203223
951222011610463397048
101.0244592292301348614297
112.048971497474254214288215
124.0962.0041.017987517458589440
138.1924.1782.1082.0701.1049551.177942
1416.3848.6834.4274.2562.3001.9592.4092.015
1532.76817.7819.0288.7534.7274.1374.7884.129
1665.53636.25118.33317.9189.7308.4349.7648.323
17131.07273.71937.16936.55019.70917.14919.77717.084
18262.144149.72175.39274.32939.82635.08039.90134.914
19524.288303.269152.586150.68380.24471.41480.41371.198
201.048.576613.280308.120305.160161.399145.095161.830144.956
212.097.1521.237.665622.105615.560324.874293.588325.644293.559
224.194.3042.497.9881.255.7551.242.233654.261594.812654.926593.989
238.388.6085.035.5722.530.6882.504.8841.315.5901.201.4561.316.7151.201.811
2416.777.21610.140.4835.096.4275.044.0562.644.4392.426.1822.644.9242.424.938
2533.554.43220.412.68210.258.44010.154.2425.310.9244.893.8065.312.3064.895.646
2667.108.86441.061.12220.630.58920.430.53310.667.3019.860.16710.666.5019.867.153
27134.217.72882.557.08141.475.68041.081.40121.409.52319.865.30521.405.99319.876.260
28268.435.456165.918.79083.331.76782.587.02342.957.70139.994.84242.961.76340.004.484
29536.870.912333.327.895167.386.769165.941.12686.183.28180.476.92586.180.79280.486.897
301.073.741.824669.420.505336.089.473333.331.032172.848.491161.856.188172.852.320161.863.506
312.147.483.6481.343.985.909674.623.781669.362.128346.589.059325.412.883346.593.120325.390.847
324.294.967.2962.697.565.0471.353.912.5321.343.652.515694.884.233653.898.749694.898.192653.883.873
338.589.934.5925.413.129.7782.716.548.9342.696.580.8441.392.927.6701.313.646.2341.392.931.5081.313.624.366
3417.179.869.18410.859.968.4225.449.318.9055.410.649.5172.791.760.8662.638.219.1492.791.798.0802.638.190.327


8. Check for existing Integer Sequences by OEIS

Found in Database : 59, 3, 109, 29, 67, 31, 887, 43, 131, 83, 17, 1, 1787, 1, 701, 283, 809, 1, 89, 61,
Found in Database : 59, 3, 109, 29, 67, 31, 887, 43, 131, 83, 17, 1787, 701, 283, 809, 89, 61, 1033, 409, 383, 151, 3803, 463, 197, 4919, 71, 1901, 41, 263, 53,
Found in Database : 3, 17, 29, 31, 41, 43, 53, 59, 61, 67, 71, 79, 83, 89, 109, 131, 137, 139, 149,