Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:14:19
Deutsch
20.Apr 2024

Polynom = x^2+36x-13

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) = 13 = 13
f(1) = 3 = 3
f(2) = 63 = 3*3*7
f(3) = 13 = 13
f(4) = 147 = 3*7*7
f(5) = 3 = 3
f(6) = 239 = 239
f(7) = 9 = 3*3
f(8) = 339 = 3*113
f(9) = 49 = 7*7
f(10) = 447 = 3*149
f(11) = 63 = 3*3*7
f(12) = 563 = 563
f(13) = 39 = 3*13
f(14) = 687 = 3*229
f(15) = 47 = 47
f(16) = 819 = 3*3*7*13
f(17) = 111 = 3*37
f(18) = 959 = 7*137
f(19) = 129 = 3*43
f(20) = 1107 = 3*3*3*41
f(21) = 37 = 37
f(22) = 1263 = 3*421
f(23) = 21 = 3*7
f(24) = 1427 = 1427
f(25) = 189 = 3*3*3*7
f(26) = 1599 = 3*13*41
f(27) = 211 = 211
f(28) = 1779 = 3*593
f(29) = 117 = 3*3*13
f(30) = 1967 = 7*281
f(31) = 129 = 3*43
f(32) = 2163 = 3*7*103
f(33) = 283 = 283
f(34) = 2367 = 3*3*263
f(35) = 309 = 3*103
f(36) = 2579 = 2579
f(37) = 21 = 3*7
f(38) = 2799 = 3*3*311
f(39) = 91 = 7*13
f(40) = 3027 = 3*1009
f(41) = 393 = 3*131
f(42) = 3263 = 13*251
f(43) = 423 = 3*3*47
f(44) = 3507 = 3*7*167
f(45) = 227 = 227
f(46) = 3759 = 3*7*179
f(47) = 243 = 3*3*3*3*3
f(48) = 4019 = 4019
f(49) = 519 = 3*173
f(50) = 4287 = 3*1429
f(51) = 553 = 7*79
f(52) = 4563 = 3*3*3*13*13
f(53) = 147 = 3*7*7
f(54) = 4847 = 37*131
f(55) = 39 = 3*13
f(56) = 5139 = 3*3*571
f(57) = 661 = 661
f(58) = 5439 = 3*7*7*37
f(59) = 699 = 3*233
f(60) = 5747 = 7*821
f(61) = 369 = 3*3*41
f(62) = 6063 = 3*43*47
f(63) = 389 = 389
f(64) = 6387 = 3*2129
f(65) = 819 = 3*3*7*13
f(66) = 6719 = 6719
f(67) = 861 = 3*7*41
f(68) = 7059 = 3*13*181
f(69) = 113 = 113
f(70) = 7407 = 3*3*823
f(71) = 237 = 3*79
f(72) = 7763 = 7*1109
f(73) = 993 = 3*331
f(74) = 8127 = 3*3*3*7*43
f(75) = 1039 = 1039
f(76) = 8499 = 3*2833
f(77) = 543 = 3*181
f(78) = 8879 = 13*683
f(79) = 567 = 3*3*3*3*7
f(80) = 9267 = 3*3089
f(81) = 1183 = 7*13*13
f(82) = 9663 = 3*3221
f(83) = 1233 = 3*3*137
f(84) = 10067 = 10067
f(85) = 321 = 3*107
f(86) = 10479 = 3*7*499
f(87) = 167 = 167
f(88) = 10899 = 3*3*7*173
f(89) = 1389 = 3*463
f(90) = 11327 = 47*241
f(91) = 1443 = 3*13*37
f(92) = 11763 = 3*3*1307
f(93) = 749 = 7*107
f(94) = 12207 = 3*13*313
f(95) = 777 = 3*7*37
f(96) = 12659 = 12659
f(97) = 1611 = 3*3*179
f(98) = 13119 = 3*4373
f(99) = 1669 = 1669
f(100) = 13587 = 3*7*647

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+36x-13

f(0)=13
f(1)=3
f(2)=7
f(3)=1
f(4)=1
f(5)=1
f(6)=239
f(7)=1
f(8)=113
f(9)=1
f(10)=149
f(11)=1
f(12)=563
f(13)=1
f(14)=229
f(15)=47
f(16)=1
f(17)=37
f(18)=137
f(19)=43
f(20)=41
f(21)=1
f(22)=421
f(23)=1
f(24)=1427
f(25)=1
f(26)=1
f(27)=211
f(28)=593
f(29)=1
f(30)=281
f(31)=1
f(32)=103
f(33)=283
f(34)=263
f(35)=1
f(36)=2579
f(37)=1
f(38)=311
f(39)=1
f(40)=1009
f(41)=131
f(42)=251
f(43)=1
f(44)=167
f(45)=227
f(46)=179
f(47)=1
f(48)=4019
f(49)=173
f(50)=1429
f(51)=79
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=571
f(57)=661
f(58)=1
f(59)=233
f(60)=821
f(61)=1
f(62)=1
f(63)=389
f(64)=2129
f(65)=1
f(66)=6719
f(67)=1
f(68)=181
f(69)=1
f(70)=823
f(71)=1
f(72)=1109
f(73)=331
f(74)=1
f(75)=1039
f(76)=2833
f(77)=1
f(78)=683
f(79)=1
f(80)=3089
f(81)=1
f(82)=3221
f(83)=1
f(84)=10067
f(85)=107
f(86)=499
f(87)=1
f(88)=1
f(89)=463
f(90)=241
f(91)=1
f(92)=1307
f(93)=1
f(94)=313
f(95)=1
f(96)=12659
f(97)=1
f(98)=4373
f(99)=1669

b) Substitution of the polynom
The polynom f(x)=x^2+36x-13 could be written as f(y)= y^2-337 with x=y-18

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

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

13, 3, 7, 1, 1, 1, 239, 1, 113, 1, 149, 1, 563, 1, 229, 47, 1, 37, 137, 43, 41, 1, 421, 1, 1427, 1, 1, 211, 593, 1, 281, 1, 103, 283, 263, 1, 2579, 1, 311, 1, 1009, 131, 251, 1, 167, 227, 179, 1, 4019, 173, 1429, 79, 1, 1, 1, 1, 571, 661, 1, 233, 821, 1, 1, 389, 2129, 1, 6719, 1, 181, 1, 823, 1, 1109, 331, 1, 1039, 2833, 1, 683, 1, 3089, 1, 3221, 1, 10067, 107, 499, 1, 1, 463, 241, 1, 1307, 1, 313, 1, 12659, 1, 4373, 1669, 647, 1, 1, 1, 373, 1, 557, 1, 379, 1, 1783, 1019, 5521, 701, 2441, 1, 839, 1, 6053, 1, 1439, 1, 6421, 349, 2203, 419, 20399, 431, 1, 2659, 1, 911, 599, 1, 7589, 1, 7793, 1, 1, 1013, 8209, 1559, 401, 1, 3701, 1093, 1, 3361, 1, 1, 353, 1, 9521, 3613, 9749, 1, 1, 631, 1459, 1, 1, 1321, 32063, 193, 3643, 1, 11173, 1, 34259, 1, 1667, 4423, 1, 1, 36527, 769, 12433, 673, 4231, 1, 38867, 409, 1, 1, 1, 1, 5897, 1, 14033, 2657, 1, 1, 1, 1, 14869, 433, 5051, 1, 509, 487, 1, 5953, 1, 1, 48947, 1, 449, 1, 1301, 1, 51647, 1, 2503, 1657, 1, 1, 54419, 2287, 6151, 997, 1, 1, 1, 1, 1493, 1, 2819, 829, 8597, 1, 20389, 1, 6907, 1, 1, 1, 2377, 1, 1, 1, 9461, 1, 3203, 1, 22769, 1, 1613, 1, 23473, 1, 1, 3001, 1, 1523, 1, 4637, 3559, 3137, 1, 1061, 1973, 1, 26021, 1, 79187, 3323, 653, 10111, 1, 1709, 11801, 1733, 1, 811, 28309, 1, 1, 1, 619, 1373, 797, 1237, 12809, 3761, 4327, 5717, 787, 1931, 1181, 1, 1, 1699, 1, 1, 97007, 1, 4679, 1, 677, 1, 100787, 2113, 2617, 1, 11483, 1, 104639, 1, 1, 3331, 5107, 1, 1193, 1, 36629, 1063, 1, 1, 112559, 337, 883, 14323, 1423, 4831, 16661, 1, 1873, 3709, 3061, 5003, 120767, 1, 947, 1097, 41189, 863, 124979, 5237, 1, 15889, 2029, 1, 129263, 1, 1, 2347, 44053, 1, 3259, 1, 1217, 1, 929, 1907, 1, 5783, 1, 1, 15671, 1, 142547, 853, 16007, 1, 3733, 3049, 21017, 1, 7079, 18679, 50069, 1, 3229, 1, 51109, 1, 5737, 1, 937, 6553, 1, 9929, 7603, 3343, 161267, 2251, 54293, 1, 54833, 1, 983, 1, 55921, 1621, 2689, 1, 3491, 3581, 6397, 10847, 58129, 1, 176063, 1, 1, 5581, 1, 1, 1, 7583, 8707, 22963, 20507, 3863, 1741, 1, 1607, 3373, 1471, 1, 191507, 1, 9203, 6067, 1, 907, 196799, 8237, 1789, 1, 1, 1, 15551, 8461, 1, 25609, 1, 2153, 1, 1, 69809, 26293, 5417, 1, 2069, 1, 1, 1, 24091, 1, 4463, 9151, 1, 3461, 74149, 1, 1, 1, 5801, 4057, 1, 1, 230063, 4813, 11047, 1, 1, 9787, 18143, 2467, 26423, 1, 1, 1433, 241727, 3371, 81233, 1, 11699, 1, 35381, 1, 83221, 31333, 1, 1, 253679, 1, 28411, 32089, 85909, 10781, 1, 1811, 1, 16427, 1, 1, 7187, 1, 89329, 1201, 1, 1, 6329, 11383, 1451, 2647, 13159, 5779, 21419, 1, 2281, 1, 94229, 1, 284819, 1489, 2333, 9001, 1, 1, 41609, 1, 32603, 1, 98533, 1, 297779, 1, 99989, 37633, 2143, 1, 43481, 1, 1123, 38461, 11437, 1, 311027, 1, 34807, 1, 1, 1, 24443, 1, 1, 1, 1, 1, 1, 1, 108949, 5857, 36571, 1, 1, 1, 1, 41863, 1231, 14051, 48341, 1, 1, 2671, 1, 1, 1637, 2063, 1, 1, 38903, 1, 1361, 14737, 1, 1, 119089, 1867, 359663, 1, 120689, 1, 121493, 1693, 1, 7669, 1, 23159, 1, 15541, 9127, 15643, 41851, 1, 9721, 1, 1, 1, 128021, 48163, 1, 2693, 1, 1, 130513, 1327, 43783, 1, 396563, 1, 1, 12511, 133873, 16787, 57737, 1877, 1, 1, 136421, 2851, 1, 2459, 2939, 1, 1, 4357, 419567, 1, 6701, 1, 1, 1, 427379, 1, 143333, 3851, 11093, 1, 435263, 18191, 145969, 6863, 1, 4603, 63317, 18523, 1, 55903, 149521, 1, 9601, 1, 1, 56911, 152213, 6361, 1, 4799, 22003, 1, 1, 19423, 35963, 2791, 17417, 4211, 157669, 9883, 475763, 1, 22787, 1, 1, 1, 484079, 1, 162289, 8719, 1, 1, 492467, 10289, 1, 1, 23719, 1601, 10223, 6977, 12917, 15787, 168869, 1, 3889, 3041, 170773, 1, 19081, 1, 5693, 1, 8269, 5023, 174613, 1, 526739, 1, 176549, 2371, 1, 7417, 535487, 1721, 25639, 1, 1, 1, 1, 22741, 20269, 1, 4957, 1, 2437, 1, 1, 69709, 26627, 1, 80309, 11743, 188389, 1, 63131, 3391, 571199, 1, 63803, 1, 1, 6029, 1, 8081, 27779, 1, 4159, 1, 13709, 1759, 197521, 1, 1697, 1, 5813, 1, 1, 2357, 28807, 1, 1, 8467, 4969, 5471, 1, 1, 4507, 25793, 15913, 77773, 9901, 3257, 89561, 6547, 2593, 1, 211093, 3779, 1, 1, 2699, 3083, 1, 8951, 92297, 26987, 1, 20341, 72503, 3407, 3623, 1, 1979, 1, 16981, 13831, 17987, 1, 31847, 1, 32003, 3119, 675347, 1, 17401, 3037, 8419, 1, 685247, 28621, 76507, 1, 1, 14449, 99317, 9679, 232853, 6733, 233969, 1, 54251, 1, 236209, 88789, 79111, 1, 102197, 14939, 3803, 1, 18517, 30161, 6781, 1, 5651, 1, 1, 2549, 1, 1, 1, 92623, 11789, 1, 18199, 15581, 1, 13417, 1, 4493, 756563, 2633, 253349, 11903, 1, 1, 8429, 1, 2273, 1, 28669, 2309, 1847, 4639, 1, 97861, 7069, 1, 112601, 1, 1, 1, 20393, 11071, 1, 2383, 267493, 1, 89563, 1, 2861, 33811, 1, 25471, 5557, 1, 2351, 1, 274709, 1, 275921, 1, 831407, 17359, 278353, 1, 13313, 35023, 9257, 4397, 94007, 26497, 1901, 1, 853439, 1, 6079, 1, 22073, 1997, 1, 2777, 1, 108769, 32297, 9103, 875759, 1, 1, 15739, 1, 2837, 1, 6173, 1, 55793, 1, 12451, 3923, 37511, 300721, 1, 2341, 1, 1, 37987, 11279, 8803, 1, 1, 3557, 2137, 1, 115879, 8369, 1, 932819, 1, 312229, 7333, 8039, 1, 134921, 1, 15053, 59393, 2423, 1, 956147, 1, 1, 1, 321329, 1, 967919, 10103, 46279, 2969, 1, 1, 1, 1, 109303, 1, 329233, 1, 76283, 1, 331889, 31177, 1, 1, 20483, 41903, 335893, 126211, 8647, 1, 1015727, 1, 1, 1, 341269, 42743, 146837, 1, 49139, 1,

6. Sequence of the polynom (only primes)

13, 3, 7, 239, 113, 149, 563, 229, 47, 37, 137, 43, 41, 421, 1427, 211, 593, 281, 103, 283, 263, 2579, 311, 1009, 131, 251, 167, 227, 179, 4019, 173, 1429, 79, 571, 661, 233, 821, 389, 2129, 6719, 181, 823, 1109, 331, 1039, 2833, 683, 3089, 3221, 10067, 107, 499, 463, 241, 1307, 313, 12659, 4373, 1669, 647, 373, 557, 379, 1783, 1019, 5521, 701, 2441, 839, 6053, 1439, 6421, 349, 2203, 419, 20399, 431, 2659, 911, 599, 7589, 7793, 1013, 8209, 1559, 401, 3701, 1093, 3361, 353, 9521, 3613, 9749, 631, 1459, 1321, 32063, 193, 3643, 11173, 34259, 1667, 4423, 36527, 769, 12433, 673, 4231, 38867, 409, 5897, 14033, 2657, 14869, 433, 5051, 509, 487, 5953, 48947, 449, 1301, 51647, 2503, 1657, 54419, 2287, 6151, 997, 1493, 2819, 829, 8597, 20389, 6907, 2377, 9461, 3203, 22769, 1613, 23473, 3001, 1523, 4637, 3559, 3137, 1061, 1973, 26021, 79187, 3323, 653, 10111, 1709, 11801, 1733, 811, 28309, 619, 1373, 797, 1237, 12809, 3761, 4327, 5717, 787, 1931, 1181, 1699, 97007, 4679, 677, 100787, 2113, 2617, 11483, 104639, 3331, 5107, 1193, 36629, 1063, 112559, 337, 883, 14323, 1423, 4831, 16661, 1873, 3709, 3061, 5003, 120767, 947, 1097, 41189, 863, 124979, 5237, 15889, 2029, 129263, 2347, 44053, 3259, 1217, 929, 1907, 5783, 15671, 142547, 853, 16007, 3733, 3049, 21017, 7079, 18679, 50069, 3229, 51109, 5737, 937, 6553, 9929, 7603, 3343, 161267, 2251, 54293, 54833, 983, 55921, 1621, 2689, 3491, 3581, 6397, 10847, 58129, 176063, 5581, 7583, 8707, 22963, 20507, 3863, 1741, 1607, 3373, 1471, 191507, 9203, 6067, 907, 196799, 8237, 1789, 15551, 8461, 25609, 2153, 69809, 26293, 5417, 2069, 24091, 4463, 9151, 3461, 74149, 5801, 4057, 230063, 4813, 11047, 9787, 18143, 2467, 26423, 1433, 241727, 3371, 81233, 11699, 35381, 83221, 31333, 253679, 28411, 32089, 85909, 10781, 1811, 16427, 7187, 89329, 1201, 6329, 11383, 1451, 2647, 13159, 5779, 21419, 2281, 94229, 284819, 1489, 2333, 9001, 41609, 32603, 98533, 297779, 99989, 37633, 2143, 43481, 1123, 38461, 11437, 311027, 34807, 24443, 108949, 5857, 36571, 41863, 1231, 14051, 48341, 2671, 1637, 2063, 38903, 1361, 14737, 119089, 1867, 359663, 120689, 121493, 1693, 7669, 23159, 15541, 9127, 15643, 41851, 9721, 128021, 48163, 2693, 130513, 1327, 43783, 396563, 12511, 133873, 16787, 57737, 1877, 136421, 2851, 2459, 2939, 4357, 419567, 6701, 427379, 143333, 3851, 11093, 435263, 18191, 145969, 6863, 4603, 63317, 18523, 55903, 149521, 9601, 56911, 152213, 6361, 4799, 22003, 19423, 35963, 2791, 17417, 4211, 157669, 9883, 475763, 22787, 484079, 162289, 8719, 492467, 10289, 23719, 1601, 10223, 6977, 12917, 15787, 168869, 3889, 3041, 170773, 19081, 5693, 8269, 5023, 174613, 526739, 176549, 2371, 7417, 535487, 1721, 25639, 22741, 20269, 4957, 2437, 69709, 26627, 80309, 11743, 188389, 63131, 3391, 571199, 63803, 6029, 8081, 27779, 4159, 13709, 1759, 197521, 1697, 5813, 2357, 28807, 8467, 4969, 5471, 4507, 25793, 15913, 77773, 9901, 3257, 89561, 6547, 2593, 211093, 3779, 2699, 3083, 8951, 92297, 26987, 20341, 72503, 3407, 3623, 1979, 16981, 13831, 17987, 31847, 32003, 3119, 675347, 17401, 3037, 8419, 685247, 28621, 76507, 14449, 99317, 9679, 232853, 6733, 233969, 54251, 236209, 88789, 79111, 102197, 14939, 3803, 18517, 30161, 6781, 5651, 2549, 92623, 11789, 18199, 15581, 13417, 4493, 756563, 2633, 253349, 11903, 8429, 2273, 28669, 2309, 1847, 4639, 97861, 7069, 112601, 20393, 11071, 2383, 267493, 89563, 2861, 33811, 25471, 5557, 2351, 274709, 275921, 831407, 17359, 278353, 13313, 35023, 9257, 4397, 94007, 26497, 1901, 853439, 6079, 22073, 1997, 2777, 108769, 32297, 9103, 875759, 15739, 2837, 6173, 55793, 12451, 3923, 37511, 300721, 2341, 37987, 11279, 8803, 3557, 2137, 115879, 8369, 932819, 312229, 7333, 8039, 134921, 15053, 59393, 2423, 956147, 321329, 967919, 10103, 46279, 2969, 109303, 329233, 76283, 331889, 31177, 20483, 41903, 335893, 126211, 8647, 1015727, 341269, 42743, 146837, 49139,

7. Distribution of the primes

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

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)
1106330.6000000.3000000.3000000.0000000.0000000.000000
21005818400.5800000.1800000.4000009.6666676.00000013.333333
31.0005981244740.5980000.1240000.47400010.3103456.88888911.850000
410.0006.2678965.3710.6267000.0896000.53710010.4799337.22580611.331223
5100.00064.1356.82057.3150.6413500.0682000.57315010.2337647.61160710.671197
61.000.000650.04854.896595.1520.6500480.0548960.59515210.1356208.04926710.383879
710.000.0006.565.772459.7606.106.0120.6565770.0459760.61060110.1004428.37511010.259584
8100.000.00066.113.3123.955.58362.157.7290.6611330.0395560.62157710.0693898.60358210.179759
91.000.000.000664.727.47234.727.197630.000.2750.6647280.0347270.63000010.0543678.77928610.135509
1010.000.000.0006.675.875.903309.478.9426.366.396.9610.6675880.0309480.63664010.0430278.91171710.105388


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
385320.6250000.3750000.2500001.6666671.5000002.000000
4169540.5625000.3125000.2500001.8000001.6666672.000000
532197120.5937500.2187500.3750002.1111111.4000003.000000
6643813250.5937500.2031250.3906252.0000001.8571432.083333
71287520550.5859380.1562500.4296881.9736841.5384622.200000
8256142361060.5546880.1406250.4140621.8933331.8000001.927273
9512304712330.5937500.1386720.4550782.1408451.9722222.198113
101.0246151264890.6005860.1230470.4775392.0230261.7746482.098712
112.0481.2472321.0150.6088870.1132810.4956052.0276421.8412702.075665
124.0962.5254202.1050.6164550.1025390.5139162.0248601.8103452.073892
138.1925.1197614.3580.6248780.0928960.5319822.0273271.8119052.070309
1416.38410.3301.3928.9380.6304930.0849610.5455322.0179721.8291722.050941
1532.76820.8062.55118.2550.6349490.0778500.5570982.0141341.8326152.042403
1665.53641.9224.65737.2650.6396790.0710600.5686192.0148991.8255592.041358
17131.07284.2378.68975.5480.6426770.0662920.5763852.0093751.8657932.027318
18262.144169.22716.177153.0500.6455500.0617100.5838392.0089391.8617792.025864
19524.288339.76330.402309.3610.6480460.0579870.5900592.0077351.8793352.021307
201.048.576681.71657.353624.3630.6501350.0546960.5954392.0064461.8864882.018234
212.097.1521.368.331108.1881.260.1430.6524710.0515880.6008832.0071861.8863532.018286
224.194.3042.744.680205.6192.539.0610.6543830.0490230.6053592.0058601.9005712.014899
238.388.6085.504.061390.7505.113.3110.6561350.0465810.6095542.0053561.9003592.013859
2416.777.21611.034.067744.36910.289.6980.6576820.0443680.6133142.0047141.9049752.012336
2533.554.43222.114.7641.422.54920.692.2150.6590710.0423950.6166762.0042261.9110802.010964
2667.108.86444.320.2722.720.63741.599.6350.6604240.0405410.6198832.0041031.9125082.010400
27134.217.72888.805.0185.217.24483.587.7740.6616490.0388710.6227772.0037111.9176552.009339
28268.435.456177.916.79110.020.555167.896.2360.6627920.0373290.6254622.0034541.9206612.008622
29536.870.912356.399.62019.278.109337.121.5110.6638460.0359080.6279382.0031811.9238562.007916
301.073.741.824713.856.14137.147.222676.708.9190.6648300.0345960.6302342.0029651.9269122.007315
312.147.483.6481.429.687.39571.665.0611.358.022.3340.6657500.0333720.6323782.0027671.9292172.006804
324.294.967.2962.863.064.851138.435.5582.724.629.2930.6666090.0322320.6343772.0025811.9317022.006321
338.589.934.5925.733.071.012267.761.2305.465.309.7820.6674170.0311720.6362462.0024241.9341942.005891
3417.179.869.18411.479.221.756518.406.73810.960.815.0180.6681790.0301750.6380032.0022811.9360782.005525
3534.359.738.36822.983.081.1671.004.738.73821.978.342.4290.6688960.0292420.6396542.0021461.9381282.005174
3668.719.476.73646.012.763.6041.949.174.44144.063.589.1630.6695740.0283640.6412102.0020281.9399812.004864


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
122100110
242100110
383110111
4165130212
5327240412
66413480832
71282061301145
8256361223416610
95127125458271323
101.024126497616422246
112.0482328115032843482
124.0964201472726115761141
138.192761266494107281109264
1416.3841.392497894194501192505
1532.7682.5519041.646352942337920
1665.5364.6571.6592.9976231.7036461.685
17131.0728.6893.0735.6151.1513.2121.1603.166
18262.14416.1775.72410.4522.1315.9842.1555.907
19524.28830.40210.75619.6454.02611.1774.07311.126
201.048.57657.35320.13237.2207.51121.1847.64921.009
212.097.152108.18837.90370.28414.25439.88514.39439.655
224.194.304205.61971.604134.01427.03075.64127.19075.758
238.388.608390.750135.587255.16251.419143.78651.538144.007
2416.777.216744.369257.763486.60597.908274.33397.671274.457
2533.554.4321.422.549491.949930.599186.238524.463186.298525.550
2667.108.8642.720.637939.4261.781.210355.2561.004.535355.4791.005.367
27134.217.7285.217.2441.798.4873.418.756679.7751.927.972679.8091.929.688
28268.435.45610.020.5553.448.2456.572.3091.302.9963.706.5151.302.4743.708.570
29536.870.91219.278.1096.627.24712.650.8612.502.9237.136.1732.502.2697.136.744
301.073.741.82437.147.22212.757.06624.390.1554.813.96913.758.7034.815.78013.758.770
312.147.483.64871.665.06124.588.77847.076.2829.276.96726.552.1569.277.33726.558.601
324.294.967.296138.435.55847.452.11390.983.44417.898.02651.319.95017.900.81751.316.765
338.589.934.592267.761.23091.690.660176.070.56934.580.53099.301.37134.580.86299.298.467
3417.179.869.184518.406.738177.376.532341.030.20566.884.937192.326.89166.876.403192.318.507
3534.359.738.3681.004.738.738343.495.138661.243.599129.499.274372.879.427129.498.665372.861.372
3668.719.476.7361.949.174.441665.892.8501.283.281.590251.002.627723.600.612251.001.452723.569.750


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
121100001
241100001
382111001
4164221021
53212665142
664259168575
712855243114121712
8256106505632203321
951223311112263527246
101.024489229260128106153102
112.0481.015489526265239291220
124.0962.1051.0081.097554500567484
138.1924.3582.1062.2521.1401.0261.1601.032
1416.3848.9384.3254.6132.3542.0682.4122.104
1532.76818.2558.8969.3594.8324.2884.8744.261
1665.53637.26518.11619.1499.7678.8729.8778.749
17131.07275.54836.88838.66019.77617.97519.92917.868
18262.144153.05074.82578.22539.95436.43540.26336.398
19524.288309.361151.490157.87180.67573.94181.12773.618
201.048.576624.363306.738317.625162.415149.655163.152149.141
212.097.1521.260.143619.897640.246327.273301.897328.272302.701
224.194.3042.539.0611.250.5421.288.519658.713609.969660.020610.359
238.388.6085.113.3112.521.2012.592.1101.325.6781.230.8611.325.8631.230.909
2416.777.21610.289.6985.075.4445.214.2542.662.5762.482.8472.663.1952.481.080
2533.554.43220.692.21510.212.59910.479.6165.345.7094.998.6855.348.8074.999.014
2667.108.86441.599.63520.547.88421.051.75110.729.43610.066.59010.736.32510.067.284
27134.217.72883.587.77441.311.77942.275.99521.533.66920.260.45521.533.25320.260.397
28268.435.456167.896.23683.016.51084.879.72643.201.48940.751.92843.201.39040.741.429
29536.870.912337.121.511166.768.261170.353.25086.643.23981.920.84186.643.59581.913.836
301.073.741.824676.708.919334.895.079341.813.840173.729.618164.633.831173.719.247164.626.223
312.147.483.6481.358.022.334672.323.659685.698.675348.301.994330.734.414348.273.933330.711.993
324.294.967.2962.724.629.2931.349.416.5951.375.212.698698.141.483664.212.710698.120.011664.155.089
338.589.934.5925.465.309.7822.707.740.2542.757.569.5281.399.202.6611.333.502.2461.399.150.8451.333.454.030
3417.179.869.18410.960.815.0185.432.155.5745.528.659.4442.803.847.4922.676.542.1492.803.847.0312.676.578.346
3534.359.738.36821.978.342.42910.895.576.80111.082.765.6285.618.022.4345.371.094.6165.618.045.1695.371.180.210
3668.719.476.73644.063.589.16321.850.271.31222.213.317.85111.255.486.24410.776.292.94211.255.509.95510.776.300.022


8. Check for existing Integer Sequences by OEIS

Found in Database : 13, 3, 7, 1, 1, 1, 239, 1, 113, 1, 149, 1, 563, 1, 229, 47, 1, 37, 137, 43,
Found in Database : 13, 3, 7, 239, 113, 149, 563, 229, 47, 37, 137, 43, 41, 421, 1427, 211, 593, 281, 103, 283, 263, 2579, 311,
Found in Database : 3, 7, 13, 37, 41, 43, 47, 79, 103, 107, 113, 131, 137, 149,