Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:14:24
Deutsch
20.Apr 2024

Polynom = x^2+25x-97

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) = 97 = 97
f(1) = 71 = 71
f(2) = 43 = 43
f(3) = 13 = 13
f(4) = 19 = 19
f(5) = 53 = 53
f(6) = 89 = 89
f(7) = 127 = 127
f(8) = 167 = 167
f(9) = 209 = 11*19
f(10) = 253 = 11*23
f(11) = 299 = 13*23
f(12) = 347 = 347
f(13) = 397 = 397
f(14) = 449 = 449
f(15) = 503 = 503
f(16) = 559 = 13*43
f(17) = 617 = 617
f(18) = 677 = 677
f(19) = 739 = 739
f(20) = 803 = 11*73
f(21) = 869 = 11*79
f(22) = 937 = 937
f(23) = 1007 = 19*53
f(24) = 1079 = 13*83
f(25) = 1153 = 1153
f(26) = 1229 = 1229
f(27) = 1307 = 1307
f(28) = 1387 = 19*73
f(29) = 1469 = 13*113
f(30) = 1553 = 1553
f(31) = 1639 = 11*149
f(32) = 1727 = 11*157
f(33) = 1817 = 23*79
f(34) = 1909 = 23*83
f(35) = 2003 = 2003
f(36) = 2099 = 2099
f(37) = 2197 = 13*13*13
f(38) = 2297 = 2297
f(39) = 2399 = 2399
f(40) = 2503 = 2503
f(41) = 2609 = 2609
f(42) = 2717 = 11*13*19
f(43) = 2827 = 11*257
f(44) = 2939 = 2939
f(45) = 3053 = 43*71
f(46) = 3169 = 3169
f(47) = 3287 = 19*173
f(48) = 3407 = 3407
f(49) = 3529 = 3529
f(50) = 3653 = 13*281
f(51) = 3779 = 3779
f(52) = 3907 = 3907
f(53) = 4037 = 11*367
f(54) = 4169 = 11*379
f(55) = 4303 = 13*331
f(56) = 4439 = 23*193
f(57) = 4577 = 23*199
f(58) = 4717 = 53*89
f(59) = 4859 = 43*113
f(60) = 5003 = 5003
f(61) = 5149 = 19*271
f(62) = 5297 = 5297
f(63) = 5447 = 13*419
f(64) = 5599 = 11*509
f(65) = 5753 = 11*523
f(66) = 5909 = 19*311
f(67) = 6067 = 6067
f(68) = 6227 = 13*479
f(69) = 6389 = 6389
f(70) = 6553 = 6553
f(71) = 6719 = 6719
f(72) = 6887 = 71*97
f(73) = 7057 = 7057
f(74) = 7229 = 7229
f(75) = 7403 = 11*673
f(76) = 7579 = 11*13*53
f(77) = 7757 = 7757
f(78) = 7937 = 7937
f(79) = 8119 = 23*353
f(80) = 8303 = 19*19*23
f(81) = 8489 = 13*653
f(82) = 8677 = 8677
f(83) = 8867 = 8867
f(84) = 9059 = 9059
f(85) = 9253 = 19*487
f(86) = 9449 = 11*859
f(87) = 9647 = 11*877
f(88) = 9847 = 43*229
f(89) = 10049 = 13*773
f(90) = 10253 = 10253
f(91) = 10459 = 10459
f(92) = 10667 = 10667
f(93) = 10877 = 73*149
f(94) = 11089 = 13*853
f(95) = 11303 = 89*127
f(96) = 11519 = 11519
f(97) = 11737 = 11*11*97
f(98) = 11957 = 11*1087
f(99) = 12179 = 19*641
f(100) = 12403 = 79*157

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+25x-97

f(0)=97
f(1)=71
f(2)=43
f(3)=13
f(4)=19
f(5)=53
f(6)=89
f(7)=127
f(8)=167
f(9)=11
f(10)=23
f(11)=1
f(12)=347
f(13)=397
f(14)=449
f(15)=503
f(16)=1
f(17)=617
f(18)=677
f(19)=739
f(20)=73
f(21)=79
f(22)=937
f(23)=1
f(24)=83
f(25)=1153
f(26)=1229
f(27)=1307
f(28)=1
f(29)=113
f(30)=1553
f(31)=149
f(32)=157
f(33)=1
f(34)=1
f(35)=2003
f(36)=2099
f(37)=1
f(38)=2297
f(39)=2399
f(40)=2503
f(41)=2609
f(42)=1
f(43)=257
f(44)=2939
f(45)=1
f(46)=3169
f(47)=173
f(48)=3407
f(49)=3529
f(50)=281
f(51)=3779
f(52)=3907
f(53)=367
f(54)=379
f(55)=331
f(56)=193
f(57)=199
f(58)=1
f(59)=1
f(60)=5003
f(61)=271
f(62)=5297
f(63)=419
f(64)=509
f(65)=523
f(66)=311
f(67)=6067
f(68)=479
f(69)=6389
f(70)=6553
f(71)=6719
f(72)=1
f(73)=7057
f(74)=7229
f(75)=673
f(76)=1
f(77)=7757
f(78)=7937
f(79)=353
f(80)=1
f(81)=653
f(82)=8677
f(83)=8867
f(84)=9059
f(85)=487
f(86)=859
f(87)=877
f(88)=229
f(89)=773
f(90)=10253
f(91)=10459
f(92)=10667
f(93)=1
f(94)=853
f(95)=1
f(96)=11519
f(97)=1
f(98)=1087
f(99)=641

b) Substitution of the polynom
The polynom f(x)=x^2+25x-97 could be written as f(y)= y^2-253.25 with x=y-12.5

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+12.5
f'(x)>2x+24

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

97, 71, 43, 13, 19, 53, 89, 127, 167, 11, 23, 1, 347, 397, 449, 503, 1, 617, 677, 739, 73, 79, 937, 1, 83, 1153, 1229, 1307, 1, 113, 1553, 149, 157, 1, 1, 2003, 2099, 1, 2297, 2399, 2503, 2609, 1, 257, 2939, 1, 3169, 173, 3407, 3529, 281, 3779, 3907, 367, 379, 331, 193, 199, 1, 1, 5003, 271, 5297, 419, 509, 523, 311, 6067, 479, 6389, 6553, 6719, 1, 7057, 7229, 673, 1, 7757, 7937, 353, 1, 653, 8677, 8867, 9059, 487, 859, 877, 229, 773, 10253, 10459, 10667, 1, 853, 1, 11519, 1, 1087, 641, 1, 1, 1, 569, 701, 13553, 13789, 1, 1297, 1319, 14753, 283, 1, 15497, 15749, 1231, 1, 1, 883, 1549, 1, 17569, 17837, 953, 18379, 811, 823, 19207, 1499, 373, 1823, 1, 20627, 1609, 1, 21503, 21799, 1163, 22397, 22699, 23003, 163, 1, 337, 24239, 571, 1913, 1, 1109, 1123, 26153, 26479, 2437, 2467, 2113, 27803, 1481, 28477, 28817, 2243, 181, 1571, 30197, 2777, 1, 31253, 433, 2459, 32327, 1, 33053, 1453, 1, 34157, 1, 1, 35279, 197, 36037, 461, 1, 37189, 709, 37967, 431, 1, 3559, 557, 929, 1, 491, 521, 211, 3229, 1, 1861, 3929, 3967, 3389, 2341, 541, 45329, 45757, 46187, 46619, 223, 1, 4357, 4397, 48809, 49253, 3823, 50147, 2663, 719, 51503, 233, 1, 1, 1, 1, 54269, 1, 55207, 4283, 241, 56629, 57107, 57587, 5279, 5323, 1373, 1, 60017, 60509, 1151, 691, 251, 62497, 863, 1, 1, 1, 65027, 65539, 5081, 66569, 919, 67607, 1, 5281, 1, 6337, 70237, 70769, 631, 1, 1, 1, 73459, 1721, 587, 6827, 1, 3313, 76753, 797, 77867, 78427, 78989, 1, 6163, 80687, 1, 1, 4337, 1, 83557, 84137, 84719, 85303, 85889, 86477, 1049, 613, 1, 3863, 3889, 1699, 1, 91253, 947, 92467, 93077, 4931, 8573, 8629, 7349, 96157, 96779, 1, 1, 7589, 2309, 1, 1, 9199, 9257, 5393, 4483, 1, 104399, 1439, 5563, 106349, 8231, 1, 1, 9907, 109639, 1511, 110969, 111637, 1, 112979, 1277, 114329, 6053, 809, 1, 117053, 1, 1, 5179, 119809, 120503, 9323, 1543, 122597, 1019, 11273, 1, 751, 126127, 126839, 1, 1, 128987, 129707, 1, 11923, 1, 132607, 133337, 10313, 5861, 1, 136277, 757, 1, 3221, 12659, 1, 1451, 141499, 7487, 1723, 11059, 1279, 145289, 7687, 146819, 13417, 13487, 1, 887, 2843, 1, 6619, 6653, 11831, 154589, 155377, 14197, 1, 2161, 1, 159347, 1, 1, 161753, 1091, 163367, 1, 1, 15073, 166619, 167437, 1489, 169079, 2393, 1, 7459, 1, 173219, 15823, 1223, 175727, 9293, 177409, 1, 179099, 179947, 180797, 1, 182503, 1, 16747, 185077, 14303, 1, 187669, 9923, 189407, 8273, 8311, 192029, 1, 1, 3673, 1, 196439, 1, 1, 199109, 200003, 200899, 201797, 18427, 1, 15731, 1, 1069, 207227, 208139, 1237, 1, 1, 9209, 1, 19423, 2411, 215507, 16649, 217369, 1097, 1, 220177, 1, 222059, 1, 20359, 224897, 1, 226799, 11987, 1, 1409, 1381, 231589, 10111, 1, 21317, 977, 236429, 5521, 1877, 239357, 1613, 1, 1, 2153, 1, 2027, 997, 2549, 1523, 1, 1, 5843, 252253, 1009, 19559, 1, 1013, 3257, 258319, 19949, 1, 261379, 4951, 263429, 1, 1, 24229, 1871, 1, 3413, 270667, 1627, 20981, 2423, 274847, 275897, 276949, 1, 1103, 1, 1, 282239, 283303, 284369, 1, 22039, 287579, 288653, 26339, 26437, 291887, 292969, 294053, 1, 1, 297317, 298409, 5651, 1217, 27427, 27527, 1, 1, 16111, 4327, 308327, 1831, 310553, 1361, 1, 28537, 2203, 316153, 317279, 318407, 6029, 320669, 16937, 322939, 1, 325217, 29669, 1567, 7643, 1, 14389, 332099, 333253, 1933, 335567, 336727, 4759, 2371, 1, 1, 1, 1, 1, 346079, 347257, 348437, 18401, 350803, 2909, 1, 27259, 355559, 15511, 1, 359147, 1, 361549, 362753, 363959, 1, 1753, 3253, 368803, 28463, 371237, 19603, 1, 374903, 28933, 1, 1, 1, 4591, 7213, 383527, 16729, 1291, 387253, 388499, 1, 5507, 1, 1, 394759, 1, 9239, 398539, 2311, 401069, 30949, 403607, 3583, 36923, 37039, 1, 409987, 4621, 2531, 1, 18049, 416417, 1, 1, 2011, 38327, 422897, 424199, 1, 8053, 3371, 429427, 430739, 432053, 433369, 1, 3049, 2683, 23087, 1973, 441307, 1, 1, 1, 1, 1, 40847, 1, 2879, 1, 2039, 456047, 457399, 5807, 35393, 461467, 462827, 2221, 42323, 466919, 1, 469657, 1907, 1, 2837, 1, 20719, 1, 43573, 1, 2069, 483467, 6829, 6661, 487649, 37619, 1, 3301, 11471, 1, 3469, 26183, 9413, 1, 501719, 503137, 6079, 505979, 1697, 22123, 4217, 1, 11933, 39581, 1487, 1, 518867, 520309, 521753, 7369, 1, 1, 1, 529003, 1, 1607, 1, 534839, 2963, 537769, 539237, 23509, 2143, 4493, 2207, 2017, 3491, 549569, 4339, 2237, 7013, 12919, 1, 50773, 50909, 4969, 562997, 1, 1, 1, 2267, 570527, 1, 30187, 2273, 1, 1, 579629, 1, 6007, 44939, 585737, 587269, 8293, 1, 4139, 1, 594959, 596503, 598049, 599597, 601147, 31721, 1, 605809, 1, 1, 1, 1, 7393, 615187, 616757, 618329, 2707, 1, 623057, 48049, 56929, 57073, 7583, 8887, 1, 634159, 1801, 637349, 1741, 33713, 642149, 1, 4513, 1, 1, 650189, 651803, 50263, 655037, 656657, 658279, 12451, 60139, 1, 2903, 51263, 1, 669689, 1, 672967, 51893, 676253, 8581, 1, 61927, 2657, 29761, 29833, 1, 13009, 16073, 6131, 36551, 53549, 1, 63589, 3323, 1, 704507, 3659, 707869, 54581, 9743, 712927, 16619, 65119, 5021, 719699, 721397, 1, 31513, 38237, 728209, 2347, 1, 733339, 3517, 6089, 738487, 1, 741929, 6581, 745379, 747107, 1, 9043, 752303, 5273, 1, 757517, 1, 761003, 2551, 1, 766247, 1, 1, 771509, 70297, 70457, 59753, 778553, 14723, 782087, 8081, 1, 2111, 18353, 790957, 3793, 72229, 796303, 798089, 4733, 42193, 1, 1, 1, 62219, 1, 73859, 1, 1, 817867, 2917, 821489, 63331, 1, 1, 828757, 830579, 5821, 1, 1, 837887, 11503, 19571, 15913, 36749, 2833, 848909, 850753, 77509, 1, 1, 858149, 3691, 45361, 1, 865577, 20173, 869303, 3527, 79367, 79537, 1, 5897, 67733, 1, 884287, 1, 38611, 38693, 891827, 1, 6263, 47237, 1, 10859, 903197, 69623, 47737, 908909, 910817, 912727, 7559, 1, 918469, 1, 1, 1, 926153, 928079, 5503, 40519, 2137, 1, 1, 939677, 941617, 1, 1, 947449, 22079, 8419, 1, 1, 1, 7927, 13537, 1, 9949, 967019, 1, 3931, 6197, 5981, 42473, 1, 1, 982819, 4999, 12491, 1, 990767, 7817, 11177, 76673, 6703, 90977, 91159, 4003, 1, 53093, 4027, 1012789, 14293, 3593, 53623, 3767, 1,

6. Sequence of the polynom (only primes)

97, 71, 43, 13, 19, 53, 89, 127, 167, 11, 23, 347, 397, 449, 503, 617, 677, 739, 73, 79, 937, 83, 1153, 1229, 1307, 113, 1553, 149, 157, 2003, 2099, 2297, 2399, 2503, 2609, 257, 2939, 3169, 173, 3407, 3529, 281, 3779, 3907, 367, 379, 331, 193, 199, 5003, 271, 5297, 419, 509, 523, 311, 6067, 479, 6389, 6553, 6719, 7057, 7229, 673, 7757, 7937, 353, 653, 8677, 8867, 9059, 487, 859, 877, 229, 773, 10253, 10459, 10667, 853, 11519, 1087, 641, 569, 701, 13553, 13789, 1297, 1319, 14753, 283, 15497, 15749, 1231, 883, 1549, 17569, 17837, 953, 18379, 811, 823, 19207, 1499, 373, 1823, 20627, 1609, 21503, 21799, 1163, 22397, 22699, 23003, 163, 337, 24239, 571, 1913, 1109, 1123, 26153, 26479, 2437, 2467, 2113, 27803, 1481, 28477, 28817, 2243, 181, 1571, 30197, 2777, 31253, 433, 2459, 32327, 33053, 1453, 34157, 35279, 197, 36037, 461, 37189, 709, 37967, 431, 3559, 557, 929, 491, 521, 211, 3229, 1861, 3929, 3967, 3389, 2341, 541, 45329, 45757, 46187, 46619, 223, 4357, 4397, 48809, 49253, 3823, 50147, 2663, 719, 51503, 233, 54269, 55207, 4283, 241, 56629, 57107, 57587, 5279, 5323, 1373, 60017, 60509, 1151, 691, 251, 62497, 863, 65027, 65539, 5081, 66569, 919, 67607, 5281, 6337, 70237, 70769, 631, 73459, 1721, 587, 6827, 3313, 76753, 797, 77867, 78427, 78989, 6163, 80687, 4337, 83557, 84137, 84719, 85303, 85889, 86477, 1049, 613, 3863, 3889, 1699, 91253, 947, 92467, 93077, 4931, 8573, 8629, 7349, 96157, 96779, 7589, 2309, 9199, 9257, 5393, 4483, 104399, 1439, 5563, 106349, 8231, 9907, 109639, 1511, 110969, 111637, 112979, 1277, 114329, 6053, 809, 117053, 5179, 119809, 120503, 9323, 1543, 122597, 1019, 11273, 751, 126127, 126839, 128987, 129707, 11923, 132607, 133337, 10313, 5861, 136277, 757, 3221, 12659, 1451, 141499, 7487, 1723, 11059, 1279, 145289, 7687, 146819, 13417, 13487, 887, 2843, 6619, 6653, 11831, 154589, 155377, 14197, 2161, 159347, 161753, 1091, 163367, 15073, 166619, 167437, 1489, 169079, 2393, 7459, 173219, 15823, 1223, 175727, 9293, 177409, 179099, 179947, 180797, 182503, 16747, 185077, 14303, 187669, 9923, 189407, 8273, 8311, 192029, 3673, 196439, 199109, 200003, 200899, 201797, 18427, 15731, 1069, 207227, 208139, 1237, 9209, 19423, 2411, 215507, 16649, 217369, 1097, 220177, 222059, 20359, 224897, 226799, 11987, 1409, 1381, 231589, 10111, 21317, 977, 236429, 5521, 1877, 239357, 1613, 2153, 2027, 997, 2549, 1523, 5843, 252253, 1009, 19559, 1013, 3257, 258319, 19949, 261379, 4951, 263429, 24229, 1871, 3413, 270667, 1627, 20981, 2423, 274847, 275897, 276949, 1103, 282239, 283303, 284369, 22039, 287579, 288653, 26339, 26437, 291887, 292969, 294053, 297317, 298409, 5651, 1217, 27427, 27527, 16111, 4327, 308327, 1831, 310553, 1361, 28537, 2203, 316153, 317279, 318407, 6029, 320669, 16937, 322939, 325217, 29669, 1567, 7643, 14389, 332099, 333253, 1933, 335567, 336727, 4759, 2371, 346079, 347257, 348437, 18401, 350803, 2909, 27259, 355559, 15511, 359147, 361549, 362753, 363959, 1753, 3253, 368803, 28463, 371237, 19603, 374903, 28933, 4591, 7213, 383527, 16729, 1291, 387253, 388499, 5507, 394759, 9239, 398539, 2311, 401069, 30949, 403607, 3583, 36923, 37039, 409987, 4621, 2531, 18049, 416417, 2011, 38327, 422897, 424199, 8053, 3371, 429427, 430739, 432053, 433369, 3049, 2683, 23087, 1973, 441307, 40847, 2879, 2039, 456047, 457399, 5807, 35393, 461467, 462827, 2221, 42323, 466919, 469657, 1907, 2837, 20719, 43573, 2069, 483467, 6829, 6661, 487649, 37619, 3301, 11471, 3469, 26183, 9413, 501719, 503137, 6079, 505979, 1697, 22123, 4217, 11933, 39581, 1487, 518867, 520309, 521753, 7369, 529003, 1607, 534839, 2963, 537769, 539237, 23509, 2143, 4493, 2207, 2017, 3491, 549569, 4339, 2237, 7013, 12919, 50773, 50909, 4969, 562997, 2267, 570527, 30187, 2273, 579629, 6007, 44939, 585737, 587269, 8293, 4139, 594959, 596503, 598049, 599597, 601147, 31721, 605809, 7393, 615187, 616757, 618329, 2707, 623057, 48049, 56929, 57073, 7583, 8887, 634159, 1801, 637349, 1741, 33713, 642149, 4513, 650189, 651803, 50263, 655037, 656657, 658279, 12451, 60139, 2903, 51263, 669689, 672967, 51893, 676253, 8581, 61927, 2657, 29761, 29833, 13009, 16073, 6131, 36551, 53549, 63589, 3323, 704507, 3659, 707869, 54581, 9743, 712927, 16619, 65119, 5021, 719699, 721397, 31513, 38237, 728209, 2347, 733339, 3517, 6089, 738487, 741929, 6581, 745379, 747107, 9043, 752303, 5273, 757517, 761003, 2551, 766247, 771509, 70297, 70457, 59753, 778553, 14723, 782087, 8081, 2111, 18353, 790957, 3793, 72229, 796303, 798089, 4733, 42193, 62219, 73859, 817867, 2917, 821489, 63331, 828757, 830579, 5821, 837887, 11503, 19571, 15913, 36749, 2833, 848909, 850753, 77509, 858149, 3691, 45361, 865577, 20173, 869303, 3527, 79367, 79537, 5897, 67733, 884287, 38611, 38693, 891827, 6263, 47237, 10859, 903197, 69623, 47737, 908909, 910817, 912727, 7559, 918469, 926153, 928079, 5503, 40519, 2137, 939677, 941617, 947449, 22079, 8419, 7927, 13537, 9949, 967019, 3931, 6197, 5981, 42473, 982819, 4999, 12491, 990767, 7817, 11177, 76673, 6703, 90977, 91159, 4003, 53093, 4027, 1012789, 14293, 3593, 53623, 3767,

7. Distribution of the primes

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

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
21008250320.8200000.5000000.3200008.2000005.55555532.000000
31.0007443264180.7440000.3260000.4180009.0731716.52000013.062500
410.0007.3392.2825.0570.7339000.2282000.5057009.8642477.00000012.098086
5100.00072.69017.53555.1550.7269000.1753500.5515509.9046197.68404910.906664
61.000.000721.673143.395578.2780.7216730.1433950.5782789.9280928.17764510.484598
710.000.0007.172.7581.215.6685.957.0900.7172760.1215670.5957099.9390708.47775710.301430
8100.000.00071.396.37410.542.55560.853.8190.7139640.1054260.6085389.9538258.67223210.215361
91.000.000.000711.548.36593.040.016618.508.3490.7115480.0930400.6185089.9661698.82518710.163837
1010.000.000.0007.096.118.402832.685.4296.263.432.9730.7096120.0832690.6263439.9727848.94975610.126676


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
532282170.8750000.6562500.2187502.0000001.6153857.000000
6645335180.8281250.5468750.2812501.8928571.6666672.571429
712810359440.8046880.4609380.3437501.9433961.6857142.444444
8256197102950.7695310.3984380.3710941.9126211.7288142.159091
95123851822030.7519530.3554690.3964841.9543151.7843142.136842
101.0247623384240.7441410.3300780.4140621.9792211.8571432.088670
112.0481.5105959150.7373050.2905270.4467771.9816271.7603552.158019
124.0963.0211.0571.9640.7375490.2580570.4794922.0006621.7764712.146448
138.1926.0101.9034.1070.7336430.2323000.5013431.9894081.8003782.091141
1416.38411.9783.5128.4660.7310790.2143550.5167241.9930121.8455072.061359
1532.76823.9086.43717.4710.7296140.1964420.5331731.9959931.8328592.063666
1665.53647.70511.96935.7360.7279210.1826320.5452881.9953571.8594072.045447
17131.07295.21122.40572.8060.7264020.1709370.5554661.9958291.8719192.037329
18262.144190.01542.003148.0120.7248500.1602290.5646211.9957251.8747152.032964
19524.288379.16879.223299.9450.7232060.1511060.5721001.9954631.8861272.026491
201.048.576756.623149.738606.8850.7215720.1428010.5787711.9954821.8900822.023321
212.097.1521.510.150284.6931.225.4570.7200960.1357520.5843431.9959081.9012742.019257
224.194.3043.014.839541.2262.473.6130.7187940.1290380.5897551.9963841.9010862.018523
238.388.6086.019.3871.031.8534.987.5340.7175670.1230060.5945601.9965871.9065102.016295
2416.777.21612.020.1421.971.04810.049.0940.7164560.1174840.5989731.9969051.9102022.014842
2533.554.43224.005.4253.775.58920.229.8360.7154170.1125210.6028961.9971001.9155242.013100
2667.108.86447.946.9757.241.28440.705.6910.7144660.1079040.6065621.9973391.9179222.012161
27134.217.72895.782.05113.913.29381.868.7580.7136320.1036620.6099701.9976661.9213852.011236
28268.435.456191.356.62926.769.884164.586.7450.7128590.0997260.6131331.9978341.9240512.010373
29536.870.912382.332.32551.586.599330.745.7260.7121490.0960880.6160621.9980091.9270392.009552
301.073.741.824763.945.14499.538.909664.406.2350.7114790.0927030.6187771.9981181.9295502.008813
312.147.483.6481.526.558.216192.300.1671.334.258.0490.7108590.0895470.6213121.9982561.9319092.008196
324.294.967.2963.050.598.389371.967.0802.678.631.3090.7102730.0866050.6236671.9983511.9343052.007581
338.589.934.5926.096.519.806720.255.9925.376.263.8140.7097280.0838490.6258791.9984671.9363432.007093
3417.179.869.18412.184.215.4651.396.086.00910.788.129.4560.7092150.0812630.6279521.9985531.9383192.006622


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
123211101
245411211
389542223
41613673334
532219127554
664351322121157
712859223719171310
8256102346827282720
95121826212042515138
101.02433811921981859181
112.048595205390143144154154
124.0961.057349708256260271270
138.1921.9036411.262476469476482
1416.3843.5121.1872.325896873871872
1532.7686.4372.1694.2681.6501.6021.5961.589
1665.53611.9693.9777.9923.0432.9832.9752.968
17131.07222.4057.43114.9745.7075.6235.5365.539
18262.14442.00313.96828.03510.65210.46310.38810.500
19524.28879.22326.34652.87719.88819.79619.67019.869
201.048.576149.73849.78799.95137.57437.38137.37237.411
212.097.152284.69394.628190.06571.38671.00371.11071.194
224.194.304541.226180.003361.223135.605135.109135.026135.486
238.388.6081.031.853343.588688.265258.527257.770257.608257.948
2416.777.2161.971.048656.8671.314.181493.198492.367492.553492.930
2533.554.4323.775.5891.258.6062.516.983943.904943.392943.668944.625
2667.108.8647.241.2842.414.9294.826.3551.809.8751.809.7081.810.6361.811.065
27134.217.72813.913.2934.641.2119.272.0823.477.2523.478.9783.479.0553.478.008
28268.435.45626.769.8848.927.58617.842.2986.692.0306.691.4696.694.0506.692.335
29536.870.91251.586.59917.196.39034.390.20912.894.60512.896.74512.899.56012.895.689
301.073.741.82499.538.90933.179.95266.358.95724.886.42924.885.86624.887.53924.879.075
312.147.483.648192.300.16764.099.484128.200.68348.075.67648.077.19048.080.18348.067.118
324.294.967.296371.967.080123.991.889247.975.19192.996.51992.993.33392.989.84992.987.379
338.589.934.592720.255.992240.089.996480.165.996180.069.817180.062.327180.065.491180.058.357
3417.179.869.1841.396.086.009465.387.412930.698.597349.028.903349.032.020349.028.654348.996.432


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
5327342122
66418995445
712844242011101112
825695494624212624
95122039211150525348
101.024424204220104102112106
112.048915445470213218241243
124.0961.964985979477478529480
138.1924.1072.0332.0741.0151.0351.0511.006
1416.3848.4664.2064.2602.0612.1372.1522.116
1532.76817.4718.7178.7544.3184.4404.2994.414
1665.53635.73617.98317.7539.0098.9788.8308.919
17131.07272.80636.53936.26718.26018.16918.15818.219
18262.144148.01274.42073.59236.89036.99436.95337.175
19524.288299.945150.407149.53874.71075.33174.63875.266
201.048.576606.885304.340302.545151.425151.948151.701151.811
212.097.1521.225.457613.816611.641306.352306.255306.341306.509
224.194.3042.473.6131.238.4851.235.128618.384618.243618.193618.793
238.388.6084.987.5342.496.6362.490.8981.246.0961.247.1741.247.4681.246.796
2416.777.21610.049.0945.029.7445.019.3502.511.8472.512.5502.513.7372.510.960
2533.554.43220.229.83610.127.29410.102.5425.055.1785.057.9405.061.2085.055.510
2667.108.86440.705.69120.380.47920.325.21210.174.69110.175.32910.182.29410.173.377
27134.217.72881.868.75840.985.16740.883.59120.468.69920.465.62220.472.01620.462.421
28268.435.456164.586.74582.395.44282.191.30341.140.61141.150.55941.152.19141.143.384
29536.870.912330.745.726165.561.718165.184.00882.673.99882.690.09082.698.41382.683.225
301.073.741.824664.406.235332.578.460331.827.775166.091.529166.102.409166.103.922166.108.375
312.147.483.6481.334.258.049667.836.835666.421.214333.542.211333.574.121333.570.352333.571.365
324.294.967.2962.678.631.3091.340.642.6011.337.988.708669.628.962669.667.591669.661.405669.673.351
338.589.934.5925.376.263.8142.690.692.7622.685.571.0521.344.027.1031.344.061.8971.344.066.4521.344.108.362
3417.179.869.18410.788.129.4565.398.934.5335.389.194.9232.696.990.4562.697.022.7762.697.039.2402.697.076.984


8. Check for existing Integer Sequences by OEIS

Found in Database : 97, 71, 43, 13, 19, 53, 89, 127, 167, 11, 23, 1, 347, 397, 449, 503, 1, 617, 677, 739,
Found in Database : 97, 71, 43, 13, 19, 53, 89, 127, 167, 11, 23, 347, 397, 449, 503, 617, 677, 739, 73, 79, 937, 83, 1153, 1229, 1307, 113, 1553, 149, 157, 2003, 2099, 2297, 2399,
Found in Database : 11, 13, 19, 23, 43, 53, 71, 73, 79, 83, 89, 97, 113, 127, 149,