Inhaltsverzeichnis

Development of
Algorithmic Constructions

11:36:02
Deutsch
19.Apr 2024

Polynom = x^2+20x-31

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) = 31 = 31
f(1) = 5 = 5
f(2) = 13 = 13
f(3) = 19 = 19
f(4) = 65 = 5*13
f(5) = 47 = 47
f(6) = 125 = 5*5*5
f(7) = 79 = 79
f(8) = 193 = 193
f(9) = 115 = 5*23
f(10) = 269 = 269
f(11) = 155 = 5*31
f(12) = 353 = 353
f(13) = 199 = 199
f(14) = 445 = 5*89
f(15) = 247 = 13*19
f(16) = 545 = 5*109
f(17) = 299 = 13*23
f(18) = 653 = 653
f(19) = 355 = 5*71
f(20) = 769 = 769
f(21) = 415 = 5*83
f(22) = 893 = 19*47
f(23) = 479 = 479
f(24) = 1025 = 5*5*41
f(25) = 547 = 547
f(26) = 1165 = 5*233
f(27) = 619 = 619
f(28) = 1313 = 13*101
f(29) = 695 = 5*139
f(30) = 1469 = 13*113
f(31) = 775 = 5*5*31
f(32) = 1633 = 23*71
f(33) = 859 = 859
f(34) = 1805 = 5*19*19
f(35) = 947 = 947
f(36) = 1985 = 5*397
f(37) = 1039 = 1039
f(38) = 2173 = 41*53
f(39) = 1135 = 5*227
f(40) = 2369 = 23*103
f(41) = 1235 = 5*13*19
f(42) = 2573 = 31*83
f(43) = 1339 = 13*103
f(44) = 2785 = 5*557
f(45) = 1447 = 1447
f(46) = 3005 = 5*601
f(47) = 1559 = 1559
f(48) = 3233 = 53*61
f(49) = 1675 = 5*5*67
f(50) = 3469 = 3469
f(51) = 1795 = 5*359
f(52) = 3713 = 47*79
f(53) = 1919 = 19*101
f(54) = 3965 = 5*13*61
f(55) = 2047 = 23*89
f(56) = 4225 = 5*5*13*13
f(57) = 2179 = 2179
f(58) = 4493 = 4493
f(59) = 2315 = 5*463
f(60) = 4769 = 19*251
f(61) = 2455 = 5*491
f(62) = 5053 = 31*163
f(63) = 2599 = 23*113
f(64) = 5345 = 5*1069
f(65) = 2747 = 41*67
f(66) = 5645 = 5*1129
f(67) = 2899 = 13*223
f(68) = 5953 = 5953
f(69) = 3055 = 5*13*47
f(70) = 6269 = 6269
f(71) = 3215 = 5*643
f(72) = 6593 = 19*347
f(73) = 3379 = 31*109
f(74) = 6925 = 5*5*277
f(75) = 3547 = 3547
f(76) = 7265 = 5*1453
f(77) = 3719 = 3719
f(78) = 7613 = 23*331
f(79) = 3895 = 5*19*41
f(80) = 7969 = 13*613
f(81) = 4075 = 5*5*163
f(82) = 8333 = 13*641
f(83) = 4259 = 4259
f(84) = 8705 = 5*1741
f(85) = 4447 = 4447
f(86) = 9085 = 5*23*79
f(87) = 4639 = 4639
f(88) = 9473 = 9473
f(89) = 4835 = 5*967
f(90) = 9869 = 71*139
f(91) = 5035 = 5*19*53
f(92) = 10273 = 10273
f(93) = 5239 = 13*13*31
f(94) = 10685 = 5*2137
f(95) = 5447 = 13*419
f(96) = 11105 = 5*2221
f(97) = 5659 = 5659
f(98) = 11533 = 19*607
f(99) = 5875 = 5*5*5*47
f(100) = 11969 = 11969

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+20x-31

f(0)=31
f(1)=5
f(2)=13
f(3)=19
f(4)=1
f(5)=47
f(6)=1
f(7)=79
f(8)=193
f(9)=23
f(10)=269
f(11)=1
f(12)=353
f(13)=199
f(14)=89
f(15)=1
f(16)=109
f(17)=1
f(18)=653
f(19)=71
f(20)=769
f(21)=83
f(22)=1
f(23)=479
f(24)=41
f(25)=547
f(26)=233
f(27)=619
f(28)=101
f(29)=139
f(30)=113
f(31)=1
f(32)=1
f(33)=859
f(34)=1
f(35)=947
f(36)=397
f(37)=1039
f(38)=53
f(39)=227
f(40)=103
f(41)=1
f(42)=1
f(43)=1
f(44)=557
f(45)=1447
f(46)=601
f(47)=1559
f(48)=61
f(49)=67
f(50)=3469
f(51)=359
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=2179
f(58)=4493
f(59)=463
f(60)=251
f(61)=491
f(62)=163
f(63)=1
f(64)=1069
f(65)=1
f(66)=1129
f(67)=223
f(68)=5953
f(69)=1
f(70)=6269
f(71)=643
f(72)=347
f(73)=1
f(74)=277
f(75)=3547
f(76)=1453
f(77)=3719
f(78)=331
f(79)=1
f(80)=613
f(81)=1
f(82)=641
f(83)=4259
f(84)=1741
f(85)=4447
f(86)=1
f(87)=4639
f(88)=9473
f(89)=967
f(90)=1
f(91)=1
f(92)=10273
f(93)=1
f(94)=2137
f(95)=419
f(96)=2221
f(97)=5659
f(98)=607
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+20x-31 could be written as f(y)= y^2-131 with x=y-10

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

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

31, 5, 13, 19, 1, 47, 1, 79, 193, 23, 269, 1, 353, 199, 89, 1, 109, 1, 653, 71, 769, 83, 1, 479, 41, 547, 233, 619, 101, 139, 113, 1, 1, 859, 1, 947, 397, 1039, 53, 227, 103, 1, 1, 1, 557, 1447, 601, 1559, 61, 67, 3469, 359, 1, 1, 1, 1, 1, 2179, 4493, 463, 251, 491, 163, 1, 1069, 1, 1129, 223, 5953, 1, 6269, 643, 347, 1, 277, 3547, 1453, 3719, 331, 1, 613, 1, 641, 4259, 1741, 4447, 1, 4639, 9473, 967, 1, 1, 10273, 1, 2137, 419, 2221, 5659, 607, 1, 11969, 1, 12413, 1, 1, 6547, 1, 6779, 1061, 1, 751, 1451, 14753, 7499, 3049, 127, 1, 421, 16253, 1, 409, 131, 17293, 8779, 1, 1, 3673, 9319, 18913, 1, 19469, 1, 1, 10159, 317, 337, 1, 10739, 21773, 2207, 22369, 2267, 22973, 1, 1, 919, 1, 1, 1307, 503, 25469, 2579, 26113, 13219, 1, 1, 1097, 13879, 2161, 2843, 2213, 1, 29453, 1, 6029, 1, 1, 821, 1, 3191, 1, 1, 32993, 1283, 1, 17047, 1, 17419, 1531, 3559, 35969, 727, 1, 1, 577, 18947, 1, 1, 953, 3947, 39869, 4027, 457, 1, 8297, 20947, 8461, 1, 43133, 1, 43969, 1, 1093, 22619, 9133, 1213, 1861, 443, 571, 4783, 1, 4871, 1, 24799, 10009, 25247, 1, 829, 51853, 5231, 52769, 5323, 53693, 2083, 1, 1, 11113, 28019, 1823, 1, 569, 1, 823, 1, 1, 29947, 929, 499, 4721, 1, 1327, 6287, 1, 1, 1, 1, 1, 1433, 2143, 1, 1, 523, 1, 34519, 13913, 1, 1, 757, 71693, 1, 1373, 7331, 1, 37199, 1153, 37747, 1, 38299, 77153, 1, 1, 7883, 79393, 39979, 3221, 3119, 16333, 3163, 82813, 1, 83969, 1, 85133, 42859, 1, 1889, 17497, 937, 1, 1, 1, 1, 1493, 1993, 18457, 46447, 18701, 47059, 1553, 1907, 5051, 743, 97213, 1, 1, 49547, 3989, 1, 4391, 10163, 3299, 1, 103553, 983, 1613, 52747, 1, 797, 107453, 1, 108769, 1, 1237, 701, 4457, 1367, 1187, 4363, 114113, 883, 115469, 1, 116833, 877, 1, 59447, 23917, 60139, 6367, 1, 9413, 1, 9521, 1, 25037, 3313, 25321, 63659, 128033, 1, 129469, 1, 1, 1, 1151, 5119, 1, 3541, 1, 1, 136769, 13751, 6011, 69499, 1471, 1, 1, 70999, 1, 1, 1621, 14503, 4703, 1, 1, 74047, 1567, 3253, 150413, 1163, 151969, 1, 153533, 1, 1, 3389, 31337, 1109, 971, 15907, 159869, 16067, 12421, 1979, 1, 1, 32941, 82759, 3539, 3343, 1, 16879, 1, 2749, 34253, 6619, 6917, 1, 7591, 1, 1, 1, 177953, 89399, 1, 90247, 36269, 91099, 14081, 1, 1, 977, 1, 4073, 7529, 94547, 37993, 95419, 4079, 19259, 193469, 1, 1933, 1, 1, 98947, 1, 99839, 200573, 20147, 10651, 20327, 204173, 102539, 3169, 1, 1, 1321, 5113, 4211, 211469, 1, 1, 107119, 1871, 1049, 8681, 1, 3083, 1, 1, 22171, 4201, 111799, 44909, 3637, 45289, 1697, 228353, 997, 17713, 1217, 1, 116579, 1873, 1, 1523, 5153, 12527, 23899, 1, 1, 2141, 9343, 48781, 9419, 49177, 123439, 247873, 1, 13151, 25087, 1, 1, 50777, 127447, 1, 6761, 19841, 5179, 1, 26099, 1, 131519, 52813, 132547, 2129, 1, 1, 1, 270269, 2087, 272353, 1, 1, 1, 1, 138799, 4159, 1, 280769, 28183, 1, 6173, 1, 2699, 1, 4649, 15227, 1, 7109, 5851, 293633, 1459, 1, 1, 1, 11503, 1, 1, 3643, 30347, 4993, 152839, 61357, 153947, 2687, 8161, 1, 6247, 24113, 1, 1, 158419, 3347, 1549, 12809, 3919, 1, 32363, 4111, 1, 1303, 1, 1, 165247, 3491, 166399, 6301, 1, 2063, 1, 1, 8941, 1, 171047, 5281, 172219, 6521, 34679, 347969, 6983, 1571, 175759, 3067, 1, 1511, 1, 357473, 1, 359869, 36107, 1, 181739, 72937, 1619, 73421, 3019, 9013, 1483, 1, 1, 1, 3079, 3967, 2393, 15173, 8273, 381793, 38303, 1931, 2029, 9433, 14923, 77849, 1, 1667, 196499, 3617, 39551, 12799, 1, 1759, 1, 16073, 201547, 6221, 1597, 1, 40819, 1, 1, 412033, 4397, 1, 207947, 83437, 2351, 18251, 1, 422369, 3259, 22367, 213139, 85517, 1637, 1, 1, 432833, 1, 1, 1409, 1, 1, 6781, 221047, 17737, 222379, 1, 1, 448769, 1, 14563, 4817, 1489, 17519, 91369, 17623, 1, 46091, 4241, 1, 464993, 1, 1, 234547, 4091, 235919, 1, 47459, 1, 9547, 15443, 240059, 1, 2909, 96857, 12781, 487073, 48847, 489869, 3779, 492673, 1, 2417, 248447, 99661, 249859, 501133, 1, 503969, 50539, 1, 254119, 7841, 1, 1, 11173, 4561, 51683, 11027, 51971, 521153, 8429, 1, 262747, 105389, 20323, 1, 1, 2347, 1, 23291, 1, 1, 1, 1, 1, 544513, 1, 1831, 10979, 3257, 1693, 110681, 1, 1, 1, 1, 56087, 1699, 1, 7963, 21803, 1, 1, 114281, 286459, 574433, 11519, 4547, 57899, 580513, 12653, 1, 9437, 1, 6257, 45361, 59123, 5869, 1, 14533, 1, 1, 300247, 1, 3391, 1, 1, 608269, 4691, 611393, 306479, 1, 1, 1, 1, 620813, 1, 1, 12511, 2539, 314359, 9697, 2273, 1, 317539, 636673, 1, 12073, 2789, 643073, 322339, 6803, 24919, 129901, 1, 652733, 1, 9239, 3461, 9839, 8059, 2819, 1, 1, 333679, 51461, 1, 51713, 67391, 675553, 1, 5903, 3823, 136429, 1, 685453, 68711, 36251, 1, 30091, 26683, 27817, 348547, 139753, 350219, 702113, 70379, 1777, 14143, 37307, 6703, 10957, 356947, 1, 1, 718973, 3793, 722369, 1, 9187, 6863, 3557, 15889, 146521, 1, 23743, 1, 739469, 1, 742913, 5557, 1, 374047, 1, 375779, 1, 75503, 2531, 1, 58481, 2741, 1, 382747, 153449, 3733, 1, 1, 40751, 1, 9371, 29983, 31253, 30119, 1987, 1, 788413, 2549, 791969, 1, 795533, 17333, 2251, 9767, 1, 402239, 1, 4253, 809869, 3529, 1, 407639, 163417, 1, 1, 411259, 17539, 1, 827969, 1, 13633, 416719, 1877, 1, 1, 3209, 1, 84443, 27299, 84811, 65381, 425899, 1, 1, 171469, 429599, 861053, 86291, 12907, 1, 868493, 435179, 1, 33619, 4273, 1, 879713, 3833, 28499, 17707, 887233, 1, 1, 446447, 2671, 1, 1, 1, 1, 2917, 12763, 454039, 181997, 1, 9619, 2017, 917633, 1, 1, 7103, 40231, 1, 185833, 1, 37321, 467479, 4021, 1, 40903, 3041, 1, 7759, 14593, 25013, 14653, 1, 956353, 1, 9323, 96223, 1, 2503, 1, 21089, 194413, 37463, 976013, 7523, 979969, 1, 1, 21433, 10399, 1, 198377, 7417, 1, 99787, 76913, 5273, 1, 5651, 201577, 504947, 202381, 4651, 44171, 20359,

6. Sequence of the polynom (only primes)

31, 5, 13, 19, 47, 79, 193, 23, 269, 353, 199, 89, 109, 653, 71, 769, 83, 479, 41, 547, 233, 619, 101, 139, 113, 859, 947, 397, 1039, 53, 227, 103, 557, 1447, 601, 1559, 61, 67, 3469, 359, 2179, 4493, 463, 251, 491, 163, 1069, 1129, 223, 5953, 6269, 643, 347, 277, 3547, 1453, 3719, 331, 613, 641, 4259, 1741, 4447, 4639, 9473, 967, 10273, 2137, 419, 2221, 5659, 607, 11969, 12413, 6547, 6779, 1061, 751, 1451, 14753, 7499, 3049, 127, 421, 16253, 409, 131, 17293, 8779, 3673, 9319, 18913, 19469, 10159, 317, 337, 10739, 21773, 2207, 22369, 2267, 22973, 919, 1307, 503, 25469, 2579, 26113, 13219, 1097, 13879, 2161, 2843, 2213, 29453, 6029, 821, 3191, 32993, 1283, 17047, 17419, 1531, 3559, 35969, 727, 577, 18947, 953, 3947, 39869, 4027, 457, 8297, 20947, 8461, 43133, 43969, 1093, 22619, 9133, 1213, 1861, 443, 571, 4783, 4871, 24799, 10009, 25247, 829, 51853, 5231, 52769, 5323, 53693, 2083, 11113, 28019, 1823, 569, 823, 29947, 929, 499, 4721, 1327, 6287, 1433, 2143, 523, 34519, 13913, 757, 71693, 1373, 7331, 37199, 1153, 37747, 38299, 77153, 7883, 79393, 39979, 3221, 3119, 16333, 3163, 82813, 83969, 85133, 42859, 1889, 17497, 937, 1493, 1993, 18457, 46447, 18701, 47059, 1553, 1907, 5051, 743, 97213, 49547, 3989, 4391, 10163, 3299, 103553, 983, 1613, 52747, 797, 107453, 108769, 1237, 701, 4457, 1367, 1187, 4363, 114113, 883, 115469, 116833, 877, 59447, 23917, 60139, 6367, 9413, 9521, 25037, 3313, 25321, 63659, 128033, 129469, 1151, 5119, 3541, 136769, 13751, 6011, 69499, 1471, 70999, 1621, 14503, 4703, 74047, 1567, 3253, 150413, 1163, 151969, 153533, 3389, 31337, 1109, 971, 15907, 159869, 16067, 12421, 1979, 32941, 82759, 3539, 3343, 16879, 2749, 34253, 6619, 6917, 7591, 177953, 89399, 90247, 36269, 91099, 14081, 977, 4073, 7529, 94547, 37993, 95419, 4079, 19259, 193469, 1933, 98947, 99839, 200573, 20147, 10651, 20327, 204173, 102539, 3169, 1321, 5113, 4211, 211469, 107119, 1871, 1049, 8681, 3083, 22171, 4201, 111799, 44909, 3637, 45289, 1697, 228353, 997, 17713, 1217, 116579, 1873, 1523, 5153, 12527, 23899, 2141, 9343, 48781, 9419, 49177, 123439, 247873, 13151, 25087, 50777, 127447, 6761, 19841, 5179, 26099, 131519, 52813, 132547, 2129, 270269, 2087, 272353, 138799, 4159, 280769, 28183, 6173, 2699, 4649, 15227, 7109, 5851, 293633, 1459, 11503, 3643, 30347, 4993, 152839, 61357, 153947, 2687, 8161, 6247, 24113, 158419, 3347, 1549, 12809, 3919, 32363, 4111, 1303, 165247, 3491, 166399, 6301, 2063, 8941, 171047, 5281, 172219, 6521, 34679, 347969, 6983, 1571, 175759, 3067, 1511, 357473, 359869, 36107, 181739, 72937, 1619, 73421, 3019, 9013, 1483, 3079, 3967, 2393, 15173, 8273, 381793, 38303, 1931, 2029, 9433, 14923, 77849, 1667, 196499, 3617, 39551, 12799, 1759, 16073, 201547, 6221, 1597, 40819, 412033, 4397, 207947, 83437, 2351, 18251, 422369, 3259, 22367, 213139, 85517, 1637, 432833, 1409, 6781, 221047, 17737, 222379, 448769, 14563, 4817, 1489, 17519, 91369, 17623, 46091, 4241, 464993, 234547, 4091, 235919, 47459, 9547, 15443, 240059, 2909, 96857, 12781, 487073, 48847, 489869, 3779, 492673, 2417, 248447, 99661, 249859, 501133, 503969, 50539, 254119, 7841, 11173, 4561, 51683, 11027, 51971, 521153, 8429, 262747, 105389, 20323, 2347, 23291, 544513, 1831, 10979, 3257, 1693, 110681, 56087, 1699, 7963, 21803, 114281, 286459, 574433, 11519, 4547, 57899, 580513, 12653, 9437, 6257, 45361, 59123, 5869, 14533, 300247, 3391, 608269, 4691, 611393, 306479, 620813, 12511, 2539, 314359, 9697, 2273, 317539, 636673, 12073, 2789, 643073, 322339, 6803, 24919, 129901, 652733, 9239, 3461, 9839, 8059, 2819, 333679, 51461, 51713, 67391, 675553, 5903, 3823, 136429, 685453, 68711, 36251, 30091, 26683, 27817, 348547, 139753, 350219, 702113, 70379, 1777, 14143, 37307, 6703, 10957, 356947, 718973, 3793, 722369, 9187, 6863, 3557, 15889, 146521, 23743, 739469, 742913, 5557, 374047, 375779, 75503, 2531, 58481, 2741, 382747, 153449, 3733, 40751, 9371, 29983, 31253, 30119, 1987, 788413, 2549, 791969, 795533, 17333, 2251, 9767, 402239, 4253, 809869, 3529, 407639, 163417, 411259, 17539, 827969, 13633, 416719, 1877, 3209, 84443, 27299, 84811, 65381, 425899, 171469, 429599, 861053, 86291, 12907, 868493, 435179, 33619, 4273, 879713, 3833, 28499, 17707, 887233, 446447, 2671, 2917, 12763, 454039, 181997, 9619, 2017, 917633, 7103, 40231, 185833, 37321, 467479, 4021, 40903, 3041, 7759, 14593, 25013, 14653, 956353, 9323, 96223, 2503, 21089, 194413, 37463, 976013, 7523, 979969, 21433, 10399, 198377, 7417, 99787, 76913, 5273, 5651, 201577, 504947, 202381, 4651, 44171, 20359,

7. Distribution of the primes

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

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)
1109810.9000000.8000000.1000000.0000000.0000000.000000
21006934350.6900000.3400000.3500007.6666674.25000035.000000
31.0006802264540.6800000.2260000.4540009.8550726.64705912.971429
410.0006.8831.5895.2940.6883000.1589000.52940010.1220597.03097311.660793
5100.00069.04012.19856.8420.6904000.1219800.56842010.0305107.67652610.737061
61.000.000690.75998.388592.3710.6907590.0983880.59237110.0051998.06591210.421361
710.000.0006.909.316831.0756.078.2410.6909320.0831080.60782410.0024998.44691510.260869
8100.000.00069.103.3037.192.68761.910.6160.6910330.0719270.61910610.0014688.65467810.185614
91.000.000.000691.160.45063.394.532627.765.9180.6911600.0633950.62776610.0018438.81374810.139874
1010.000.000.0006.912.874.064566.756.4966.346.117.5680.6912870.0566760.63461210.0018378.94014710.109052


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
244401.0000001.0000000.0000001.3333331.333333-nan
387700.8750000.8750000.0000001.7500001.750000-nan
416131030.8125000.6250000.1875001.8571431.428571inf
532241590.7500000.4687500.2812501.8461541.5000003.000000
6644323200.6718750.3593750.3125001.7916671.5333332.222222
71288644420.6718750.3437500.3281252.0000001.9130432.100000
825616773940.6523440.2851560.3671881.9418601.6590912.238095
95123471332140.6777340.2597660.4179692.0778441.8219182.276596
101.0246952304650.6787110.2246090.4541022.0028821.7293232.172897
112.0481.3973971.0000.6821290.1938480.4882812.0100721.7260872.150538
124.0962.8257102.1150.6896970.1733400.5163572.0221901.7884132.115000
138.1925.6541.3254.3290.6901860.1617430.5284422.0014161.8661972.046808
1416.38411.2792.4328.8470.6884160.1484380.5399781.9948711.8354722.043659
1532.76822.6184.45618.1620.6902470.1359860.5542602.0053201.8322372.052899
1665.53645.3068.31336.9930.6913150.1268460.5644682.0030951.8655742.036835
17131.07290.51615.50975.0070.6905820.1183240.5722581.9978811.8656322.027600
18262.144181.03628.893152.1430.6905980.1102180.5803792.0000441.8629832.028384
19524.288362.09454.439307.6550.6906390.1038340.5868052.0001221.8841592.022144
201.048.576724.307102.730621.5770.6907530.0979710.5927822.0003291.8870662.020370
212.097.1521.448.794194.7561.254.0380.6908390.0928670.5979722.0002481.8958052.017510
224.194.3042.897.763370.2012.527.5620.6908810.0882630.6026182.0001211.9008452.015539
238.388.6085.795.464705.7445.089.7200.6908730.0841310.6067421.9999791.9063812.013688
2416.777.21611.593.0211.347.10310.245.9180.6909980.0802940.6107042.0003611.9087702.013061
2533.554.43223.187.1912.577.81620.609.3750.6910320.0768250.6142072.0000991.9136002.011472
2667.108.86446.372.4864.942.17241.430.3140.6910040.0736440.6173601.9999181.9171932.010265
27134.217.72892.753.1979.491.36883.261.8290.6910650.0707160.6203492.0001771.9204852.009684
28268.435.456185.511.42518.256.266167.255.1590.6910840.0680100.6230742.0000541.9234602.008785
29536.870.912371.046.66435.164.553335.882.1110.6911280.0654990.6256292.0001281.9261632.008202
301.073.741.824742.133.23267.822.957674.310.2750.6911650.0631650.6280002.0001081.9287312.007580
312.147.483.6481.484.356.587130.980.1271.353.376.4600.6912070.0609920.6302152.0001211.9312062.007053
324.294.967.2962.968.868.789253.271.1682.715.597.6210.6912440.0589690.6322742.0001051.9336612.006535
338.589.934.5925.938.056.120490.262.3475.447.793.7730.6912810.0570740.6342072.0001071.9357212.006112
3417.179.869.18411.876.688.358950.034.86710.926.653.4910.6913140.0552990.6360152.0000971.9378092.005702
3534.359.738.36823.754.558.4801.842.750.74821.911.807.7320.6913490.0536310.6377182.0001001.9396662.005354
3668.719.476.73647.511.397.6933.577.656.03743.933.741.6560.6913820.0520620.6393202.0000961.9414762.005026


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
123210021
244310121
387521123
41610642134
53215963345
664231493668
71284425199131012
825673383515211918
9512133686529383432
101.02423011511562634956
112.048397194203101999998
124.096710355355171179179181
138.1921.325668657320329335341
1416.3842.4321.2171.215598603603628
1532.7684.4562.2332.2231.0761.1161.1071.157
1665.5368.3134.1494.1642.0412.0772.0542.141
17131.07215.5097.7777.7323.7783.9133.8333.985
18262.14428.89314.54714.3467.1237.3377.0437.390
19524.28854.43927.34427.09513.43413.83913.34013.826
201.048.576102.73051.61351.11725.28726.01325.32526.105
212.097.152194.75697.80896.94847.98549.35448.04649.371
224.194.304370.201186.053184.14891.24693.72891.40393.824
238.388.608705.744354.726351.018174.416178.505174.234178.589
2416.777.2161.347.103676.568670.535333.070340.691332.817340.525
2533.554.4322.577.8161.293.8381.283.978637.598650.934637.586651.698
2667.108.8644.942.1722.480.1382.462.0341.222.9681.247.3111.222.7271.249.166
27134.217.7289.491.3684.761.2674.730.1012.349.7872.394.4052.348.9592.398.217
28268.435.45618.256.2669.156.8509.099.4164.521.6404.604.5404.520.5694.609.517
29536.870.91235.164.55317.635.34217.529.2118.712.2478.870.4618.709.8668.871.979
301.073.741.82467.822.95734.009.73333.813.22416.805.14417.106.20616.808.12417.103.483
312.147.483.648130.980.12765.675.61265.304.51532.462.91933.028.05132.467.73633.021.421
324.294.967.296253.271.168126.987.263126.283.90562.792.19763.843.10262.795.21963.840.650
338.589.934.592490.262.347245.780.907244.481.440121.587.334123.551.307121.582.272123.541.434
3417.179.869.184950.034.867476.248.716473.786.151235.657.754239.364.744235.662.303239.350.066
3534.359.738.3681.842.750.748923.692.199919.058.549457.206.133464.174.591457.225.287464.144.737
3668.719.476.7363.577.656.0371.793.220.4671.784.435.570887.863.097900.992.388887.849.340900.951.212


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
240000000
380000000
4163121011
5329273222
664208124655
71284225171011129
825694514324252223
951221410211258545547
101.024465226239122129108106
112.0481.000481519244270241245
124.0962.1151.0391.076530537523525
138.1924.3292.1452.1841.0701.0991.0761.084
1416.3848.8474.3964.4512.2442.1762.2132.214
1532.76818.1628.9769.1864.6144.4624.5244.562
1665.53636.99318.43818.5559.2589.1319.2739.331
17131.07275.00737.39237.61518.63918.74018.82318.805
18262.144152.14375.85776.28637.81938.04238.33737.945
19524.288307.655153.649154.00676.64776.90077.17076.938
201.048.576621.577310.810310.767154.662155.508155.805155.602
212.097.1521.254.038626.638627.400312.603313.730313.441314.264
224.194.3042.527.5621.263.0051.264.557630.588632.896631.278632.800
238.388.6085.089.7202.543.7392.545.9811.270.5031.273.0971.271.7861.274.334
2416.777.21610.245.9185.122.6395.123.2792.559.2232.562.0552.560.5152.564.125
2533.554.43220.609.37510.303.28010.306.0955.148.6425.154.0195.150.5205.156.194
2667.108.86441.430.31420.711.54720.718.76710.352.55010.359.61010.350.13110.368.023
27134.217.72883.261.82941.624.16241.637.66720.805.36620.820.65820.802.19020.833.615
28268.435.456167.255.15983.618.30983.636.85041.793.67141.837.13741.788.03841.836.313
29536.870.912335.882.111167.925.977167.956.13483.937.66884.012.74583.926.98584.004.713
301.073.741.824674.310.275337.121.208337.189.067168.501.614168.656.731168.506.626168.645.304
312.147.483.6481.353.376.460676.620.125676.756.335338.206.063338.478.252338.230.314338.461.831
324.294.967.2962.715.597.6211.357.708.9711.357.888.650678.665.300679.141.783678.664.774679.125.764
338.589.934.5925.447.793.7732.723.689.3602.724.104.4131.361.491.6891.362.406.1661.361.472.9891.362.422.929
3417.179.869.18410.926.653.4915.462.894.4345.463.759.0572.730.783.5062.732.528.6692.730.781.2552.732.560.061
3534.359.738.36821.911.807.73210.955.113.05810.956.694.6745.476.337.0115.479.575.7845.476.290.2885.479.604.649
3668.719.476.73643.933.741.65621.965.390.71321.968.350.94310.980.341.97510.986.519.01410.980.415.11110.986.465.556


8. Check for existing Integer Sequences by OEIS

Found in Database : 31, 5, 13, 19, 1, 47, 1, 79, 193, 23, 269, 1, 353, 199, 89, 1, 109, 1, 653, 71,
Found in Database : 31, 5, 13, 19, 47, 79, 193, 23, 269, 353, 199, 89, 109, 653, 71, 769, 83, 479, 41, 547, 233, 619, 101, 139, 113, 859, 947, 397, 1039, 53, 227,
Found in Database : 5, 13, 19, 23, 31, 41, 47, 53, 61, 67, 71, 79, 83, 89, 101, 103, 109, 113, 127, 131, 139,