Inhaltsverzeichnis

Development of
Algorithmic Constructions

12:40:43
Deutsch
20.Apr 2024

Polynom = x^2+12x-19

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) = 19 = 19
f(1) = 3 = 3
f(2) = 9 = 3*3
f(3) = 13 = 13
f(4) = 45 = 3*3*5
f(5) = 33 = 3*11
f(6) = 89 = 89
f(7) = 57 = 3*19
f(8) = 141 = 3*47
f(9) = 85 = 5*17
f(10) = 201 = 3*67
f(11) = 117 = 3*3*13
f(12) = 269 = 269
f(13) = 153 = 3*3*17
f(14) = 345 = 3*5*23
f(15) = 193 = 193
f(16) = 429 = 3*11*13
f(17) = 237 = 3*79
f(18) = 521 = 521
f(19) = 285 = 3*5*19
f(20) = 621 = 3*3*3*23
f(21) = 337 = 337
f(22) = 729 = 3*3*3*3*3*3
f(23) = 393 = 3*131
f(24) = 845 = 5*13*13
f(25) = 453 = 3*151
f(26) = 969 = 3*17*19
f(27) = 517 = 11*47
f(28) = 1101 = 3*367
f(29) = 585 = 3*3*5*13
f(30) = 1241 = 17*73
f(31) = 657 = 3*3*73
f(32) = 1389 = 3*463
f(33) = 733 = 733
f(34) = 1545 = 3*5*103
f(35) = 813 = 3*271
f(36) = 1709 = 1709
f(37) = 897 = 3*13*23
f(38) = 1881 = 3*3*11*19
f(39) = 985 = 5*197
f(40) = 2061 = 3*3*229
f(41) = 1077 = 3*359
f(42) = 2249 = 13*173
f(43) = 1173 = 3*17*23
f(44) = 2445 = 3*5*163
f(45) = 1273 = 19*67
f(46) = 2649 = 3*883
f(47) = 1377 = 3*3*3*3*17
f(48) = 2861 = 2861
f(49) = 1485 = 3*3*3*5*11
f(50) = 3081 = 3*13*79
f(51) = 1597 = 1597
f(52) = 3309 = 3*1103
f(53) = 1713 = 3*571
f(54) = 3545 = 5*709
f(55) = 1833 = 3*13*47
f(56) = 3789 = 3*3*421
f(57) = 1957 = 19*103
f(58) = 4041 = 3*3*449
f(59) = 2085 = 3*5*139
f(60) = 4301 = 11*17*23
f(61) = 2217 = 3*739
f(62) = 4569 = 3*1523
f(63) = 2353 = 13*181
f(64) = 4845 = 3*5*17*19
f(65) = 2493 = 3*3*277
f(66) = 5129 = 23*223
f(67) = 2637 = 3*3*293
f(68) = 5421 = 3*13*139
f(69) = 2785 = 5*557
f(70) = 5721 = 3*1907
f(71) = 2937 = 3*11*89
f(72) = 6029 = 6029
f(73) = 3093 = 3*1031
f(74) = 6345 = 3*3*3*5*47
f(75) = 3253 = 3253
f(76) = 6669 = 3*3*3*13*19
f(77) = 3417 = 3*17*67
f(78) = 7001 = 7001
f(79) = 3585 = 3*5*239
f(80) = 7341 = 3*2447
f(81) = 3757 = 13*17*17
f(82) = 7689 = 3*11*233
f(83) = 3933 = 3*3*19*23
f(84) = 8045 = 5*1609
f(85) = 4113 = 3*3*457
f(86) = 8409 = 3*2803
f(87) = 4297 = 4297
f(88) = 8781 = 3*2927
f(89) = 4485 = 3*5*13*23
f(90) = 9161 = 9161
f(91) = 4677 = 3*1559
f(92) = 9549 = 3*3*1061
f(93) = 4873 = 11*443
f(94) = 9945 = 3*3*5*13*17
f(95) = 5073 = 3*19*89
f(96) = 10349 = 79*131
f(97) = 5277 = 3*1759
f(98) = 10761 = 3*17*211
f(99) = 5485 = 5*1097
f(100) = 11181 = 3*3727

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+12x-19

f(0)=19
f(1)=3
f(2)=1
f(3)=13
f(4)=5
f(5)=11
f(6)=89
f(7)=1
f(8)=47
f(9)=17
f(10)=67
f(11)=1
f(12)=269
f(13)=1
f(14)=23
f(15)=193
f(16)=1
f(17)=79
f(18)=521
f(19)=1
f(20)=1
f(21)=337
f(22)=1
f(23)=131
f(24)=1
f(25)=151
f(26)=1
f(27)=1
f(28)=367
f(29)=1
f(30)=73
f(31)=1
f(32)=463
f(33)=733
f(34)=103
f(35)=271
f(36)=1709
f(37)=1
f(38)=1
f(39)=197
f(40)=229
f(41)=359
f(42)=173
f(43)=1
f(44)=163
f(45)=1
f(46)=883
f(47)=1
f(48)=2861
f(49)=1
f(50)=1
f(51)=1597
f(52)=1103
f(53)=571
f(54)=709
f(55)=1
f(56)=421
f(57)=1
f(58)=449
f(59)=139
f(60)=1
f(61)=739
f(62)=1523
f(63)=181
f(64)=1
f(65)=277
f(66)=223
f(67)=293
f(68)=1
f(69)=557
f(70)=1907
f(71)=1
f(72)=6029
f(73)=1031
f(74)=1
f(75)=3253
f(76)=1
f(77)=1
f(78)=7001
f(79)=239
f(80)=2447
f(81)=1
f(82)=233
f(83)=1
f(84)=1609
f(85)=457
f(86)=2803
f(87)=4297
f(88)=2927
f(89)=1
f(90)=9161
f(91)=1559
f(92)=1061
f(93)=443
f(94)=1
f(95)=1
f(96)=1
f(97)=1759
f(98)=211
f(99)=1097

b) Substitution of the polynom
The polynom f(x)=x^2+12x-19 could be written as f(y)= y^2-55 with x=y-6

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+6
f'(x)>2x+11

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

19, 3, 1, 13, 5, 11, 89, 1, 47, 17, 67, 1, 269, 1, 23, 193, 1, 79, 521, 1, 1, 337, 1, 131, 1, 151, 1, 1, 367, 1, 73, 1, 463, 733, 103, 271, 1709, 1, 1, 197, 229, 359, 173, 1, 163, 1, 883, 1, 2861, 1, 1, 1597, 1103, 571, 709, 1, 421, 1, 449, 139, 1, 739, 1523, 181, 1, 277, 223, 293, 1, 557, 1907, 1, 6029, 1031, 1, 3253, 1, 1, 7001, 239, 2447, 1, 233, 1, 1609, 457, 2803, 4297, 2927, 1, 9161, 1559, 1061, 443, 1, 1, 1, 1759, 211, 1097, 3727, 1, 1, 1, 1, 6133, 1, 1, 12941, 439, 1489, 401, 1, 2351, 1, 1, 4943, 7537, 5107, 1, 1217, 1, 5443, 8293, 1123, 2851, 1579, 2939, 1, 1, 683, 3119, 1117, 1, 1303, 431, 6703, 1, 20681, 1, 373, 829, 7283, 3691, 1, 1, 1, 11677, 1, 1, 24281, 4099, 1, 12613, 1, 479, 26189, 491, 389, 1, 1, 4639, 1657, 4751, 641, 14593, 1, 383, 643, 1019, 937, 823, 811, 1777, 6469, 1, 1, 1, 593, 1, 2657, 1, 1307, 1049, 1, 467, 36809, 6199, 12527, 3797, 673, 2153, 3559, 1, 2663, 20173, 1, 1, 1, 1399, 1, 21397, 4801, 661, 1, 7411, 1151, 1, 1, 1, 46601, 1, 15823, 1409, 1, 1, 2591, 487, 5569, 1, 5669, 1, 51929, 8731, 1, 2423, 17923, 1, 2879, 613, 1091, 28057, 1451, 9511, 677, 509, 1, 2269, 2203, 1999, 587, 10159, 20483, 659, 1, 1, 947, 1, 21487, 1, 1, 647, 66509, 11171, 1, 34033, 7621, 11519, 1, 2339, 23567, 35617, 1, 1, 857, 1, 1297, 1619, 1471, 1, 1, 983, 8581, 1, 1741, 13151, 6113, 13339, 1, 8117, 2477, 1, 82889, 4637, 1, 1, 28403, 1, 86381, 1, 1, 4007, 1, 14891, 17989, 15091, 1321, 3529, 1811, 1033, 93581, 5233, 1, 47713, 1, 16111, 1, 16319, 10949, 1, 853, 881, 1, 1, 6823, 1, 34543, 1931, 1, 1, 35407, 53437, 1, 1, 1979, 18251, 12241, 1, 953, 3739, 5939, 18919, 2239, 727, 7703, 1, 1, 1, 1, 11897, 39887, 1543, 1, 1, 907, 919, 1, 20759, 125261, 1, 42227, 63697, 42703, 1, 1993, 7237, 929, 5987, 1, 1, 1, 1181, 1, 68053, 3041, 997, 1, 1783, 1, 14057, 1, 877, 1, 2659, 9623, 5581, 48623, 24439, 147401, 1, 1, 74857, 1, 1483, 1, 25471, 51203, 1, 1, 1733, 14251, 8753, 52783, 6121, 10663, 1, 2213, 27059, 6043, 863, 1, 1, 166409, 1, 1, 3671, 1, 9473, 171341, 1913, 57667, 3779, 1, 29251, 2713, 29531, 1, 5261, 1051, 1, 181421, 1787, 61043, 8363, 12323, 1, 186569, 1, 2729, 18917, 63347, 1, 14753, 1, 1, 97213, 21701, 1721, 11593, 6599, 5099, 99877, 66883, 11197, 2131, 1, 1, 1531, 68687, 6899, 4423, 1, 1, 8101, 1567, 2083, 1021, 1553, 5519, 21617, 72367, 12113, 218969, 1, 14723, 1, 5711, 3389, 1, 1, 25169, 1, 1493, 38231, 2003, 2029, 1, 1, 1, 1, 10267, 4391, 4177, 119533, 1231, 1, 242009, 40499, 27109, 1, 27329, 1, 19073, 41491, 1, 1, 83983, 1, 1109, 2833, 7757, 6763, 5059, 1877, 52009, 3347, 1, 1, 1087, 8839, 20477, 4049, 1, 1, 1, 15077, 3061, 15193, 7039, 1621, 1, 46279, 25339, 1, 1, 2999, 1367, 47339, 285101, 9539, 95747, 1, 5077, 1, 58309, 5419, 1, 147397, 98627, 1, 1, 1, 1, 6551, 1, 50591, 4547, 1, 1, 1, 1, 1, 1613, 1, 20903, 14303, 105263, 1, 1, 10639, 11863, 1, 1, 53951, 64969, 54331, 1, 1, 109807, 3673, 1, 18493, 1, 167593, 1319, 4327, 338669, 1, 37889, 34217, 38149, 1, 345689, 4447, 23203, 174613, 116803, 1, 2467, 1, 118387, 1, 119183, 59791, 1, 2617, 1, 181777, 40529, 1, 367181, 4723, 123203, 2347, 1459, 1, 2069, 20873, 1, 2909, 11497, 63439, 16603, 1, 1, 1, 14327, 64679, 16927, 1, 1, 1, 10111, 21977, 1, 1301, 1, 1, 133967, 1, 2053, 67619, 4111, 204133, 1, 1, 412109, 68899, 1, 41597, 1, 1, 24697, 1, 28163, 211873, 7457, 71059, 1, 1, 47809, 215797, 1, 1, 7919, 4283, 146063, 219757, 6389, 1, 443501, 1901, 148723, 223753, 1, 1, 1, 75479, 16823, 45557, 5641, 76379, 1423, 76831, 2371, 2251, 1, 25913, 3571, 1, 2341, 10259, 1997, 79111, 5011, 1693, 53201, 1, 1, 1, 484361, 4261, 12491, 14369, 1, 1, 3023, 9151, 15017, 49697, 1, 83299, 501209, 4409, 1, 19441, 3313, 84719, 509741, 1549, 1, 257017, 171823, 1, 103669, 1, 173743, 261337, 1, 17519, 47911, 88079, 1, 15629, 3947, 89051, 41213, 1, 2273, 2843, 180547, 1, 11587, 1, 1, 1, 183503, 1, 553481, 1, 3637, 14683, 5651, 93491, 1, 1, 188483, 4231, 9973, 2111, 24847, 1, 14731, 26183, 1, 1, 25243, 1, 64849, 1, 1, 1, 1607, 1, 3593, 22861, 1, 1747, 599021, 6673, 15439, 1, 201743, 4397, 1, 9241, 7549, 306517, 1, 1, 4091, 1, 3089, 1, 41603, 34757, 3001, 1, 210127, 63197, 211187, 1, 636749, 106391, 14221, 18869, 1, 9769, 34019, 21599, 1, 325597, 9461, 12119, 10093, 1, 219763, 1, 1, 1, 665801, 1, 4373, 1, 1, 112331, 675629, 1, 226307, 1, 227407, 37993, 52733, 38177, 2417, 1, 4909, 1, 1, 1, 1, 350257, 8669, 1, 1933, 9067, 12437, 355297, 1, 7933, 9059, 3623, 1, 1, 48163, 120691, 42697, 121259, 1, 1, 81409, 122399, 66919, 122971, 1, 19507, 19051, 4597, 7247, 1, 249967, 28909, 13217, 1, 1, 1, 84481, 381037, 84869, 1, 767321, 5573, 2887, 8219, 1, 43117, 45757, 43313, 260467, 78317, 15391, 1, 1, 131711, 5867, 36083, 1, 10223, 34747, 26699, 267587, 402277, 268783, 1, 7043, 3469, 1, 23981, 1, 27299, 3323, 2917, 1, 413113, 18401, 138311, 11393, 1, 21419, 83717, 16451, 1, 44351, 1, 3319, 424093, 4229, 6173, 77611, 1, 2027, 33049, 1, 143831, 172969, 144451, 22271, 25601, 290767, 1, 876041, 1, 293263, 1, 1, 147571, 2281, 148199, 1, 6869, 1, 149459, 4259, 150091, 3539, 2143, 1, 3881, 1, 10133, 16033, 41627, 23531, 153271, 184309, 153911, 1, 1, 1, 31039, 71777, 1, 28393, 20411, 62723, 1, 944729, 1, 1, 5003, 1, 159079, 956429, 1, 21341, 481153, 5639, 161039, 1, 1, 1, 487057, 19139, 1, 1, 1, 1, 1, 17333, 32999, 991961, 12743, 36887, 498973, 1, 1, 1, 1, 4253, 1,

6. Sequence of the polynom (only primes)

19, 3, 13, 5, 11, 89, 47, 17, 67, 269, 23, 193, 79, 521, 337, 131, 151, 367, 73, 463, 733, 103, 271, 1709, 197, 229, 359, 173, 163, 883, 2861, 1597, 1103, 571, 709, 421, 449, 139, 739, 1523, 181, 277, 223, 293, 557, 1907, 6029, 1031, 3253, 7001, 239, 2447, 233, 1609, 457, 2803, 4297, 2927, 9161, 1559, 1061, 443, 1759, 211, 1097, 3727, 6133, 12941, 439, 1489, 401, 2351, 4943, 7537, 5107, 1217, 5443, 8293, 1123, 2851, 1579, 2939, 683, 3119, 1117, 1303, 431, 6703, 20681, 373, 829, 7283, 3691, 11677, 24281, 4099, 12613, 479, 26189, 491, 389, 4639, 1657, 4751, 641, 14593, 383, 643, 1019, 937, 823, 811, 1777, 6469, 593, 2657, 1307, 1049, 467, 36809, 6199, 12527, 3797, 673, 2153, 3559, 2663, 20173, 1399, 21397, 4801, 661, 7411, 1151, 46601, 15823, 1409, 2591, 487, 5569, 5669, 51929, 8731, 2423, 17923, 2879, 613, 1091, 28057, 1451, 9511, 677, 509, 2269, 2203, 1999, 587, 10159, 20483, 659, 947, 21487, 647, 66509, 11171, 34033, 7621, 11519, 2339, 23567, 35617, 857, 1297, 1619, 1471, 983, 8581, 1741, 13151, 6113, 13339, 8117, 2477, 82889, 4637, 28403, 86381, 4007, 14891, 17989, 15091, 1321, 3529, 1811, 1033, 93581, 5233, 47713, 16111, 16319, 10949, 853, 881, 6823, 34543, 1931, 35407, 53437, 1979, 18251, 12241, 953, 3739, 5939, 18919, 2239, 727, 7703, 11897, 39887, 1543, 907, 919, 20759, 125261, 42227, 63697, 42703, 1993, 7237, 929, 5987, 1181, 68053, 3041, 997, 1783, 14057, 877, 2659, 9623, 5581, 48623, 24439, 147401, 74857, 1483, 25471, 51203, 1733, 14251, 8753, 52783, 6121, 10663, 2213, 27059, 6043, 863, 166409, 3671, 9473, 171341, 1913, 57667, 3779, 29251, 2713, 29531, 5261, 1051, 181421, 1787, 61043, 8363, 12323, 186569, 2729, 18917, 63347, 14753, 97213, 21701, 1721, 11593, 6599, 5099, 99877, 66883, 11197, 2131, 1531, 68687, 6899, 4423, 8101, 1567, 2083, 1021, 1553, 5519, 21617, 72367, 12113, 218969, 14723, 5711, 3389, 25169, 1493, 38231, 2003, 2029, 10267, 4391, 4177, 119533, 1231, 242009, 40499, 27109, 27329, 19073, 41491, 83983, 1109, 2833, 7757, 6763, 5059, 1877, 52009, 3347, 1087, 8839, 20477, 4049, 15077, 3061, 15193, 7039, 1621, 46279, 25339, 2999, 1367, 47339, 285101, 9539, 95747, 5077, 58309, 5419, 147397, 98627, 6551, 50591, 4547, 1613, 20903, 14303, 105263, 10639, 11863, 53951, 64969, 54331, 109807, 3673, 18493, 167593, 1319, 4327, 338669, 37889, 34217, 38149, 345689, 4447, 23203, 174613, 116803, 2467, 118387, 119183, 59791, 2617, 181777, 40529, 367181, 4723, 123203, 2347, 1459, 2069, 20873, 2909, 11497, 63439, 16603, 14327, 64679, 16927, 10111, 21977, 1301, 133967, 2053, 67619, 4111, 204133, 412109, 68899, 41597, 24697, 28163, 211873, 7457, 71059, 47809, 215797, 7919, 4283, 146063, 219757, 6389, 443501, 1901, 148723, 223753, 75479, 16823, 45557, 5641, 76379, 1423, 76831, 2371, 2251, 25913, 3571, 2341, 10259, 1997, 79111, 5011, 1693, 53201, 484361, 4261, 12491, 14369, 3023, 9151, 15017, 49697, 83299, 501209, 4409, 19441, 3313, 84719, 509741, 1549, 257017, 171823, 103669, 173743, 261337, 17519, 47911, 88079, 15629, 3947, 89051, 41213, 2273, 2843, 180547, 11587, 183503, 553481, 3637, 14683, 5651, 93491, 188483, 4231, 9973, 2111, 24847, 14731, 26183, 25243, 64849, 1607, 3593, 22861, 1747, 599021, 6673, 15439, 201743, 4397, 9241, 7549, 306517, 4091, 3089, 41603, 34757, 3001, 210127, 63197, 211187, 636749, 106391, 14221, 18869, 9769, 34019, 21599, 325597, 9461, 12119, 10093, 219763, 665801, 4373, 112331, 675629, 226307, 227407, 37993, 52733, 38177, 2417, 4909, 350257, 8669, 1933, 9067, 12437, 355297, 7933, 9059, 3623, 48163, 120691, 42697, 121259, 81409, 122399, 66919, 122971, 19507, 19051, 4597, 7247, 249967, 28909, 13217, 84481, 381037, 84869, 767321, 5573, 2887, 8219, 43117, 45757, 43313, 260467, 78317, 15391, 131711, 5867, 36083, 10223, 34747, 26699, 267587, 402277, 268783, 7043, 3469, 23981, 27299, 3323, 2917, 413113, 18401, 138311, 11393, 21419, 83717, 16451, 44351, 3319, 424093, 4229, 6173, 77611, 2027, 33049, 143831, 172969, 144451, 22271, 25601, 290767, 876041, 293263, 147571, 2281, 148199, 6869, 149459, 4259, 150091, 3539, 2143, 3881, 10133, 16033, 41627, 23531, 153271, 184309, 153911, 31039, 71777, 28393, 20411, 62723, 944729, 5003, 159079, 956429, 21341, 481153, 5639, 161039, 487057, 19139, 17333, 32999, 991961, 12743, 36887, 498973, 4253,

7. Distribution of the primes

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

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)
1108350.8000000.3000000.8000000.0000000.0000000.000000
21006410540.6400000.1000000.6400008.0000003.33333310.800000
31.000651486030.6510000.0480000.65100010.1718754.80000011.166667
410.0006.6293516.2780.6629000.0351000.66290010.1827967.31250010.411277
5100.00067.0072.60264.4050.6700700.0260200.67007010.1081617.41310510.258841
61.000.000673.84921.514652.3350.6738490.0215140.67384910.0563978.26825510.128639
710.000.0006.764.024180.0786.583.9460.6764020.0180080.67640210.0378928.37027110.092891
8100.000.00067.836.5021.560.02566.276.4770.6783650.0156000.67836510.0290168.66305210.066376
91.000.000.000679.904.41913.768.058666.136.3610.6799040.0137680.67990410.0226938.82553710.050872
1010.000.000.0006.811.578.458123.227.9466.688.350.5120.6811580.0123230.68115810.0184358.95027810.040512


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)
122111.0000000.5000000.5000000.0000000.0000000.000000
244221.0000000.5000000.5000002.0000002.0000002.000000
387340.8750000.3750000.5000001.7500001.5000002.000000
41610460.6250000.2500000.3750001.4285711.3333331.500000
532185130.5625000.1562500.4062501.8000001.2500002.166667
664397320.6093750.1093750.5000002.1666671.4000002.461539
71288011690.6250000.0859380.5390622.0512821.5714292.156250
8256165181470.6445310.0703120.5742192.0625001.6363642.130435
9512335293060.6542970.0566410.5976562.0303031.6111112.081633
101.024669506190.6533200.0488280.6044921.9970151.7241382.022876
112.0481.343951.2480.6557620.0463870.6093752.0074741.9000002.016155
124.0962.6921572.5350.6572270.0383300.6188962.0044681.6526322.031250
138.1925.4302995.1310.6628420.0364990.6263432.0170881.9044592.024063
1416.38410.92052010.4000.6665040.0317380.6347662.0110501.7391302.026895
1532.76821.88796520.9220.6679380.0294490.6384892.0043041.8557692.011731
1665.53643.8541.78542.0690.6691590.0272370.6419222.0036551.8497412.010754
17131.07287.8693.30484.5650.6703870.0252080.6451802.0036711.8509802.010150
18262.144176.0056.293169.7120.6714060.0240060.6474002.0030391.9046612.006882
19524.288352.59811.892340.7060.6725270.0226820.6498452.0033411.8897192.007554
201.048.576706.66522.484684.1810.6739280.0214420.6524862.0041661.8906832.008127
212.097.1521.414.92942.4931.372.4360.6746910.0202620.6544282.0022631.8899222.005955
224.194.3042.833.29580.4402.752.8550.6755100.0191780.6563322.0024291.8930182.005817
238.388.6085.672.179152.8565.519.3230.6761760.0182220.6579552.0019731.9002492.004945
2416.777.21611.356.374291.62911.064.7450.6768930.0173820.6595102.0021181.9078682.004729
2533.554.43222.733.293558.73622.174.5570.6775050.0166520.6608532.0018091.9159142.004073
2667.108.86445.504.5131.071.46344.433.0500.6780700.0159660.6621042.0016681.9176552.003785
27134.217.72891.077.7542.058.38989.019.3650.6785820.0153360.6632462.0015101.9211012.003449
28268.435.456182.286.1923.962.030178.324.1620.6790690.0147600.6643092.0014351.9248212.003206
29536.870.912364.814.4927.634.771357.179.7210.6795200.0142210.6652992.0013281.9269852.002980
301.073.741.824730.089.91514.729.608715.360.3070.6799490.0137180.6662312.0012631.9292802.002802
312.147.483.6481.461.030.54028.458.4951.432.572.0450.6803450.0132520.6670932.0011651.9320612.002588
324.294.967.2962.923.692.07955.043.7682.868.648.3110.6807250.0128160.6679092.0011161.9341772.002446
338.589.934.5925.850.452.516106.583.3675.743.869.1490.6810820.0124080.6686742.0010501.9363392.002291
3417.179.869.18411.706.654.799206.603.32111.500.051.4780.6814170.0120260.6693912.0009831.9384202.002144


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
121100100
242100110
383111110
4164121120
5325132120
6647152140
712811194160
8256181169180
951229127151130
101.02450148251240
112.04895193501440
124.0961571155821740
138.192299129715411440
1416.384520151827112480
1532.768965196349014740
1665.5361.78511.78387919050
17131.0723.30413.3021.65311.6500
18262.1446.29316.2913.14513.1470
19524.28811.892111.8905.93715.9540
201.048.57622.484122.48211.265111.2180
212.097.15242.493142.49121.301121.1910
224.194.30480.440180.43840.403140.0360
238.388.608152.8561152.85476.628176.2270
2416.777.216291.6291291.627146.0851145.5430
2533.554.432558.7361558.734279.5561279.1790
2667.108.8641.071.46311.071.461535.8341535.6280
27134.217.7282.058.38912.058.3871.029.14511.029.2430
28268.435.4563.962.03013.962.0281.981.10711.980.9220
29536.870.9127.634.77117.634.7693.817.73713.817.0330
301.073.741.82414.729.608114.729.6067.364.69317.364.9140
312.147.483.64828.458.495128.458.49314.228.970114.229.5240
324.294.967.29655.043.768155.043.76627.521.826127.521.9410
338.589.934.592106.583.3671106.583.36553.293.702153.289.6640
3417.179.869.184206.603.3211206.603.319103.303.2411103.300.0790


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
121000100
242100110
384111111
4166312211
53213924315
664322285999
712869422514191620
8256147846129403345
951230616114367856787
101.024619320297134174140171
112.0481.248655591267346298337
124.0962.5351.3371.196598690586661
138.1925.1312.6292.5001.2031.3761.2031.349
1416.38410.4005.3965.0022.4112.7822.5002.707
1532.76820.92210.88010.0405.0165.4084.9725.526
1665.53642.06921.97020.09710.05810.93510.02911.047
17131.07284.56543.91140.65220.20121.95920.16622.239
18262.144169.71287.97781.73340.75444.09140.62344.244
19524.288340.706176.330164.37481.97188.31981.98688.430
201.048.576684.181353.097331.082164.774177.237164.995177.175
212.097.1521.372.436707.564664.870331.572355.007331.819354.038
224.194.3042.752.8551.417.6541.335.199666.422709.958667.284709.191
238.388.6085.519.3232.837.5592.681.7621.338.0511.421.5401.340.2031.419.529
2416.777.21611.064.7455.680.2505.384.4932.688.7502.844.7712.688.5392.842.685
2533.554.43222.174.55711.369.20810.805.3475.395.5635.692.3535.395.2205.691.421
2667.108.86444.433.05022.757.96021.675.08810.825.83711.394.43310.826.61411.386.166
27134.217.72889.019.36545.555.34643.464.01721.715.18122.798.89221.716.11922.789.173
28268.435.456178.324.16291.175.42187.148.73943.537.07045.625.38943.544.39045.617.313
29536.870.912357.179.721182.467.603174.712.11687.288.69091.296.55687.298.44791.296.028
301.073.741.824715.360.307365.142.409350.217.896174.980.187182.692.070174.987.083182.700.967
312.147.483.6481.432.572.045730.685.959701.886.084350.697.996365.586.196350.711.095365.576.758
324.294.967.2962.868.648.3111.462.178.8581.406.469.451702.769.606731.526.267702.803.695731.548.743
338.589.934.5925.743.869.1492.925.854.5332.818.014.6141.408.171.4001.463.756.7921.408.186.7831.463.754.174
3417.179.869.18411.500.051.4785.854.595.6955.645.455.7812.821.214.7042.928.803.8442.821.245.4522.928.787.478


8. Check for existing Integer Sequences by OEIS

Found in Database : 19, 3, 1, 13, 5, 11, 89, 1, 47, 17, 67, 1, 269, 1, 23, 193, 1, 79, 521, 1,
Found in Database : 19, 3, 13, 5, 11, 89, 47, 17, 67, 269, 23, 193, 79, 521, 337, 131, 151, 367, 73, 463, 733, 103, 271, 1709, 197,
Found in Database : 3, 5, 11, 13, 17, 19, 23, 47, 67, 73, 79, 89, 103, 131, 139,