Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:34:30
Deutsch
19.Apr 2024

Polynom = x^2-188x+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) = 1 = 1
f(2) = 313 = 313
f(3) = 31 = 31
f(4) = 677 = 677
f(5) = 107 = 107
f(6) = 1033 = 1033
f(7) = 151 = 151
f(8) = 1381 = 1381
f(9) = 97 = 97
f(10) = 1721 = 1721
f(11) = 59 = 59
f(12) = 2053 = 2053
f(13) = 277 = 277
f(14) = 2377 = 2377
f(15) = 317 = 317
f(16) = 2693 = 2693
f(17) = 89 = 89
f(18) = 3001 = 3001
f(19) = 197 = 197
f(20) = 3301 = 3301
f(21) = 431 = 431
f(22) = 3593 = 3593
f(23) = 467 = 467
f(24) = 3877 = 3877
f(25) = 251 = 251
f(26) = 4153 = 4153
f(27) = 67 = 67
f(28) = 4421 = 4421
f(29) = 569 = 569
f(30) = 4681 = 31*151
f(31) = 601 = 601
f(32) = 4933 = 4933
f(33) = 79 = 79
f(34) = 5177 = 31*167
f(35) = 331 = 331
f(36) = 5413 = 5413
f(37) = 691 = 691
f(38) = 5641 = 5641
f(39) = 719 = 719
f(40) = 5861 = 5861
f(41) = 373 = 373
f(42) = 6073 = 6073
f(43) = 193 = 193
f(44) = 6277 = 6277
f(45) = 797 = 797
f(46) = 6473 = 6473
f(47) = 821 = 821
f(48) = 6661 = 6661
f(49) = 211 = 211
f(50) = 6841 = 6841
f(51) = 433 = 433
f(52) = 7013 = 7013
f(53) = 887 = 887
f(54) = 7177 = 7177
f(55) = 907 = 907
f(56) = 7333 = 7333
f(57) = 463 = 463
f(58) = 7481 = 7481
f(59) = 59 = 59
f(60) = 7621 = 7621
f(61) = 961 = 31*31
f(62) = 7753 = 7753
f(63) = 977 = 977
f(64) = 7877 = 7877
f(65) = 31 = 31
f(66) = 7993 = 7993
f(67) = 503 = 503
f(68) = 8101 = 8101
f(69) = 1019 = 1019
f(70) = 8201 = 59*139
f(71) = 1031 = 1031
f(72) = 8293 = 8293
f(73) = 521 = 521
f(74) = 8377 = 8377
f(75) = 263 = 263
f(76) = 8453 = 79*107
f(77) = 1061 = 1061
f(78) = 8521 = 8521
f(79) = 1069 = 1069
f(80) = 8581 = 8581
f(81) = 269 = 269
f(82) = 8633 = 89*97
f(83) = 541 = 541
f(84) = 8677 = 8677
f(85) = 1087 = 1087
f(86) = 8713 = 8713
f(87) = 1091 = 1091
f(88) = 8741 = 8741
f(89) = 547 = 547
f(90) = 8761 = 8761
f(91) = 137 = 137
f(92) = 8773 = 31*283
f(93) = 1097 = 1097
f(94) = 8777 = 67*131
f(95) = 1097 = 1097
f(96) = 8773 = 31*283
f(97) = 137 = 137
f(98) = 8761 = 8761
f(99) = 547 = 547
f(100) = 8741 = 8741

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

f(0)=59
f(1)=1
f(2)=313
f(3)=31
f(4)=677
f(5)=107
f(6)=1033
f(7)=151
f(8)=1381
f(9)=97
f(10)=1721
f(11)=1
f(12)=2053
f(13)=277
f(14)=2377
f(15)=317
f(16)=2693
f(17)=89
f(18)=3001
f(19)=197
f(20)=3301
f(21)=431
f(22)=3593
f(23)=467
f(24)=3877
f(25)=251
f(26)=4153
f(27)=67
f(28)=4421
f(29)=569
f(30)=1
f(31)=601
f(32)=4933
f(33)=79
f(34)=167
f(35)=331
f(36)=5413
f(37)=691
f(38)=5641
f(39)=719
f(40)=5861
f(41)=373
f(42)=6073
f(43)=193
f(44)=6277
f(45)=797
f(46)=6473
f(47)=821
f(48)=6661
f(49)=211
f(50)=6841
f(51)=433
f(52)=7013
f(53)=887
f(54)=7177
f(55)=907
f(56)=7333
f(57)=463
f(58)=7481
f(59)=1
f(60)=7621
f(61)=1
f(62)=7753
f(63)=977
f(64)=7877
f(65)=1
f(66)=7993
f(67)=503
f(68)=8101
f(69)=1019
f(70)=139
f(71)=1031
f(72)=8293
f(73)=521
f(74)=8377
f(75)=263
f(76)=1
f(77)=1061
f(78)=8521
f(79)=1069
f(80)=8581
f(81)=269
f(82)=1
f(83)=541
f(84)=8677
f(85)=1087
f(86)=8713
f(87)=1091
f(88)=8741
f(89)=547
f(90)=8761
f(91)=137
f(92)=283
f(93)=1097
f(94)=131
f(95)=1
f(96)=1
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-188x+59 could be written as f(y)= y^2-8777 with x=y+94

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-94
f'(x)>2x-189 with x > 94

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, 1, 313, 31, 677, 107, 1033, 151, 1381, 97, 1721, 1, 2053, 277, 2377, 317, 2693, 89, 3001, 197, 3301, 431, 3593, 467, 3877, 251, 4153, 67, 4421, 569, 1, 601, 4933, 79, 167, 331, 5413, 691, 5641, 719, 5861, 373, 6073, 193, 6277, 797, 6473, 821, 6661, 211, 6841, 433, 7013, 887, 7177, 907, 7333, 463, 7481, 1, 7621, 1, 7753, 977, 7877, 1, 7993, 503, 8101, 1019, 139, 1031, 8293, 521, 8377, 263, 1, 1061, 8521, 1069, 8581, 269, 1, 541, 8677, 1087, 8713, 1091, 8741, 547, 8761, 137, 283, 1097, 131, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 439, 1, 827, 1, 1223, 1, 1627, 229, 2039, 281, 2459, 1, 2887, 1, 3323, 443, 3767, 499, 4219, 1, 4679, 307, 5147, 673, 5623, 733, 1, 397, 6599, 1, 1, 919, 7607, 983, 8123, 1, 8647, 557, 1, 1181, 9719, 1249, 10267, 659, 1, 347, 1, 1459, 11959, 1531, 12539, 401, 13127, 839, 13723, 1753, 14327, 1, 14939, 953, 15559, 1, 16187, 2063, 16823, 2143, 17467, 1, 18119, 1153, 1, 2389, 19447, 2473, 20123, 1279, 20807, 661, 21499, 2731, 1, 2819, 22907, 727, 23623, 1499, 1, 3089, 809, 3181, 25819, 1637, 857, 421, 1, 3463, 28087, 3559, 28859, 457, 1, 1877, 30427, 3853, 31223, 1, 32027, 2027, 32839, 1039, 1, 4259, 34487, 4363, 35323, 1117, 613, 2287, 37019, 1, 37879, 4789, 38747, 1, 39623, 1, 40507, 5119, 41399, 5231, 42299, 1, 43207, 2729, 44123, 5573, 1, 5689, 45979, 2903, 46919, 1481, 1, 6043, 48823, 6163, 49787, 1571, 1, 3203, 1669, 6529, 52727, 6653, 1733, 3389, 54727, 863, 1, 1, 1, 7159, 57787, 911, 997, 3709, 1, 7549, 60919, 7681, 61979, 3907, 941, 1987, 64123, 1, 1, 8219, 1, 2089, 67399, 1, 68507, 1, 69623, 1, 1, 4457, 71879, 1, 73019, 9199, 74167, 9343, 75323, 593, 76487, 4817, 77659, 9781, 78839, 9929, 1013, 5039, 81223, 2557, 1, 1, 83639, 10531, 84859, 2671, 2777, 5419, 87323, 10993, 2857, 11149, 89819, 5653, 91079, 1433, 92347, 1, 1, 11783, 94907, 1493, 96199, 6053, 97499, 12269, 98807, 12433, 1697, 6299, 1, 3191, 1301, 1, 104119, 13099, 105467, 1, 106823, 6719, 108187, 1, 1231, 13781, 110939, 6977, 112327, 883, 113723, 14303, 115127, 14479, 116539, 1, 117959, 7417, 1, 15013, 120823, 15193, 122267, 7687, 123719, 3889, 829, 15739, 1423, 15923, 4133, 4027, 129607, 8147, 4229, 16481, 1367, 1, 2273, 8429, 135623, 2131, 137147, 17239, 138679, 17431, 1, 2203, 141767, 1, 1, 18013, 144887, 1, 877, 9203, 1, 4651, 149627, 18803, 1559, 1, 2281, 4801, 154439, 1, 156059, 19609, 1151, 19813, 1489, 10009, 160967, 1, 1187, 20431, 164279, 20639, 165947, 1303, 167623, 10529, 169307, 21269, 1, 21481, 1, 10847, 174407, 5477, 176123, 22123, 5737, 1, 179579, 5639, 5849, 1, 183067, 22993, 184823, 1, 186587, 11717, 188359, 2957, 1777, 23879, 3253, 24103, 193723, 3041, 195527, 12277, 197339, 24781, 2521, 1, 200987, 12619, 202823, 6367, 204667, 1, 206519, 25931, 208379, 1, 210247, 1, 212123, 26633, 214007, 1, 215899, 13553, 1, 1709, 219707, 27583, 221623, 27823, 223547, 1, 225479, 14153, 227419, 28549, 1, 28793, 231323, 14519, 2953, 7321, 7589, 29531, 4021, 1, 7717, 7507, 1, 15139, 243227, 30529, 1, 30781, 247259, 1, 249287, 3911, 251323, 31543, 253367, 31799, 255419, 4007, 1307, 1, 259547, 32573, 1, 32833, 2963, 16547, 2029, 1, 267899, 33619, 1399, 1093, 1, 8537, 1973, 17207, 1, 1, 4157, 34949, 1, 17609, 1873, 1109, 1, 35759, 287159, 1, 3251, 2269, 1, 18289, 293723, 1, 1, 1, 1, 1, 9689, 9421, 302587, 37963, 9833, 1, 307067, 9631, 1, 19403, 5281, 39089, 1, 39373, 3259, 1, 318407, 4993, 320699, 40231, 322999, 40519, 325307, 5101, 2357, 20549, 329947, 41389, 1451, 41681, 334619, 1, 1597, 10567, 339323, 1373, 341687, 42859, 3547, 10789, 346439, 21727, 348827, 43753, 351223, 44053, 353627, 1, 356039, 2791, 358459, 44959, 2161, 45263, 1, 1, 1, 22937, 1, 46181, 370679, 46489, 12037, 23399, 375623, 11777, 12197, 47419, 3557, 1, 383099, 12011, 385607, 24179, 2011, 48673, 390647, 48989, 1, 1, 395719, 6203, 398267, 49943, 400823, 50263, 403387, 6323, 405959, 25453, 408539, 51229, 411127, 1663, 5237, 25939, 1, 1, 418939, 1, 421559, 52859, 424187, 13297, 3989, 26759, 429467, 53849, 1, 54181, 2207, 1, 2897, 1, 6569, 1, 442807, 1, 445499, 3491, 448199, 28097, 2137, 56533, 14633, 56873, 3331, 28607, 1, 14389, 461819, 57899, 3391, 58243, 1, 1, 470087, 1, 472859, 59281, 475639, 59629, 478427, 29989, 5407, 7541, 484027, 60679, 486839, 61031, 489659, 7673, 492487, 30869, 495323, 2003, 498167, 1, 501019, 1, 503879, 15791, 1619, 1, 509623, 1, 512507, 16061, 5791, 32303, 518299, 64969, 3121, 1, 524123, 1, 8933, 4129, 529979, 66431, 532919, 1, 1907, 2099, 538823, 33769, 17477, 1, 544759, 68281, 17669, 34327, 1, 17257, 1999, 69403, 556727, 69779, 559739, 17539, 562759, 35267, 565787, 70913, 568823, 71293, 571867, 35837, 5927, 9007, 577979, 1, 581047, 72823, 2221, 9151, 7433, 1, 1, 1, 593399, 2399, 596507, 37379, 599623, 18787, 1, 75539, 605879, 75931, 4649, 19081, 6311, 1, 2687, 1, 1, 77509, 2311, 38953, 624839, 2447, 1, 1, 631223, 79103, 10753, 4969, 1, 39953, 640859, 80309, 1, 80713, 4657, 40559, 650567, 1, 653819, 81931, 657079, 82339, 660347, 1, 2467, 41579, 2657, 1, 670199, 1, 673499, 42197, 676807, 10601, 680123, 85223, 683447, 85639, 1, 1, 690119, 43237, 6481, 2803, 696823, 87313, 4637, 43867, 703559, 22039, 1, 1, 710327, 89003, 12097, 1, 717127, 44927, 1, 90281, 723959, 90709, 5233, 45569, 730823, 1, 734267, 1, 737719, 92431, 23909, 1, 1, 46649, 24133, 1, 2371, 94169, 7057, 47303, 758599, 23761, 8563, 95483, 765623, 95923, 769147, 24091, 1, 1, 776219, 1, 779767, 1, 783323, 49069, 786887, 12323, 790459, 1, 794039, 3209, 797627, 12491, 2309, 1, 9043, 100829, 808439, 101281,

6. Sequence of the polynom (only primes)

59, 313, 31, 677, 107, 1033, 151, 1381, 97, 1721, 2053, 277, 2377, 317, 2693, 89, 3001, 197, 3301, 431, 3593, 467, 3877, 251, 4153, 67, 4421, 569, 601, 4933, 79, 167, 331, 5413, 691, 5641, 719, 5861, 373, 6073, 193, 6277, 797, 6473, 821, 6661, 211, 6841, 433, 7013, 887, 7177, 907, 7333, 463, 7481, 7621, 7753, 977, 7877, 7993, 503, 8101, 1019, 139, 1031, 8293, 521, 8377, 263, 1061, 8521, 1069, 8581, 269, 541, 8677, 1087, 8713, 1091, 8741, 547, 8761, 137, 283, 1097, 131, 439, 827, 1223, 1627, 229, 2039, 281, 2459, 2887, 3323, 443, 3767, 499, 4219, 4679, 307, 5147, 673, 5623, 733, 397, 6599, 919, 7607, 983, 8123, 8647, 557, 1181, 9719, 1249, 10267, 659, 347, 1459, 11959, 1531, 12539, 401, 13127, 839, 13723, 1753, 14327, 14939, 953, 15559, 16187, 2063, 16823, 2143, 17467, 18119, 1153, 2389, 19447, 2473, 20123, 1279, 20807, 661, 21499, 2731, 2819, 22907, 727, 23623, 1499, 3089, 809, 3181, 25819, 1637, 857, 421, 3463, 28087, 3559, 28859, 457, 1877, 30427, 3853, 31223, 32027, 2027, 32839, 1039, 4259, 34487, 4363, 35323, 1117, 613, 2287, 37019, 37879, 4789, 38747, 39623, 40507, 5119, 41399, 5231, 42299, 43207, 2729, 44123, 5573, 5689, 45979, 2903, 46919, 1481, 6043, 48823, 6163, 49787, 1571, 3203, 1669, 6529, 52727, 6653, 1733, 3389, 54727, 863, 7159, 57787, 911, 997, 3709, 7549, 60919, 7681, 61979, 3907, 941, 1987, 64123, 8219, 2089, 67399, 68507, 69623, 4457, 71879, 73019, 9199, 74167, 9343, 75323, 593, 76487, 4817, 77659, 9781, 78839, 9929, 1013, 5039, 81223, 2557, 83639, 10531, 84859, 2671, 2777, 5419, 87323, 10993, 2857, 11149, 89819, 5653, 91079, 1433, 92347, 11783, 94907, 1493, 96199, 6053, 97499, 12269, 98807, 12433, 1697, 6299, 3191, 1301, 104119, 13099, 105467, 106823, 6719, 108187, 1231, 13781, 110939, 6977, 112327, 883, 113723, 14303, 115127, 14479, 116539, 117959, 7417, 15013, 120823, 15193, 122267, 7687, 123719, 3889, 829, 15739, 1423, 15923, 4133, 4027, 129607, 8147, 4229, 16481, 1367, 2273, 8429, 135623, 2131, 137147, 17239, 138679, 17431, 2203, 141767, 18013, 144887, 877, 9203, 4651, 149627, 18803, 1559, 2281, 4801, 154439, 156059, 19609, 1151, 19813, 1489, 10009, 160967, 1187, 20431, 164279, 20639, 165947, 1303, 167623, 10529, 169307, 21269, 21481, 10847, 174407, 5477, 176123, 22123, 5737, 179579, 5639, 5849, 183067, 22993, 184823, 186587, 11717, 188359, 2957, 1777, 23879, 3253, 24103, 193723, 3041, 195527, 12277, 197339, 24781, 2521, 200987, 12619, 202823, 6367, 204667, 206519, 25931, 208379, 210247, 212123, 26633, 214007, 215899, 13553, 1709, 219707, 27583, 221623, 27823, 223547, 225479, 14153, 227419, 28549, 28793, 231323, 14519, 2953, 7321, 7589, 29531, 4021, 7717, 7507, 15139, 243227, 30529, 30781, 247259, 249287, 3911, 251323, 31543, 253367, 31799, 255419, 4007, 1307, 259547, 32573, 32833, 2963, 16547, 2029, 267899, 33619, 1399, 1093, 8537, 1973, 17207, 4157, 34949, 17609, 1873, 1109, 35759, 287159, 3251, 2269, 18289, 293723, 9689, 9421, 302587, 37963, 9833, 307067, 9631, 19403, 5281, 39089, 39373, 3259, 318407, 4993, 320699, 40231, 322999, 40519, 325307, 5101, 2357, 20549, 329947, 41389, 1451, 41681, 334619, 1597, 10567, 339323, 1373, 341687, 42859, 3547, 10789, 346439, 21727, 348827, 43753, 351223, 44053, 353627, 356039, 2791, 358459, 44959, 2161, 45263, 22937, 46181, 370679, 46489, 12037, 23399, 375623, 11777, 12197, 47419, 3557, 383099, 12011, 385607, 24179, 2011, 48673, 390647, 48989, 395719, 6203, 398267, 49943, 400823, 50263, 403387, 6323, 405959, 25453, 408539, 51229, 411127, 1663, 5237, 25939, 418939, 421559, 52859, 424187, 13297, 3989, 26759, 429467, 53849, 54181, 2207, 2897, 6569, 442807, 445499, 3491, 448199, 28097, 2137, 56533, 14633, 56873, 3331, 28607, 14389, 461819, 57899, 3391, 58243, 470087, 472859, 59281, 475639, 59629, 478427, 29989, 5407, 7541, 484027, 60679, 486839, 61031, 489659, 7673, 492487, 30869, 495323, 2003, 498167, 501019, 503879, 15791, 1619, 509623, 512507, 16061, 5791, 32303, 518299, 64969, 3121, 524123, 8933, 4129, 529979, 66431, 532919, 1907, 2099, 538823, 33769, 17477, 544759, 68281, 17669, 34327, 17257, 1999, 69403, 556727, 69779, 559739, 17539, 562759, 35267, 565787, 70913, 568823, 71293, 571867, 35837, 5927, 9007, 577979, 581047, 72823, 2221, 9151, 7433, 593399, 2399, 596507, 37379, 599623, 18787, 75539, 605879, 75931, 4649, 19081, 6311, 2687, 77509, 2311, 38953, 624839, 2447, 631223, 79103, 10753, 4969, 39953, 640859, 80309, 80713, 4657, 40559, 650567, 653819, 81931, 657079, 82339, 660347, 2467, 41579, 2657, 670199, 673499, 42197, 676807, 10601, 680123, 85223, 683447, 85639, 690119, 43237, 6481, 2803, 696823, 87313, 4637, 43867, 703559, 22039, 710327, 89003, 12097, 717127, 44927, 90281, 723959, 90709, 5233, 45569, 730823, 734267, 737719, 92431, 23909, 46649, 24133, 2371, 94169, 7057, 47303, 758599, 23761, 8563, 95483, 765623, 95923, 769147, 24091, 776219, 779767, 783323, 49069, 786887, 12323, 790459, 794039, 3209, 797627, 12491, 2309, 9043, 100829, 808439, 101281,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-188x+59 and
the reducible primes which appear as divisor for the first time
p | x^2-188x+59 and p < x^2-188x+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)
11010641.0000000.6000001.0000000.0000000.0000000.000000
21008541440.8500000.4100000.8500008.5000006.83333311.000000
31.0007202884320.7200000.2880000.7200008.4705897.0243909.818182
410.0007.7102.2535.4570.7710000.2253000.77100010.7083337.82291712.631945
5100.00076.48117.57658.9050.7648100.1757600.7648109.9197157.80115410.794393
61.000.000752.573143.872608.7010.7525730.1438720.7525739.8399998.18570810.333605
710.000.0007.435.6061.217.3776.218.2290.7435610.1217380.7435619.8802458.46152910.215572
8100.000.00073.681.99710.549.93863.132.0590.7368200.1054990.7368209.9093478.66612210.152740
91.000.000.000731.634.07193.087.323638.546.7480.7316340.0930870.7316349.9296178.82349510.114461
1010.000.000.0007.275.712.671833.032.8296.442.679.8420.7275710.0833030.7275719.9444698.94894010.089598


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
244311.0000000.7500000.2500002.0000001.500000inf
388531.0000000.6250000.3750002.0000001.6666673.000000
41615960.9375000.5625000.3750001.8750001.8000002.000000
5323016140.9375000.5000000.4375002.0000001.7777782.333333
6646031290.9375000.4843750.4531252.0000001.9375002.071429
71288541440.6640620.3203120.3437501.4166671.3225811.517241
825613170610.5117190.2734380.2382811.5411761.7073171.386364
95123351511840.6542970.2949220.3593752.5572522.1571433.016393
101.0247402944460.7226560.2871090.4355472.2089551.9470202.423913
112.0481.5515491.0020.7573240.2680660.4892582.0959461.8673472.246637
124.0963.1521.0222.1300.7695310.2495120.5200202.0322371.8615672.125748
138.1926.3161.8774.4390.7709960.2291260.5418702.0038071.8365952.084038
1416.38412.6193.4759.1440.7702030.2120970.5581051.9979421.8513592.059923
1532.76825.1986.41118.7870.7689820.1956480.5733341.9968301.8448922.054571
1665.53650.26411.93938.3250.7669680.1821750.5847931.9947611.8622682.039974
17131.07299.99022.38377.6070.7628630.1707690.5920941.9892971.8747802.024971
18262.144199.02342.162156.8610.7592120.1608350.5983771.9904291.8836622.021222
19524.288396.12579.688316.4370.7555480.1519930.6035561.9903481.8900432.017308
201.048.576788.969150.296638.6730.7524190.1433330.6090861.9917171.8860562.018326
212.097.1521.571.445284.9081.286.5370.7493230.1358550.6134691.9917701.8956462.014391
224.194.3043.131.423542.2322.589.1910.7465890.1292780.6173111.9927031.9031832.012527
238.388.6086.242.8501.033.2045.209.6460.7442060.1231680.6210381.9936141.9054652.012075
2416.777.21612.446.8541.974.32410.472.5300.7418900.1176790.6242111.9937781.9108752.010219
2533.554.43224.822.5443.779.87321.042.6710.7397690.1126490.6271201.9942831.9145152.009321
2667.108.86449.515.7787.248.10142.267.6770.7378430.1080050.6298371.9947911.9175522.008665
27134.217.72898.793.53213.921.78584.871.7470.7360690.1037250.6323441.9951931.9207492.007959
28268.435.456197.145.35526.785.907170.359.4480.7344240.0997850.6346381.9955291.9240282.007258
29536.870.912393.477.12551.612.632341.864.4930.7329080.0961360.6367721.9958731.9268582.006724
301.073.741.824785.433.83799.589.338685.844.4990.7314920.0927500.6387421.9961361.9295542.006188
312.147.483.6481.568.054.175192.404.7001.375.649.4750.7301820.0895950.6405871.9964181.9319812.005775
324.294.967.2963.130.856.128372.129.7962.758.726.3320.7289590.0866430.6423161.9966511.9340992.005399
338.589.934.5926.251.857.817720.568.4395.531.289.3780.7278120.0838850.6439271.9968531.9363362.005016
3417.179.869.18412.485.203.9401.396.666.64911.088.537.2910.7267350.0812970.6454381.9970391.9382852.004693


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
122111100
243121110
385322120
4169544140
532161067180
664312011141160
7128412912191210
825670403019142116
9512151718019522159
101.0242941131811912321131
112.0485491953541925021259
124.0961.0223606621948721495
138.1921.8776581.2191991321924
1416.3843.4751.1702.305191.728211.707
1532.7686.4112.1484.263193.177213.194
1665.53611.9394.0047.935195.942215.957
17131.07222.3837.49514.8881911.1902111.153
18262.14442.16214.08928.0731921.0672121.055
19524.28879.68826.53953.1491939.7522139.896
201.048.576150.29649.991100.3051975.0862175.170
212.097.152284.90894.857190.05119142.46621142.402
224.194.304542.232180.669361.56319271.16721271.025
238.388.6081.033.204344.037689.16719516.85821516.306
2416.777.2161.974.324657.6171.316.70719986.97421987.310
2533.554.4323.779.8731.259.3132.520.560191.889.342211.890.491
2667.108.8647.248.1012.415.7564.832.345193.623.443213.624.618
27134.217.72813.921.7854.640.5479.281.238196.960.013216.961.732
28268.435.45626.785.9078.929.36517.856.5421913.391.1212113.394.746
29536.870.91251.612.63217.204.67634.407.9561925.803.6572125.808.935
301.073.741.82499.589.33833.198.69766.390.6411949.796.3102149.792.988
312.147.483.648192.404.70064.132.662128.272.0381996.204.6242196.200.036
324.294.967.296372.129.796124.035.330248.094.46619186.069.94321186.059.813
338.589.934.592720.568.439240.184.382480.384.05719360.290.40721360.277.992
3417.179.869.1841.396.666.649465.560.648931.106.00119698.333.97121698.332.638


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
241100001
383210102
4166421122
53214684433
6642915147868
71284420249131012
825661293213181317
9512184968844454748
101.024446231215119105113109
112.0481.002521481272230265235
124.0962.1301.1081.022547489581513
138.1924.4392.3032.1361.1571.0331.1941.055
1416.3849.1444.7394.4052.3852.1272.4442.188
1532.76818.7879.6999.0884.8764.4544.9354.522
1665.53638.32519.70618.6199.9199.2019.9269.279
17131.07277.60739.90737.70020.03118.70620.12618.744
18262.144156.86180.58776.27440.46737.85940.59837.937
19524.288316.437162.125154.31281.55776.49981.59476.787
201.048.576638.673327.011311.662164.100154.825164.239155.509
212.097.1521.286.537658.133628.404329.986313.004330.136313.411
224.194.3042.589.1911.322.3851.266.806663.033631.345663.539631.274
238.388.6085.209.6462.657.4332.552.2131.332.2481.271.9451.333.8511.271.602
2416.777.21610.472.5305.336.5135.136.0172.674.9402.560.2662.676.0182.561.306
2533.554.43221.042.67110.714.81210.327.8595.370.8705.149.4205.372.3235.150.058
2667.108.86442.267.67721.502.88220.764.79510.779.62510.355.12110.780.05610.352.875
27134.217.72884.871.74743.150.70141.721.04621.622.02120.813.74821.627.59020.808.388
28268.435.456170.359.44886.556.11583.803.33343.371.48041.810.99543.372.14941.804.824
29536.870.912341.864.493173.587.614168.276.87986.966.69583.959.24986.970.48083.968.069
301.073.741.824685.844.499348.039.406337.805.093174.339.212168.566.595174.357.146168.581.546
312.147.483.6481.375.649.475697.673.880677.975.595349.462.424338.342.598349.474.646338.369.807
324.294.967.2962.758.726.3321.398.409.1971.360.317.135700.389.440678.952.490700.404.632678.979.770
338.589.934.5925.531.289.3782.802.481.7982.728.807.5801.403.485.2031.362.129.4851.403.522.1571.362.152.533
3417.179.869.18411.088.537.2915.615.614.7995.472.922.4922.812.100.4522.732.111.9042.812.130.2242.732.194.711


8. Check for existing Integer Sequences by OEIS

Found in Database : 59, 1, 313, 31, 677, 107, 1033, 151, 1381, 97, 1721, 1, 2053, 277, 2377, 317, 2693, 89, 3001, 197,
Found in Database : 59, 313, 31, 677, 107, 1033, 151, 1381, 97, 1721, 2053, 277, 2377, 317, 2693, 89, 3001, 197, 3301, 431, 3593, 467, 3877, 251, 4153, 67, 4421, 569, 601, 4933, 79, 167, 331, 5413, 691, 5641, 719,
Found in Database : 31, 59, 67, 79, 89, 97, 107, 131, 137, 139,