Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:58:19
Deutsch
20.Apr 2024

Polynom = x^2+44x-103

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) = 103 = 103
f(1) = 29 = 29
f(2) = 11 = 11
f(3) = 19 = 19
f(4) = 89 = 89
f(5) = 71 = 71
f(6) = 197 = 197
f(7) = 127 = 127
f(8) = 313 = 313
f(9) = 187 = 11*17
f(10) = 437 = 19*23
f(11) = 251 = 251
f(12) = 569 = 569
f(13) = 319 = 11*29
f(14) = 709 = 709
f(15) = 391 = 17*23
f(16) = 857 = 857
f(17) = 467 = 467
f(18) = 1013 = 1013
f(19) = 547 = 547
f(20) = 1177 = 11*107
f(21) = 631 = 631
f(22) = 1349 = 19*71
f(23) = 719 = 719
f(24) = 1529 = 11*139
f(25) = 811 = 811
f(26) = 1717 = 17*101
f(27) = 907 = 907
f(28) = 1913 = 1913
f(29) = 1007 = 19*53
f(30) = 2117 = 29*73
f(31) = 1111 = 11*101
f(32) = 2329 = 17*137
f(33) = 1219 = 23*53
f(34) = 2549 = 2549
f(35) = 1331 = 11*11*11
f(36) = 2777 = 2777
f(37) = 1447 = 1447
f(38) = 3013 = 23*131
f(39) = 1567 = 1567
f(40) = 3257 = 3257
f(41) = 1691 = 19*89
f(42) = 3509 = 11*11*29
f(43) = 1819 = 17*107
f(44) = 3769 = 3769
f(45) = 1951 = 1951
f(46) = 4037 = 11*367
f(47) = 2087 = 2087
f(48) = 4313 = 19*227
f(49) = 2227 = 17*131
f(50) = 4597 = 4597
f(51) = 2371 = 2371
f(52) = 4889 = 4889
f(53) = 2519 = 11*229
f(54) = 5189 = 5189
f(55) = 2671 = 2671
f(56) = 5497 = 23*239
f(57) = 2827 = 11*257
f(58) = 5813 = 5813
f(59) = 2987 = 29*103
f(60) = 6137 = 17*19*19
f(61) = 3151 = 23*137
f(62) = 6469 = 6469
f(63) = 3319 = 3319
f(64) = 6809 = 11*619
f(65) = 3491 = 3491
f(66) = 7157 = 17*421
f(67) = 3667 = 19*193
f(68) = 7513 = 11*683
f(69) = 3847 = 3847
f(70) = 7877 = 7877
f(71) = 4031 = 29*139
f(72) = 8249 = 73*113
f(73) = 4219 = 4219
f(74) = 8629 = 8629
f(75) = 4411 = 11*401
f(76) = 9017 = 71*127
f(77) = 4607 = 17*271
f(78) = 9413 = 9413
f(79) = 4807 = 11*19*23
f(80) = 9817 = 9817
f(81) = 5011 = 5011
f(82) = 10229 = 53*193
f(83) = 5219 = 17*307
f(84) = 10649 = 23*463
f(85) = 5431 = 5431
f(86) = 11077 = 11*19*53
f(87) = 5647 = 5647
f(88) = 11513 = 29*397
f(89) = 5867 = 5867
f(90) = 11957 = 11*1087
f(91) = 6091 = 6091
f(92) = 12409 = 12409
f(93) = 6319 = 71*89
f(94) = 12869 = 17*757
f(95) = 6551 = 6551
f(96) = 13337 = 13337
f(97) = 6787 = 11*617
f(98) = 13813 = 19*727
f(99) = 7027 = 7027
f(100) = 14297 = 17*29*29

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+44x-103

f(0)=103
f(1)=29
f(2)=11
f(3)=19
f(4)=89
f(5)=71
f(6)=197
f(7)=127
f(8)=313
f(9)=17
f(10)=23
f(11)=251
f(12)=569
f(13)=1
f(14)=709
f(15)=1
f(16)=857
f(17)=467
f(18)=1013
f(19)=547
f(20)=107
f(21)=631
f(22)=1
f(23)=719
f(24)=139
f(25)=811
f(26)=101
f(27)=907
f(28)=1913
f(29)=53
f(30)=73
f(31)=1
f(32)=137
f(33)=1
f(34)=2549
f(35)=1
f(36)=2777
f(37)=1447
f(38)=131
f(39)=1567
f(40)=3257
f(41)=1
f(42)=1
f(43)=1
f(44)=3769
f(45)=1951
f(46)=367
f(47)=2087
f(48)=227
f(49)=1
f(50)=4597
f(51)=2371
f(52)=4889
f(53)=229
f(54)=5189
f(55)=2671
f(56)=239
f(57)=257
f(58)=5813
f(59)=1
f(60)=1
f(61)=1
f(62)=6469
f(63)=3319
f(64)=619
f(65)=3491
f(66)=421
f(67)=193
f(68)=683
f(69)=3847
f(70)=7877
f(71)=1
f(72)=113
f(73)=4219
f(74)=8629
f(75)=401
f(76)=1
f(77)=271
f(78)=9413
f(79)=1
f(80)=9817
f(81)=5011
f(82)=1
f(83)=307
f(84)=463
f(85)=5431
f(86)=1
f(87)=5647
f(88)=397
f(89)=5867
f(90)=1087
f(91)=6091
f(92)=12409
f(93)=1
f(94)=757
f(95)=6551
f(96)=13337
f(97)=617
f(98)=727
f(99)=7027

b) Substitution of the polynom
The polynom f(x)=x^2+44x-103 could be written as f(y)= y^2-587 with x=y-22

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+22
f'(x)>2x+43

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

103, 29, 11, 19, 89, 71, 197, 127, 313, 17, 23, 251, 569, 1, 709, 1, 857, 467, 1013, 547, 107, 631, 1, 719, 139, 811, 101, 907, 1913, 53, 73, 1, 137, 1, 2549, 1, 2777, 1447, 131, 1567, 3257, 1, 1, 1, 3769, 1951, 367, 2087, 227, 1, 4597, 2371, 4889, 229, 5189, 2671, 239, 257, 5813, 1, 1, 1, 6469, 3319, 619, 3491, 421, 193, 683, 3847, 7877, 1, 113, 4219, 8629, 401, 1, 271, 9413, 1, 9817, 5011, 1, 307, 463, 5431, 1, 5647, 397, 5867, 1087, 6091, 12409, 1, 757, 6551, 13337, 617, 727, 7027, 1, 661, 643, 1, 15289, 409, 15797, 349, 1483, 8287, 149, 503, 1579, 8819, 17909, 9091, 18457, 1, 19013, 877, 19577, 9931, 20149, 929, 1091, 457, 21317, 1, 1289, 383, 1, 11411, 1, 11719, 1, 1, 1283, 12347, 25013, 1, 25657, 1181, 26309, 701, 181, 1, 953, 1, 1231, 14327, 1, 863, 2699, 653, 30389, 809, 1, 15727, 1097, 16087, 32537, 16451, 1, 1, 479, 17191, 34757, 1597, 2089, 1, 36277, 797, 37049, 18719, 1, 659, 1, 19507, 3583, 1171, 1, 1069, 461, 20719, 41849, 1, 42677, 743, 821, 1997, 44357, 22391, 853, 1201, 2003, 23251, 1, 23687, 1, 1049, 233, 24571, 2917, 1, 1741, 25471, 499, 2357, 52313, 26387, 1, 2441, 2851, 1607, 55109, 27791, 1933, 1229, 1, 1, 57977, 29231, 1, 263, 59929, 30211, 60917, 30707, 613, 2837, 3701, 1669, 63929, 1, 607, 1, 3881, 33247, 3527, 33767, 269, 647, 69109, 34819, 6379, 1, 71237, 2111, 72313, 1, 3863, 3361, 74489, 2207, 281, 3461, 76697, 1, 77813, 1, 1, 1, 1, 1753, 1, 1, 7487, 41467, 3631, 2213, 293, 1, 1, 3929, 3001, 1, 4643, 1, 89413, 45007, 90617, 2683, 1, 46219, 769, 46831, 4099, 2791, 1, 677, 96757, 1, 98009, 331, 1873, 1, 100537, 50587, 1, 4657, 787, 51871, 751, 1811, 6217, 53171, 1, 2833, 1217, 1, 9967, 1, 110969, 55819, 1, 3323, 113657, 5197, 115013, 57847, 4013, 1, 1613, 59219, 119129, 1, 6343, 60607, 11083, 1, 971, 62011, 1, 3301, 1249, 1, 1129, 2789, 7589, 5897, 130457, 1, 131909, 6029, 1, 3529, 134837, 1279, 1, 1, 12527, 1307, 7331, 70019, 12799, 1, 142297, 71527, 143813, 72287, 1, 1, 1, 73819, 1, 6781, 8821, 75367, 1471, 76147, 153077, 4049, 827, 77719, 156229, 78511, 14347, 1117, 1, 80107, 161017, 80911, 162629, 1, 164249, 82531, 165877, 7577, 1319, 4951, 1, 84991, 170809, 85819, 15679, 1187, 174137, 983, 1453, 88327, 1, 3877, 9431, 90019, 3413, 1, 1, 3163, 1237, 443, 186037, 1, 1823, 1, 189509, 95191, 17387, 5651, 193013, 3343, 17707, 1, 196549, 5807, 8623, 99611, 200117, 9137, 10627, 4409, 2017, 1, 205529, 1, 12197, 1031, 7213, 1439, 19183, 105967, 1, 1, 1, 1, 216569, 108751, 218437, 1, 1, 1, 222197, 6563, 9743, 1, 225989, 487, 1, 1, 229813, 6073, 21067, 116351, 233669, 117319, 21419, 4079, 12503, 119267, 1, 120247, 10499, 1, 1777, 122219, 14437, 1, 1, 4283, 13127, 125207, 251417, 126211, 23039, 127219, 1, 1, 1, 1, 1867, 130267, 261557, 7723, 263609, 523, 9161, 133351, 267737, 1, 11731, 135427, 271897, 136471, 1, 137519, 1321, 138571, 1, 139627, 1499, 1, 1, 1, 1, 1, 1, 1, 1, 144967, 291013, 1, 293177, 6397, 1123, 1, 2633, 8783, 2477, 150407, 301913, 151507, 27647, 1511, 306329, 153719, 1291, 1, 1, 14177, 3517, 6829, 315257, 1, 1, 159319, 13903, 571, 322037, 1, 29483, 162727, 326597, 163871, 1, 1, 17431, 1553, 333497, 1, 335813, 1, 338137, 8929, 1, 1, 11821, 587, 1, 7529, 347513, 174347, 1871, 1, 352249, 1, 1, 1999, 21001, 179107, 3359, 180307, 1, 1, 1, 2503, 2887, 1, 369077, 10891, 371513, 1, 1, 1259, 1801, 1, 378869, 190051, 34667, 1, 383813, 10133, 386297, 193771, 388789, 17729, 23017, 196271, 393797, 17957, 17231, 1451, 1, 10529, 7573, 8753, 1, 202591, 7669, 1, 1, 1, 411577, 12143, 14281, 207719, 1, 19001, 419317, 1, 421913, 19237, 22343, 9257, 4229, 214219, 1373, 215531, 1709, 1, 25589, 7523, 3617, 219491, 3467, 1, 1, 222151, 2309, 1847, 448313, 11833, 450997, 1, 1, 227519, 19843, 13463, 1, 230227, 41983, 10069, 464537, 1, 1, 234319, 5281, 4447, 2029, 237067, 1, 1, 1861, 239831, 28297, 21929, 483829, 1, 486617, 1, 28789, 245407, 1543, 246811, 21523, 1, 45259, 2333, 500677, 1, 2161, 14851, 506357, 23081, 1879, 1949, 26951, 1, 1, 1, 2063, 259627, 22639, 261071, 47599, 262519, 4019, 1, 1, 265427, 532313, 9203, 535237, 2113, 31657, 1, 1, 3821, 6113, 1, 10321, 1973, 549977, 2677, 10433, 1, 50539, 14669, 19273, 280207, 2221, 1, 564917, 283211, 1, 2819, 570949, 26021, 573977, 287747, 1, 26297, 1, 290791, 1, 292319, 30851, 1, 1, 295387, 1, 1, 1, 1, 598489, 3371, 601589, 10399, 604697, 1621, 607813, 304687, 8369, 2531, 1, 1, 2459, 309391, 4463, 10723, 5153, 1, 32983, 5927, 57259, 1, 1619, 5987, 636217, 318907, 2377, 29137, 1, 322111, 1789, 29429, 22381, 1, 9187, 326947, 5801, 17293, 59887, 19423, 1, 331819, 1, 333451, 23053, 1, 1, 336727, 675097, 1, 9293, 4789, 681689, 1, 1, 343327, 2131, 344987, 691637, 346651, 63179, 12011, 41077, 15217, 1, 351667, 705013, 1, 1, 355031, 711749, 32429, 1, 1, 2557, 1723, 1, 361807, 725317, 21383, 728729, 5003, 1, 2801, 1, 368647, 1, 1, 742457, 1, 1, 16253, 1, 34141, 39623, 377287, 2617, 34457, 759797, 1, 1, 382519, 1, 2579, 1, 5437, 1, 22811, 70667, 16937, 780869, 3463, 784409, 1, 34259, 35897, 4373, 396647, 795077, 1, 798649, 1, 11299, 5507, 1, 1, 73583, 405607, 813017, 7687, 1, 1, 1877, 411031, 823877, 1, 1, 1, 3067, 416491, 834809, 2237, 9421, 1, 1, 421987, 4673, 1, 2663, 3767, 853189, 22501, 77899, 3089, 11789, 18749, 2053, 433087, 51061, 39541, 1, 436819, 875509, 2099, 51721, 440567, 883013, 442447, 886777, 1907, 4261, 1, 894329, 448111, 81647, 1, 12703, 15583, 1, 5099, 909529, 2437, 1, 1, 1, 41777, 921013, 461467, 9157, 1, 1, 465319, 4987, 6581, 936437, 1, 1, 1, 55541, 1, 948089, 1, 1, 1, 4211, 478927, 1, 43717, 50723, 28403, 1987, 1, 1, 3833, 1, 28751, 1, 2143, 3083, 492731, 51971, 494719, 991429, 496711, 1, 45337, 58789, 1, 1003417, 1, 1007429, 1, 59497, 506731, 9859, 1, 92683, 510767, 1023557, 1, 93419, 514819, 1031669, 30403, 1, 3733, 54727, 1,

6. Sequence of the polynom (only primes)

103, 29, 11, 19, 89, 71, 197, 127, 313, 17, 23, 251, 569, 709, 857, 467, 1013, 547, 107, 631, 719, 139, 811, 101, 907, 1913, 53, 73, 137, 2549, 2777, 1447, 131, 1567, 3257, 3769, 1951, 367, 2087, 227, 4597, 2371, 4889, 229, 5189, 2671, 239, 257, 5813, 6469, 3319, 619, 3491, 421, 193, 683, 3847, 7877, 113, 4219, 8629, 401, 271, 9413, 9817, 5011, 307, 463, 5431, 5647, 397, 5867, 1087, 6091, 12409, 757, 6551, 13337, 617, 727, 7027, 661, 643, 15289, 409, 15797, 349, 1483, 8287, 149, 503, 1579, 8819, 17909, 9091, 18457, 19013, 877, 19577, 9931, 20149, 929, 1091, 457, 21317, 1289, 383, 11411, 11719, 1283, 12347, 25013, 25657, 1181, 26309, 701, 181, 953, 1231, 14327, 863, 2699, 653, 30389, 809, 15727, 1097, 16087, 32537, 16451, 479, 17191, 34757, 1597, 2089, 36277, 797, 37049, 18719, 659, 19507, 3583, 1171, 1069, 461, 20719, 41849, 42677, 743, 821, 1997, 44357, 22391, 853, 1201, 2003, 23251, 23687, 1049, 233, 24571, 2917, 1741, 25471, 499, 2357, 52313, 26387, 2441, 2851, 1607, 55109, 27791, 1933, 1229, 57977, 29231, 263, 59929, 30211, 60917, 30707, 613, 2837, 3701, 1669, 63929, 607, 3881, 33247, 3527, 33767, 269, 647, 69109, 34819, 6379, 71237, 2111, 72313, 3863, 3361, 74489, 2207, 281, 3461, 76697, 77813, 1753, 7487, 41467, 3631, 2213, 293, 3929, 3001, 4643, 89413, 45007, 90617, 2683, 46219, 769, 46831, 4099, 2791, 677, 96757, 98009, 331, 1873, 100537, 50587, 4657, 787, 51871, 751, 1811, 6217, 53171, 2833, 1217, 9967, 110969, 55819, 3323, 113657, 5197, 115013, 57847, 4013, 1613, 59219, 119129, 6343, 60607, 11083, 971, 62011, 3301, 1249, 1129, 2789, 7589, 5897, 130457, 131909, 6029, 3529, 134837, 1279, 12527, 1307, 7331, 70019, 12799, 142297, 71527, 143813, 72287, 73819, 6781, 8821, 75367, 1471, 76147, 153077, 4049, 827, 77719, 156229, 78511, 14347, 1117, 80107, 161017, 80911, 162629, 164249, 82531, 165877, 7577, 1319, 4951, 84991, 170809, 85819, 15679, 1187, 174137, 983, 1453, 88327, 3877, 9431, 90019, 3413, 3163, 1237, 443, 186037, 1823, 189509, 95191, 17387, 5651, 193013, 3343, 17707, 196549, 5807, 8623, 99611, 200117, 9137, 10627, 4409, 2017, 205529, 12197, 1031, 7213, 1439, 19183, 105967, 216569, 108751, 218437, 222197, 6563, 9743, 225989, 487, 229813, 6073, 21067, 116351, 233669, 117319, 21419, 4079, 12503, 119267, 120247, 10499, 1777, 122219, 14437, 4283, 13127, 125207, 251417, 126211, 23039, 127219, 1867, 130267, 261557, 7723, 263609, 523, 9161, 133351, 267737, 11731, 135427, 271897, 136471, 137519, 1321, 138571, 139627, 1499, 144967, 291013, 293177, 6397, 1123, 2633, 8783, 2477, 150407, 301913, 151507, 27647, 1511, 306329, 153719, 1291, 14177, 3517, 6829, 315257, 159319, 13903, 571, 322037, 29483, 162727, 326597, 163871, 17431, 1553, 333497, 335813, 338137, 8929, 11821, 587, 7529, 347513, 174347, 1871, 352249, 1999, 21001, 179107, 3359, 180307, 2503, 2887, 369077, 10891, 371513, 1259, 1801, 378869, 190051, 34667, 383813, 10133, 386297, 193771, 388789, 17729, 23017, 196271, 393797, 17957, 17231, 1451, 10529, 7573, 8753, 202591, 7669, 411577, 12143, 14281, 207719, 19001, 419317, 421913, 19237, 22343, 9257, 4229, 214219, 1373, 215531, 1709, 25589, 7523, 3617, 219491, 3467, 222151, 2309, 1847, 448313, 11833, 450997, 227519, 19843, 13463, 230227, 41983, 10069, 464537, 234319, 5281, 4447, 2029, 237067, 1861, 239831, 28297, 21929, 483829, 486617, 28789, 245407, 1543, 246811, 21523, 45259, 2333, 500677, 2161, 14851, 506357, 23081, 1879, 1949, 26951, 2063, 259627, 22639, 261071, 47599, 262519, 4019, 265427, 532313, 9203, 535237, 2113, 31657, 3821, 6113, 10321, 1973, 549977, 2677, 10433, 50539, 14669, 19273, 280207, 2221, 564917, 283211, 2819, 570949, 26021, 573977, 287747, 26297, 290791, 292319, 30851, 295387, 598489, 3371, 601589, 10399, 604697, 1621, 607813, 304687, 8369, 2531, 2459, 309391, 4463, 10723, 5153, 32983, 5927, 57259, 1619, 5987, 636217, 318907, 2377, 29137, 322111, 1789, 29429, 22381, 9187, 326947, 5801, 17293, 59887, 19423, 331819, 333451, 23053, 336727, 675097, 9293, 4789, 681689, 343327, 2131, 344987, 691637, 346651, 63179, 12011, 41077, 15217, 351667, 705013, 355031, 711749, 32429, 2557, 1723, 361807, 725317, 21383, 728729, 5003, 2801, 368647, 742457, 16253, 34141, 39623, 377287, 2617, 34457, 759797, 382519, 2579, 5437, 22811, 70667, 16937, 780869, 3463, 784409, 34259, 35897, 4373, 396647, 795077, 798649, 11299, 5507, 73583, 405607, 813017, 7687, 1877, 411031, 823877, 3067, 416491, 834809, 2237, 9421, 421987, 4673, 2663, 3767, 853189, 22501, 77899, 3089, 11789, 18749, 2053, 433087, 51061, 39541, 436819, 875509, 2099, 51721, 440567, 883013, 442447, 886777, 1907, 4261, 894329, 448111, 81647, 12703, 15583, 5099, 909529, 2437, 41777, 921013, 461467, 9157, 465319, 4987, 6581, 936437, 55541, 948089, 4211, 478927, 43717, 50723, 28403, 1987, 3833, 28751, 2143, 3083, 492731, 51971, 494719, 991429, 496711, 45337, 58789, 1003417, 1007429, 59497, 506731, 9859, 92683, 510767, 1023557, 93419, 514819, 1031669, 30403, 3733, 54727,

7. Distribution of the primes

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

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)
11010911.0000000.9000000.1000000.0000000.0000000.000000
21007853250.7800000.5300000.2500007.8000005.88888925.000000
31.0007223403820.7220000.3400000.3820009.2564116.41509415.280000
410.0007.1912.3924.7990.7191000.2392000.4799009.9598347.03529412.562827
5100.00071.37718.50452.8730.7137700.1850400.5287309.9258797.73578611.017504
61.000.000710.966150.706560.2600.7109660.1507060.5602609.9607158.14450910.596334
710.000.0007.082.5761.271.4025.811.1740.7082580.1271400.5811179.9619058.43630610.372281
8100.000.00070.616.16211.010.40759.605.7550.7061620.1101040.5960589.9704078.66005110.257093
91.000.000.000704.599.21997.024.196607.575.0230.7045990.0970240.6075759.9778758.81204410.193228
1010.000.000.0007.033.642.024867.462.8916.166.179.1330.7033640.0867460.6166189.9824718.94068710.148836


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
245501.2500001.2500000.0000001.6666671.666667-nan
389901.1250001.1250000.0000001.8000001.800000-nan
416141310.8750000.8125000.0625001.5555561.444444inf
532272160.8437500.6562500.1875001.9285711.6153856.000000
6645037130.7812500.5781250.2031251.8518521.7619052.166667
712810265370.7968750.5078120.2890622.0400001.7567572.846154
8256198111870.7734380.4335940.3398441.9411761.7076922.351351
95123791971820.7402340.3847660.3554691.9141411.7747752.091954
101.0247373473900.7197270.3388670.3808591.9445911.7614212.142857
112.0481.4786168620.7216800.3007810.4208982.0054271.7752162.210256
124.0962.9431.1081.8350.7185060.2705080.4479981.9912041.7987012.128770
138.1925.8902.0043.8860.7189940.2446290.4743652.0013591.8086642.117711
1416.38411.7513.6998.0520.7172240.2257690.4914551.9950761.8458082.072053
1532.76823.4526.83116.6210.7156980.2084660.5072331.9957451.8467152.064208
1665.53646.81812.65334.1650.7143860.1930690.5213171.9963331.8522912.055532
17131.07293.60923.59770.0120.7141800.1800310.5341491.9994231.8649332.049232
18262.144186.77744.393142.3840.7124980.1693460.5431521.9952891.8812982.033709
19524.288373.00683.632289.3740.7114520.1595150.5519371.9970661.8839012.032349
201.048.576745.322157.473587.8490.7107940.1501780.5606161.9981501.8829282.031451
212.097.1521.488.868298.4081.190.4600.7099480.1422920.5676561.9976171.8949792.025112
224.194.3042.974.323567.0382.407.2850.7091340.1351920.5739411.9977081.9002102.022147
238.388.6085.942.6771.079.9024.862.7750.7084220.1287340.5796881.9979931.9044612.020025
2416.777.21611.873.7522.061.2609.812.4920.7077310.1228610.5848701.9980481.9087472.017879
2533.554.43223.724.7413.946.32219.778.4190.7070520.1176100.5894431.9980831.9145192.015637
2667.108.86447.411.9727.566.16339.845.8090.7064930.1127450.5937491.9984191.9172702.014610
27134.217.72894.750.11514.526.68180.223.4340.7059430.1082320.5977111.9984431.9199532.013347
28268.435.456189.365.01227.939.208161.425.8040.7054400.1040820.6013581.9985731.9233032.012203
29536.870.912378.487.33153.810.815324.676.5160.7049880.1002300.6047571.9987181.9259962.011305
301.073.741.824756.517.121103.799.140652.717.9810.7045610.0966700.6078911.9987911.9289642.010364
312.147.483.6481.512.161.842200.481.3351.311.680.5070.7041550.0933560.6107991.9988471.9314352.009567
324.294.967.2963.022.741.981387.637.7422.635.104.2390.7037870.0902540.6135331.9989541.9335352.008953
338.589.934.5926.042.485.925750.389.7735.292.096.1520.7034380.0873570.6160811.9990081.9358022.008306
3417.179.869.18412.079.354.7521.454.111.66810.625.243.0840.7031110.0846400.6184711.9990711.9378082.007757


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
123120111
245231211
389452223
41613584333
532219125745
66437181998911
712865343115171716
8256111516026272830
95121971009744505053
101.02434717717081828797
112.048616314302147159150160
124.0961.108553555273292261282
138.1922.0041.0011.003491525476512
1416.3843.6991.8581.841911962883943
1532.7686.8313.4513.3801.6891.7431.6451.754
1665.53612.6536.3406.3133.1143.2123.0933.234
17131.07223.59711.84111.7565.8255.9945.8075.971
18262.14444.39322.26422.12910.99711.29510.88411.217
19524.28883.63241.95141.68120.71221.20620.50821.206
201.048.576157.47379.09378.38038.94039.94038.69239.901
212.097.152298.408149.680148.72873.88375.54573.36275.618
224.194.304567.038284.542282.496140.235143.622139.772143.409
238.388.6081.079.902541.856538.046267.155273.000266.360273.387
2416.777.2162.061.2601.034.0951.027.165509.975520.790509.553520.942
2533.554.4323.946.3221.980.0891.966.233976.561996.925976.004996.832
2667.108.8647.566.1633.795.8793.770.2841.872.3341.911.4561.870.8861.911.487
27134.217.72814.526.6817.288.7787.237.9033.597.6673.668.7873.592.7133.667.514
28268.435.45627.939.20814.015.47713.923.7316.919.2907.051.8676.916.8157.051.236
29536.870.91253.810.81526.990.53426.820.28113.330.67713.576.03213.327.28713.576.819
301.073.741.824103.799.14052.055.09051.744.05025.718.70926.181.60125.720.25726.178.573
312.147.483.648200.481.335100.527.68599.953.65049.687.74350.551.98849.697.01550.544.589
324.294.967.296387.637.742194.353.386193.284.35696.108.19197.716.30196.112.03297.701.218
338.589.934.592750.389.773376.193.300374.196.473186.089.850189.101.932186.107.712189.090.279
3417.179.869.1841.454.111.668728.939.151725.172.517360.704.167366.352.345360.707.447366.347.709


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
4161010001
5326242211
66413583523
7128372215101188
825687404719192821
9512182899341464748
101.0243901911998910210891
112.048862422440208217215222
124.0961.835907928448472444471
138.1923.8861.9151.971965988968965
1416.3848.0524.0533.9992.0022.0081.9962.046
1532.76816.6218.3048.3174.1404.1544.1474.180
1665.53634.16517.07717.0888.5548.5338.5498.529
17131.07270.01234.92935.08317.62217.36317.46617.561
18262.144142.38471.10471.28035.80835.49135.47535.610
19524.288289.374144.653144.72172.59772.22172.10872.448
201.048.576587.849293.667294.182147.327146.908146.696146.918
212.097.1521.190.460595.576594.884297.894297.528297.674297.364
224.194.3042.407.2851.202.4211.204.864602.209601.462602.155601.459
238.388.6084.862.7752.430.5302.432.2451.215.8901.215.3031.216.3401.215.242
2416.777.2169.812.4924.903.4814.909.0112.454.2902.452.6382.453.1372.452.427
2533.554.43219.778.4199.884.7629.893.6574.944.3954.943.8404.947.4874.942.697
2667.108.86439.845.80919.916.48919.929.3209.960.8649.958.5519.966.8949.959.500
27134.217.72880.223.43440.095.00540.128.42920.055.70820.050.40820.063.46720.053.851
28268.435.456161.425.80480.686.05080.739.75440.359.76740.346.21940.362.31640.357.502
29536.870.912324.676.516162.292.935162.383.58181.181.48581.154.84781.177.39881.162.786
301.073.741.824652.717.981326.278.667326.439.314163.203.232163.151.709163.207.643163.155.397
312.147.483.6481.311.680.507655.707.140655.973.367327.980.186327.850.267327.986.035327.864.019
324.294.967.2962.635.104.2391.317.296.5331.317.807.706658.900.470658.661.982658.903.273658.638.514
338.589.934.5925.292.096.1522.645.571.9442.646.524.2081.323.246.6021.322.797.9661.323.292.9461.322.758.638
3417.179.869.18410.625.243.0845.311.782.3685.313.460.7162.656.710.3122.655.915.7452.656.789.2352.655.827.792


8. Check for existing Integer Sequences by OEIS

Found in Database : 103, 29, 11, 19, 89, 71, 197, 127, 313, 17, 23, 251, 569, 1, 709, 1, 857, 467, 1013, 547,
Found in Database : 103, 29, 11, 19, 89, 71, 197, 127, 313, 17, 23, 251, 569, 709, 857, 467, 1013, 547, 107, 631, 719, 139, 811, 101, 907, 1913, 53, 73, 137, 2549, 2777, 1447, 131, 1567,
Found in Database : 11, 17, 19, 23, 29, 53, 71, 73, 89, 101, 103, 107, 113, 127, 131, 137, 139, 149,