Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:43:05
Deutsch
16.Apr 2024

Polynom = x^2+20x-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) = 9 = 3*3
f(2) = 41 = 41
f(3) = 33 = 3*11
f(4) = 93 = 3*31
f(5) = 61 = 61
f(6) = 153 = 3*3*17
f(7) = 93 = 3*31
f(8) = 221 = 13*17
f(9) = 129 = 3*43
f(10) = 297 = 3*3*3*11
f(11) = 169 = 13*13
f(12) = 381 = 3*127
f(13) = 213 = 3*71
f(14) = 473 = 11*43
f(15) = 261 = 3*3*29
f(16) = 573 = 3*191
f(17) = 313 = 313
f(18) = 681 = 3*227
f(19) = 369 = 3*3*41
f(20) = 797 = 797
f(21) = 429 = 3*11*13
f(22) = 921 = 3*307
f(23) = 493 = 17*29
f(24) = 1053 = 3*3*3*3*13
f(25) = 561 = 3*11*17
f(26) = 1193 = 1193
f(27) = 633 = 3*211
f(28) = 1341 = 3*3*149
f(29) = 709 = 709
f(30) = 1497 = 3*499
f(31) = 789 = 3*263
f(32) = 1661 = 11*151
f(33) = 873 = 3*3*97
f(34) = 1833 = 3*13*47
f(35) = 961 = 31*31
f(36) = 2013 = 3*11*61
f(37) = 1053 = 3*3*3*3*13
f(38) = 2201 = 31*71
f(39) = 1149 = 3*383
f(40) = 2397 = 3*17*47
f(41) = 1249 = 1249
f(42) = 2601 = 3*3*17*17
f(43) = 1353 = 3*11*41
f(44) = 2813 = 29*97
f(45) = 1461 = 3*487
f(46) = 3033 = 3*3*337
f(47) = 1573 = 11*11*13
f(48) = 3261 = 3*1087
f(49) = 1689 = 3*563
f(50) = 3497 = 13*269
f(51) = 1809 = 3*3*3*67
f(52) = 3741 = 3*29*43
f(53) = 1933 = 1933
f(54) = 3993 = 3*11*11*11
f(55) = 2061 = 3*3*229
f(56) = 4253 = 4253
f(57) = 2193 = 3*17*43
f(58) = 4521 = 3*11*137
f(59) = 2329 = 17*137
f(60) = 4797 = 3*3*13*41
f(61) = 2469 = 3*823
f(62) = 5081 = 5081
f(63) = 2613 = 3*13*67
f(64) = 5373 = 3*3*3*199
f(65) = 2761 = 11*251
f(66) = 5673 = 3*31*61
f(67) = 2913 = 3*971
f(68) = 5981 = 5981
f(69) = 3069 = 3*3*11*31
f(70) = 6297 = 3*2099
f(71) = 3229 = 3229
f(72) = 6621 = 3*2207
f(73) = 3393 = 3*3*13*29
f(74) = 6953 = 17*409
f(75) = 3561 = 3*1187
f(76) = 7293 = 3*11*13*17
f(77) = 3733 = 3733
f(78) = 7641 = 3*3*3*283
f(79) = 3909 = 3*1303
f(80) = 7997 = 11*727
f(81) = 4089 = 3*29*47
f(82) = 8361 = 3*3*929
f(83) = 4273 = 4273
f(84) = 8733 = 3*41*71
f(85) = 4461 = 3*1487
f(86) = 9113 = 13*701
f(87) = 4653 = 3*3*11*47
f(88) = 9501 = 3*3167
f(89) = 4849 = 13*373
f(90) = 9897 = 3*3299
f(91) = 5049 = 3*3*3*11*17
f(92) = 10301 = 10301
f(93) = 5253 = 3*17*103
f(94) = 10713 = 3*3571
f(95) = 5461 = 43*127
f(96) = 11133 = 3*3*1237
f(97) = 5673 = 3*31*61
f(98) = 11561 = 11*1051
f(99) = 5889 = 3*13*151
f(100) = 11997 = 3*3*31*43

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-3

f(0)=3
f(1)=1
f(2)=41
f(3)=11
f(4)=31
f(5)=61
f(6)=17
f(7)=1
f(8)=13
f(9)=43
f(10)=1
f(11)=1
f(12)=127
f(13)=71
f(14)=1
f(15)=29
f(16)=191
f(17)=313
f(18)=227
f(19)=1
f(20)=797
f(21)=1
f(22)=307
f(23)=1
f(24)=1
f(25)=1
f(26)=1193
f(27)=211
f(28)=149
f(29)=709
f(30)=499
f(31)=263
f(32)=151
f(33)=97
f(34)=47
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=383
f(40)=1
f(41)=1249
f(42)=1
f(43)=1
f(44)=1
f(45)=487
f(46)=337
f(47)=1
f(48)=1087
f(49)=563
f(50)=269
f(51)=67
f(52)=1
f(53)=1933
f(54)=1
f(55)=229
f(56)=4253
f(57)=1
f(58)=137
f(59)=1
f(60)=1
f(61)=823
f(62)=5081
f(63)=1
f(64)=199
f(65)=251
f(66)=1
f(67)=971
f(68)=5981
f(69)=1
f(70)=2099
f(71)=3229
f(72)=2207
f(73)=1
f(74)=409
f(75)=1187
f(76)=1
f(77)=3733
f(78)=283
f(79)=1303
f(80)=727
f(81)=1
f(82)=929
f(83)=4273
f(84)=1
f(85)=1487
f(86)=701
f(87)=1
f(88)=3167
f(89)=373
f(90)=3299
f(91)=1
f(92)=10301
f(93)=103
f(94)=3571
f(95)=1
f(96)=1237
f(97)=1
f(98)=1051
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+20x-3 could be written as f(y)= y^2-103 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

3, 1, 41, 11, 31, 61, 17, 1, 13, 43, 1, 1, 127, 71, 1, 29, 191, 313, 227, 1, 797, 1, 307, 1, 1, 1, 1193, 211, 149, 709, 499, 263, 151, 97, 47, 1, 1, 1, 1, 383, 1, 1249, 1, 1, 1, 487, 337, 1, 1087, 563, 269, 67, 1, 1933, 1, 229, 4253, 1, 137, 1, 1, 823, 5081, 1, 199, 251, 1, 971, 5981, 1, 2099, 3229, 2207, 1, 409, 1187, 1, 3733, 283, 1303, 727, 1, 929, 4273, 1, 1487, 701, 1, 3167, 373, 3299, 1, 10301, 103, 3571, 1, 1237, 1, 1051, 1, 1, 1, 1, 2111, 12893, 1, 4451, 6793, 271, 1, 1, 2423, 379, 683, 1697, 1, 15773, 2671, 1, 8269, 509, 2843, 17321, 977, 541, 1, 6131, 1, 1, 3203, 1, 1, 743, 3391, 439, 317, 2357, 10753, 1, 1, 22397, 1, 1, 1, 463, 443, 2203, 4091, 8287, 12589, 2833, 331, 26141, 401, 1, 1, 9151, 421, 461, 1, 1, 857, 1, 1657, 1, 5087, 1, 1201, 1, 5323, 32297, 5443, 1223, 16693, 11251, 1, 2029, 1, 691, 1619, 1, 1, 36761, 1, 12511, 1, 1, 6451, 641, 1, 1, 20149, 13567, 1, 41513, 1, 1, 1, 14387, 1, 43997, 673, 14947, 1741, 5077, 7687, 3581, 1, 479, 23929, 947, 8123, 1, 919, 16691, 25261, 1307, 2857, 1789, 1, 17599, 859, 1, 821, 1, 9187, 1, 1, 1, 1, 5227, 3221, 1499, 29473, 1801, 3329, 60413, 10151, 1, 30949, 2311, 953, 4877, 10651, 1, 1, 1283, 1, 1621, 1, 1, 1, 1, 1279, 69593, 1, 2141, 35593, 613, 12043, 72797, 719, 8209, 1, 1, 1, 599, 1, 1979, 827, 26099, 1, 1847, 13331, 2441, 863, 1, 13711, 1, 13903, 1, 3253, 28387, 1, 1, 1, 941, 44053, 29567, 1, 89897, 15083, 30367, 45853, 1, 911, 773, 1, 10529, 1, 2909, 16103, 97241, 5437, 32831, 1709, 811, 1, 101021, 16943, 1, 4679, 677, 1, 1, 1, 1, 1723, 3257, 1, 8369, 2027, 1, 4261, 1, 6229, 757, 18911, 38047, 1, 1, 1, 853, 1, 1, 1, 3067, 20051, 121001, 6761, 3709, 1009, 1423, 6917, 11383, 1, 1, 1553, 1, 1, 129497, 1973, 14549, 1531, 44131, 2017, 133853, 7477, 1049, 5233, 45599, 1, 967, 1, 46591, 4133, 1427, 23671, 2011, 1, 16033, 1, 3739, 2221, 147353, 1, 1601, 6803, 50147, 1, 8941, 25463, 3011, 1, 1567, 1999, 2339, 26251, 1, 79549, 53299, 26783, 5569, 1, 54371, 7451, 1277, 1, 1, 1, 1931, 1, 1, 28411, 171293, 28687, 1747, 2803, 58207, 29243, 1, 1, 1447, 89413, 1, 3343, 1, 1, 61027, 91969, 20533, 1, 1, 31231, 1609, 94561, 63331, 2447, 17431, 1, 64499, 5717, 1, 1, 197033, 32987, 66271, 7681, 1, 1, 15569, 1093, 2521, 9323, 1597, 34487, 207833, 11597, 4111, 1, 1, 11801, 1, 1, 6521, 108061, 8039, 1, 7549, 36643, 24533, 10079, 1, 1, 3163, 1, 5807, 6689, 1, 1, 1, 38543, 1, 116593, 26017, 1, 1, 39511, 26449, 1, 79999, 40163, 1, 1, 4783, 1, 81971, 1, 247901, 3191, 83299, 1, 2153, 1, 1, 42487, 9479, 128473, 7817, 2539, 8387, 1, 6719, 4243, 1873, 1, 266153, 44531, 3083, 12239, 1, 1103, 272381, 1, 30497, 10597, 1, 46271, 1, 15541, 1, 140929, 94307, 1753, 4673, 1109, 95731, 13103, 2473, 1, 6779, 1, 1, 8669, 3181, 1, 298013, 1, 1, 150649, 100799, 1297, 27691, 50951, 7867, 5309, 34337, 51691, 2089, 4733, 1, 3347, 1, 4801, 1, 17729, 106751, 1, 107507, 17981, 29527, 54323, 3517, 164113, 1, 1777, 11437, 1, 1, 9857, 8623, 5113, 1, 1, 3919, 15551, 2791, 6379, 1, 57803, 8923, 2459, 3539, 4507, 20749, 1, 1, 2659, 1, 1, 359897, 1, 120767, 1, 121571, 1, 1, 5581, 2621, 2767, 41333, 3659, 374441, 1, 1, 189061, 1, 1, 1, 1637, 128099, 4483, 1, 21557, 389273, 1, 3037, 4793, 1, 1, 1373, 66343, 3413, 200293, 1, 67187, 1, 1, 135647, 1, 12409, 7607, 1, 68891, 3371, 1, 1, 1, 419801, 70183, 46933, 19259, 141667, 1, 1511, 1, 2351, 1699, 1, 24121, 1607, 1549, 1, 7577, 1, 2377, 443453, 74131, 1, 1, 1, 1, 451481, 2287, 151391, 1, 2273, 25457, 1831, 4519, 14009, 1, 5741, 77731, 3271, 1907, 1, 3323, 157747, 79103, 475997, 2411, 5503, 240073, 12347, 1, 1, 1, 9551, 7879, 1877, 81883, 1, 82351, 55057, 248461, 15101, 1, 10663, 1, 12923, 252709, 3929, 1, 509693, 5011, 170851, 1, 57269, 86143, 39869, 1, 1, 20101, 15881, 87587, 12853, 1, 16057, 9161, 1, 1, 31513, 1, 1, 24551, 1543, 90511, 2851, 8273, 1, 274489, 183487, 1, 553433, 30829, 1, 1, 1, 1, 1, 93983, 1, 2069, 1, 1, 571433, 8681, 1, 22153, 192499, 1, 44657, 3593, 11443, 292561, 11503, 1, 53611, 98543, 197599, 297169, 1, 99571, 598973, 7699, 7433, 301813, 3307, 1, 608297, 1993, 203807, 1, 1613, 2633, 617693, 3559, 15919, 10039, 1, 2543, 20231, 2437, 6367, 315961, 4493, 1, 1, 35461, 12547, 2243, 4561, 11939, 9103, 9817, 1, 1, 1, 109063, 9791, 8431, 6659, 330433, 16987, 1, 2087, 1, 223007, 3457, 7229, 37441, 675581, 1, 1, 340261, 75797, 1, 2731, 1, 1, 345229, 1, 115631, 3719, 38729, 5417, 1, 21277, 1, 54269, 2741, 236287, 7559, 1, 1, 715613, 119551, 79889, 1, 18523, 1, 725801, 3109, 7841, 365461, 1, 1, 736061, 122963, 22409, 370609, 82549, 9547, 4943, 1861, 1, 1, 14771, 2063, 3803, 1, 253427, 9293, 8779, 1, 59021, 1913, 23357, 1, 1, 1, 2281, 7643, 1, 1, 261631, 131111, 1, 1, 1, 2897, 20399, 4027, 1, 4603, 5693, 402253, 29863, 134683, 1, 135283, 1, 14057, 2251, 10499, 820733, 45697, 274787, 413089, 275999, 1, 2657, 4481, 6791, 2927, 1, 8243, 64817, 1, 94033, 2131, 1, 141971, 29437, 5281, 25981, 1, 22079, 1, 14177, 1, 1, 39563, 5701, 145687, 1, 1, 10861, 440809, 294499, 11351, 887261, 1, 1, 446461, 4201, 1, 1, 150083, 300799, 26597, 33563, 1, 70001, 1, 101537, 35221, 1, 13933, 921497, 1, 308447, 463633, 309731, 1, 1, 11987, 18371, 469429, 1, 2213, 23041, 157771, 105397, 15331, 317491, 14461, 30851, 17747, 24623, 1, 11083, 4129, 20599, 9511, 324031, 28649, 9859, 163003, 1, 2683, 3313, 2917, 2593, 164987, 1, 55217, 331967, 1, 333299, 55661, 59053, 15241, 19763, 3389, 1, 168991, 23627, 1,

6. Sequence of the polynom (only primes)

3, 41, 11, 31, 61, 17, 13, 43, 127, 71, 29, 191, 313, 227, 797, 307, 1193, 211, 149, 709, 499, 263, 151, 97, 47, 383, 1249, 487, 337, 1087, 563, 269, 67, 1933, 229, 4253, 137, 823, 5081, 199, 251, 971, 5981, 2099, 3229, 2207, 409, 1187, 3733, 283, 1303, 727, 929, 4273, 1487, 701, 3167, 373, 3299, 10301, 103, 3571, 1237, 1051, 2111, 12893, 4451, 6793, 271, 2423, 379, 683, 1697, 15773, 2671, 8269, 509, 2843, 17321, 977, 541, 6131, 3203, 743, 3391, 439, 317, 2357, 10753, 22397, 463, 443, 2203, 4091, 8287, 12589, 2833, 331, 26141, 401, 9151, 421, 461, 857, 1657, 5087, 1201, 5323, 32297, 5443, 1223, 16693, 11251, 2029, 691, 1619, 36761, 12511, 6451, 641, 20149, 13567, 41513, 14387, 43997, 673, 14947, 1741, 5077, 7687, 3581, 479, 23929, 947, 8123, 919, 16691, 25261, 1307, 2857, 1789, 17599, 859, 821, 9187, 5227, 3221, 1499, 29473, 1801, 3329, 60413, 10151, 30949, 2311, 953, 4877, 10651, 1283, 1621, 1279, 69593, 2141, 35593, 613, 12043, 72797, 719, 8209, 599, 1979, 827, 26099, 1847, 13331, 2441, 863, 13711, 13903, 3253, 28387, 941, 44053, 29567, 89897, 15083, 30367, 45853, 911, 773, 10529, 2909, 16103, 97241, 5437, 32831, 1709, 811, 101021, 16943, 4679, 677, 1723, 3257, 8369, 2027, 4261, 6229, 757, 18911, 38047, 853, 3067, 20051, 121001, 6761, 3709, 1009, 1423, 6917, 11383, 1553, 129497, 1973, 14549, 1531, 44131, 2017, 133853, 7477, 1049, 5233, 45599, 967, 46591, 4133, 1427, 23671, 2011, 16033, 3739, 2221, 147353, 1601, 6803, 50147, 8941, 25463, 3011, 1567, 1999, 2339, 26251, 79549, 53299, 26783, 5569, 54371, 7451, 1277, 1931, 28411, 171293, 28687, 1747, 2803, 58207, 29243, 1447, 89413, 3343, 61027, 91969, 20533, 31231, 1609, 94561, 63331, 2447, 17431, 64499, 5717, 197033, 32987, 66271, 7681, 15569, 1093, 2521, 9323, 1597, 34487, 207833, 11597, 4111, 11801, 6521, 108061, 8039, 7549, 36643, 24533, 10079, 3163, 5807, 6689, 38543, 116593, 26017, 39511, 26449, 79999, 40163, 4783, 81971, 247901, 3191, 83299, 2153, 42487, 9479, 128473, 7817, 2539, 8387, 6719, 4243, 1873, 266153, 44531, 3083, 12239, 1103, 272381, 30497, 10597, 46271, 15541, 140929, 94307, 1753, 4673, 1109, 95731, 13103, 2473, 6779, 8669, 3181, 298013, 150649, 100799, 1297, 27691, 50951, 7867, 5309, 34337, 51691, 2089, 4733, 3347, 4801, 17729, 106751, 107507, 17981, 29527, 54323, 3517, 164113, 1777, 11437, 9857, 8623, 5113, 3919, 15551, 2791, 6379, 57803, 8923, 2459, 3539, 4507, 20749, 2659, 359897, 120767, 121571, 5581, 2621, 2767, 41333, 3659, 374441, 189061, 1637, 128099, 4483, 21557, 389273, 3037, 4793, 1373, 66343, 3413, 200293, 67187, 135647, 12409, 7607, 68891, 3371, 419801, 70183, 46933, 19259, 141667, 1511, 2351, 1699, 24121, 1607, 1549, 7577, 2377, 443453, 74131, 451481, 2287, 151391, 2273, 25457, 1831, 4519, 14009, 5741, 77731, 3271, 1907, 3323, 157747, 79103, 475997, 2411, 5503, 240073, 12347, 9551, 7879, 1877, 81883, 82351, 55057, 248461, 15101, 10663, 12923, 252709, 3929, 509693, 5011, 170851, 57269, 86143, 39869, 20101, 15881, 87587, 12853, 16057, 9161, 31513, 24551, 1543, 90511, 2851, 8273, 274489, 183487, 553433, 30829, 93983, 2069, 571433, 8681, 22153, 192499, 44657, 3593, 11443, 292561, 11503, 53611, 98543, 197599, 297169, 99571, 598973, 7699, 7433, 301813, 3307, 608297, 1993, 203807, 1613, 2633, 617693, 3559, 15919, 10039, 2543, 20231, 2437, 6367, 315961, 4493, 35461, 12547, 2243, 4561, 11939, 9103, 9817, 109063, 9791, 8431, 6659, 330433, 16987, 2087, 223007, 3457, 7229, 37441, 675581, 340261, 75797, 2731, 345229, 115631, 3719, 38729, 5417, 21277, 54269, 2741, 236287, 7559, 715613, 119551, 79889, 18523, 725801, 3109, 7841, 365461, 736061, 122963, 22409, 370609, 82549, 9547, 4943, 1861, 14771, 2063, 3803, 253427, 9293, 8779, 59021, 1913, 23357, 2281, 7643, 261631, 131111, 2897, 20399, 4027, 4603, 5693, 402253, 29863, 134683, 135283, 14057, 2251, 10499, 820733, 45697, 274787, 413089, 275999, 2657, 4481, 6791, 2927, 8243, 64817, 94033, 2131, 141971, 29437, 5281, 25981, 22079, 14177, 39563, 5701, 145687, 10861, 440809, 294499, 11351, 887261, 446461, 4201, 150083, 300799, 26597, 33563, 70001, 101537, 35221, 13933, 921497, 308447, 463633, 309731, 11987, 18371, 469429, 2213, 23041, 157771, 105397, 15331, 317491, 14461, 30851, 17747, 24623, 11083, 4129, 20599, 9511, 324031, 28649, 9859, 163003, 2683, 3313, 2917, 2593, 164987, 55217, 331967, 333299, 55661, 59053, 15241, 19763, 3389, 168991, 23627,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+20x-3 and
the reducible primes which appear as divisor for the first time
p | x^2+20x-3 and p < x^2+20x-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)
1107340.7000000.3000000.4000000.0000000.0000000.000000
21005916430.5900000.1600000.4300008.4285725.33333310.750000
31.0006651065590.6650000.1060000.55900011.2711876.62500013.000000
410.0006.6457615.8840.6645000.0761000.5884009.9924817.17924510.525939
5100.00067.0995.96161.1380.6709900.0596100.61138010.0976687.83311410.390551
61.000.000674.69948.745625.9540.6746990.0487450.62595410.0552778.17732010.238379
710.000.0006.770.865410.8296.360.0360.6770860.0410830.63600410.0353868.42812610.160548
8100.000.00067.901.7593.549.34864.352.4110.6790180.0354930.64352410.0285218.63947810.118246
91.000.000.000680.508.72531.282.820649.225.9050.6805090.0312830.64922610.0219608.81368110.088603
1010.000.000.0006.817.081.433279.706.0006.537.375.4330.6817080.0279710.65373810.0176258.94120110.069492


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
244221.0000000.5000000.5000002.0000001.000000inf
386330.7500000.3750000.3750001.5000001.5000001.500000
41610370.6250000.1875000.4375001.6666671.0000002.333333
532217140.6562500.2187500.4375002.1000002.3333332.000000
6643611250.5625000.1718750.3906251.7142861.5714291.785714
71287721560.6015620.1640620.4375002.1388891.9090912.240000
8256158371210.6171880.1445310.4726562.0519481.7619052.160714
9512329612680.6425780.1191410.5234382.0822781.6486492.214876
101.0246751085670.6591800.1054690.5537112.0516721.7704922.115672
112.0481.3551951.1600.6616210.0952150.5664062.0074071.8055562.045855
124.0962.6983562.3420.6586910.0869140.5717771.9911441.8256412.018965
138.1925.4476424.8050.6649170.0783690.5865482.0189031.8033712.051665
1416.38410.9001.1939.7070.6652830.0728150.5924682.0011011.8582562.020187
1532.76821.8562.18719.6690.6669920.0667420.6002502.0051381.8331942.026270
1665.53643.8624.06939.7930.6692810.0620880.6071932.0068631.8605402.023133
17131.07288.0607.63380.4270.6718440.0582350.6136092.0076601.8758912.021134
18262.144176.43614.329162.1070.6730500.0546610.6183892.0035881.8772442.015579
19524.288353.34326.910326.4330.6739480.0513270.6226222.0026701.8780102.013689
201.048.576707.50050.972656.5280.6747250.0486110.6261142.0023041.8941662.011218
212.097.1521.416.96196.5911.320.3700.6756600.0460580.6296012.0027721.8949822.011140
224.194.3042.836.290183.1592.653.1310.6762240.0436690.6325562.0016711.8962332.009384
238.388.6085.678.194348.6025.329.5920.6768930.0415570.6353372.0019791.9032752.008793
2416.777.21611.367.548665.78210.701.7660.6775590.0396840.6378752.0019661.9098632.007990
2533.554.43222.755.2581.273.09321.482.1650.6781600.0379410.6402182.0017741.9121772.007348
2667.108.86445.548.5102.440.37543.108.1350.6787260.0363640.6423612.0016701.9168872.006694
27134.217.72891.165.1924.683.72186.481.4710.6792340.0348960.6443372.0014971.9192632.006152
28268.435.456182.456.1389.008.650173.447.4880.6797020.0335600.6461422.0013791.9233962.005603
29536.870.912365.144.45417.350.895347.793.5590.6801350.0323190.6478162.0012721.9260262.005181
301.073.741.824730.733.28833.468.397697.264.8910.6805480.0311700.6493792.0012171.9289152.004824
312.147.483.6481.462.292.22864.636.3591.397.655.8690.6809330.0300990.6508342.0011301.9312662.004483
324.294.967.2962.926.132.960124.990.9472.801.142.0130.6812930.0291020.6521922.0010591.9337562.004172
338.589.934.5925.855.223.203241.954.0295.613.269.1740.6816380.0281670.6534712.0010111.9357732.003922
3417.179.869.18411.715.973.886468.857.22211.247.116.6640.6819590.0272910.6546682.0009441.9377952.003666
3534.359.738.36823.442.423.627909.454.72422.532.968.9030.6822640.0264690.6557962.0008941.9397262.003444
3668.719.476.73646.904.631.0101.765.656.10145.138.974.9090.6825520.0256940.6568592.0008441.9414452.003242


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
242011100
383111110
4163111110
5327333130
66411555150
712821101081120
8256371818151210
9512612832281320
101.0241085354511560
112.04819596989211020
124.09635617717817111840
138.19264232331831113300
1416.3841.19361158159715950
1532.7682.1871.1311.0551.10511.0810
1665.5364.0692.0791.9892.05612.0120
17131.0727.6333.8683.7643.87213.7600
18262.14414.3297.2677.0617.19217.1360
19524.28826.91013.59413.31513.487113.4220
201.048.57650.97225.71825.25325.477125.4940
212.097.15296.59148.84347.74748.175148.4150
224.194.304183.15992.48390.67591.400191.7580
238.388.608348.602175.928172.673173.9881174.6130
2416.777.216665.782336.065329.716332.5871333.1940
2533.554.4321.273.093642.745630.347636.2211636.8710
2667.108.8642.440.3751.231.9831.208.3911.219.22311.221.1510
27134.217.7284.683.7212.363.8672.319.8532.341.05412.342.6660
28268.435.4569.008.6504.545.0394.463.6104.502.95214.505.6970
29536.870.91217.350.8958.752.4198.598.4758.674.38918.676.5050
301.073.741.82433.468.39716.879.63316.588.76316.734.377116.734.0190
312.147.483.64864.636.35932.595.24532.041.11332.320.512132.315.8460
324.294.967.296124.990.94763.014.51161.976.43562.501.561162.489.3850
338.589.934.592241.954.029121.948.558120.005.470120.979.6421120.974.3860
3417.179.869.184468.857.222236.252.247232.604.974234.425.2221234.431.9990
3534.359.738.368909.454.724458.151.535451.303.188454.740.3361454.714.3870
3668.719.476.7361.765.656.101889.278.988876.377.112882.861.1201882.794.9800


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
242110101
383121101
4167341204
53214771616
66425141147311
7128562630820820
8256121625919432237
951226813313545885085
101.024567279288111179111166
112.0481.160575585234354240332
124.0962.3421.1541.188484695498665
138.1924.8052.3622.4439981.3901.0401.377
1416.3849.7074.8144.8932.0932.7432.1172.754
1532.76819.6699.8689.8014.2885.5094.3225.550
1665.53639.79319.92719.8668.80111.0558.85411.083
17131.07280.42740.22640.20118.08122.23918.07222.035
18262.144162.10781.15180.95636.82544.33536.83944.108
19524.288326.433163.243163.19074.66288.48074.63888.653
201.048.576656.528328.148328.380151.256177.253150.837177.182
212.097.1521.320.370660.423659.947305.331354.650305.382355.007
224.194.3042.653.1311.326.7151.326.416615.678710.177616.314710.962
238.388.6085.329.5922.664.9742.664.6181.241.6351.421.9071.243.1151.422.935
2416.777.21610.701.7665.350.1455.351.6212.502.6492.847.1832.505.1682.846.766
2533.554.43221.482.16510.739.82210.742.3435.043.9315.698.2355.043.4955.696.504
2667.108.86443.108.13521.549.89021.558.24510.151.90211.401.14310.152.06711.403.023
27134.217.72886.481.47143.235.76843.245.70320.420.56922.822.54120.422.68122.815.680
28268.435.456173.447.48886.712.08586.735.40341.063.37145.670.86341.053.53745.659.717
29536.870.912347.793.559173.875.363173.918.19682.521.63391.385.53082.511.60091.374.796
301.073.741.824697.264.891348.607.939348.656.952165.783.895182.868.781165.773.808182.838.407
312.147.483.6481.397.655.869698.779.458698.876.411332.926.229365.910.884332.933.032365.885.724
324.294.967.2962.801.142.0131.400.498.8711.400.643.142668.414.686732.163.384668.446.588732.117.355
338.589.934.5925.613.269.1742.806.516.3062.806.752.8681.341.710.2451.464.949.3521.341.682.6071.464.926.970
3417.179.869.18411.247.116.6645.623.317.2115.623.799.4532.692.503.9802.931.123.8442.692.412.9122.931.075.928
3534.359.738.36822.532.968.90311.266.005.70311.266.963.2005.401.899.4495.864.584.2505.401.922.6785.864.562.526
3668.719.476.73645.138.974.90922.568.569.94422.570.404.96510.835.759.04511.733.625.99010.835.853.12311.733.736.751


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 1, 41, 11, 31, 61, 17, 1, 13, 43, 1, 1, 127, 71, 1, 29, 191, 313, 227, 1,
Found in Database : 3, 41, 11, 31, 61, 17, 13, 43, 127, 71, 29, 191, 313, 227, 797, 307, 1193, 211, 149, 709, 499, 263, 151, 97, 47, 383,
Found in Database : 3, 11, 13, 17, 29, 31, 41, 43, 47, 61, 67, 71, 97, 103, 127, 137, 149,