Inhaltsverzeichnis

Development of
Algorithmic Constructions

23:19:42
Deutsch
18.Apr 2024

Polynom = x^2+1x-73

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) = 73 = 73
f(1) = 71 = 71
f(2) = 67 = 67
f(3) = 61 = 61
f(4) = 53 = 53
f(5) = 43 = 43
f(6) = 31 = 31
f(7) = 17 = 17
f(8) = 1 = 1
f(9) = 17 = 17
f(10) = 37 = 37
f(11) = 59 = 59
f(12) = 83 = 83
f(13) = 109 = 109
f(14) = 137 = 137
f(15) = 167 = 167
f(16) = 199 = 199
f(17) = 233 = 233
f(18) = 269 = 269
f(19) = 307 = 307
f(20) = 347 = 347
f(21) = 389 = 389
f(22) = 433 = 433
f(23) = 479 = 479
f(24) = 527 = 17*31
f(25) = 577 = 577
f(26) = 629 = 17*37
f(27) = 683 = 683
f(28) = 739 = 739
f(29) = 797 = 797
f(30) = 857 = 857
f(31) = 919 = 919
f(32) = 983 = 983
f(33) = 1049 = 1049
f(34) = 1117 = 1117
f(35) = 1187 = 1187
f(36) = 1259 = 1259
f(37) = 1333 = 31*43
f(38) = 1409 = 1409
f(39) = 1487 = 1487
f(40) = 1567 = 1567
f(41) = 1649 = 17*97
f(42) = 1733 = 1733
f(43) = 1819 = 17*107
f(44) = 1907 = 1907
f(45) = 1997 = 1997
f(46) = 2089 = 2089
f(47) = 2183 = 37*59
f(48) = 2279 = 43*53
f(49) = 2377 = 2377
f(50) = 2477 = 2477
f(51) = 2579 = 2579
f(52) = 2683 = 2683
f(53) = 2789 = 2789
f(54) = 2897 = 2897
f(55) = 3007 = 31*97
f(56) = 3119 = 3119
f(57) = 3233 = 53*61
f(58) = 3349 = 17*197
f(59) = 3467 = 3467
f(60) = 3587 = 17*211
f(61) = 3709 = 3709
f(62) = 3833 = 3833
f(63) = 3959 = 37*107
f(64) = 4087 = 61*67
f(65) = 4217 = 4217
f(66) = 4349 = 4349
f(67) = 4483 = 4483
f(68) = 4619 = 31*149
f(69) = 4757 = 67*71
f(70) = 4897 = 59*83
f(71) = 5039 = 5039
f(72) = 5183 = 71*73
f(73) = 5329 = 73*73
f(74) = 5477 = 5477
f(75) = 5627 = 17*331
f(76) = 5779 = 5779
f(77) = 5933 = 17*349
f(78) = 6089 = 6089
f(79) = 6247 = 6247
f(80) = 6407 = 43*149
f(81) = 6569 = 6569
f(82) = 6733 = 6733
f(83) = 6899 = 6899
f(84) = 7067 = 37*191
f(85) = 7237 = 7237
f(86) = 7409 = 31*239
f(87) = 7583 = 7583
f(88) = 7759 = 7759
f(89) = 7937 = 7937
f(90) = 8117 = 8117
f(91) = 8299 = 43*193
f(92) = 8483 = 17*499
f(93) = 8669 = 8669
f(94) = 8857 = 17*521
f(95) = 9047 = 83*109
f(96) = 9239 = 9239
f(97) = 9433 = 9433
f(98) = 9629 = 9629
f(99) = 9827 = 31*317
f(100) = 10027 = 37*271

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+1x-73

f(0)=73
f(1)=71
f(2)=67
f(3)=61
f(4)=53
f(5)=43
f(6)=31
f(7)=17
f(8)=1
f(9)=1
f(10)=37
f(11)=59
f(12)=83
f(13)=109
f(14)=137
f(15)=167
f(16)=199
f(17)=233
f(18)=269
f(19)=307
f(20)=347
f(21)=389
f(22)=433
f(23)=479
f(24)=1
f(25)=577
f(26)=1
f(27)=683
f(28)=739
f(29)=797
f(30)=857
f(31)=919
f(32)=983
f(33)=1049
f(34)=1117
f(35)=1187
f(36)=1259
f(37)=1
f(38)=1409
f(39)=1487
f(40)=1567
f(41)=97
f(42)=1733
f(43)=107
f(44)=1907
f(45)=1997
f(46)=2089
f(47)=1
f(48)=1
f(49)=2377
f(50)=2477
f(51)=2579
f(52)=2683
f(53)=2789
f(54)=2897
f(55)=1
f(56)=3119
f(57)=1
f(58)=197
f(59)=3467
f(60)=211
f(61)=3709
f(62)=3833
f(63)=1
f(64)=1
f(65)=4217
f(66)=4349
f(67)=4483
f(68)=149
f(69)=1
f(70)=1
f(71)=5039
f(72)=1
f(73)=1
f(74)=5477
f(75)=331
f(76)=5779
f(77)=349
f(78)=6089
f(79)=6247
f(80)=1
f(81)=6569
f(82)=6733
f(83)=6899
f(84)=191
f(85)=7237
f(86)=239
f(87)=7583
f(88)=7759
f(89)=7937
f(90)=8117
f(91)=193
f(92)=499
f(93)=8669
f(94)=521
f(95)=1
f(96)=9239
f(97)=9433
f(98)=9629
f(99)=317

b) Substitution of the polynom
The polynom f(x)=x^2+1x-73 could be written as f(y)= y^2-73.25 with x=y-0.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+0.5
f'(x)>2x

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

73, 71, 67, 61, 53, 43, 31, 17, 1, 1, 37, 59, 83, 109, 137, 167, 199, 233, 269, 307, 347, 389, 433, 479, 1, 577, 1, 683, 739, 797, 857, 919, 983, 1049, 1117, 1187, 1259, 1, 1409, 1487, 1567, 97, 1733, 107, 1907, 1997, 2089, 1, 1, 2377, 2477, 2579, 2683, 2789, 2897, 1, 3119, 1, 197, 3467, 211, 3709, 3833, 1, 1, 4217, 4349, 4483, 149, 1, 1, 5039, 1, 1, 5477, 331, 5779, 349, 6089, 6247, 1, 6569, 6733, 6899, 191, 7237, 239, 7583, 7759, 7937, 8117, 193, 499, 8669, 521, 1, 9239, 9433, 9629, 317, 271, 1, 10433, 10639, 10847, 11057, 1, 11483, 11699, 701, 229, 727, 12583, 12809, 13037, 13267, 13499, 443, 1, 14207, 14447, 397, 1, 353, 15427, 257, 937, 16183, 967, 283, 547, 1, 17483, 17749, 419, 18287, 277, 509, 1, 19387, 1, 19949, 20233, 1, 20807, 1, 293, 21683, 709, 22277, 1, 1, 1, 1, 449, 24107, 24419, 24733, 677, 25367, 1511, 839, 1549, 503, 26987, 463, 643, 27983, 28319, 28657, 1, 29339, 29683, 30029, 821, 30727, 31079, 1, 383, 1, 32507, 32869, 1, 33599, 33967, 34337, 569, 35083, 601, 35837, 36217, 36599, 1193, 37369, 2221, 1031, 2267, 38933, 587, 39727, 40127, 40529, 40933, 617, 1, 42157, 42569, 811, 43399, 1019, 1427, 1, 45083, 2677, 647, 1, 883, 1, 653, 659, 1129, 48989, 49433, 1609, 853, 50777, 51229, 51683, 3067, 1, 3121, 491, 1459, 54449, 54917, 571, 673, 56333, 56809, 57287, 947, 1879, 58733, 59219, 59707, 3541, 60689, 1, 1667, 641, 1, 63179, 1481, 64189, 2087, 1, 65719, 619, 66749, 1, 1279, 823, 4049, 1613, 4111, 1051, 70949, 71483, 72019, 1, 1091, 1, 2393, 74729, 75277, 1, 76379, 719, 77489, 4591, 78607, 4657, 1123, 1361, 1, 1, 82009, 1, 607, 83737, 84317, 1163, 1171, 86069, 1, 2029, 5167, 1, 5237, 89627, 90227, 1489, 91433, 2969, 92647, 93257, 1, 94483, 1559, 95717, 96337, 96959, 97583, 1, 98837, 5851, 3229, 100733, 1, 1229, 102647, 103289, 1, 104579, 105227, 1, 1, 107183, 107839, 108497, 6421, 109819, 1, 111149, 3607, 1, 113159, 1699, 2663, 1, 1063, 116549, 1987, 3187, 1429, 119297, 1237, 1, 121379, 1, 122777, 123479, 124183, 1759, 125597, 126307, 1789, 127733, 128449, 3491, 129887, 1, 2153, 132059, 1, 1, 1, 1, 135719, 2237, 137197, 1, 138683, 139429, 140177, 2659, 141679, 142433, 1, 143947, 3911, 1, 1, 8647, 1381, 148537, 149309, 150083, 1, 151637, 152417, 1, 3581, 154769, 155557, 156347, 1, 157933, 9337, 2381, 9431, 2731, 1951, 162739, 2441, 164357, 1, 165983, 166799, 5407, 1, 169259, 1, 1, 863, 10151, 1, 1, 175069, 3319, 176747, 177589, 1637, 2939, 1, 1321, 1, 1, 3463, 1901, 3037, 186119, 1, 5077, 1, 4409, 1, 2621, 2633, 1, 6257, 1, 195733, 2027, 197507, 198397, 199289, 200183, 1, 1, 202877, 11987, 1039, 205589, 5581, 1, 208319, 209233, 6779, 211067, 3593, 212909, 213833, 214759, 215687, 216617, 1, 5081, 12907, 220357, 5981, 1, 4211, 224129, 225077, 226027, 1, 1181, 5323, 229847, 230807, 4373, 1103, 1, 3847, 1, 236609, 1231, 1249, 7727, 240517, 1, 242483, 243469, 244457, 3457, 246439, 247433, 3499, 249427, 14731, 251429, 1, 253439, 254447, 255457, 256469, 6959, 258499, 259517, 1, 3583, 262583, 263609, 264637, 1783, 1597, 15749, 1, 1, 8737, 6323, 272933, 273979, 275027, 5209, 2857, 1867, 7547, 280297, 281357, 2591, 1439, 1, 1, 286687, 16927, 288833, 4327, 290987, 3011, 293149, 4987, 295319, 8011, 4877, 298589, 299683, 300779, 301877, 302977, 1, 5003, 1, 307397, 308507, 1151, 310733, 2861, 312967, 1, 1, 2309, 317459, 1, 8641, 4519, 321983, 1, 4567, 19141, 326539, 1553, 328829, 329977, 331127, 1451, 333433, 1, 335747, 1693, 9137, 1, 4663, 4679, 20161, 1, 1, 346259, 347437, 348617, 1, 350983, 4243, 1, 11437, 8273, 356933, 3347, 359327, 5381, 6131, 1, 1, 21491, 5471, 6029, 8581, 370199, 371417, 372637, 373859, 375083, 1, 377537, 1, 379999, 381233, 10337, 22571, 1, 22717, 387433, 4007, 389927, 391177, 12659, 393683, 1, 396197, 1663, 7523, 399983, 1307, 402517, 403787, 23827, 1, 23977, 1, 1, 411449, 1523, 414019, 13397, 1621, 1, 419183, 420479, 2141, 9839, 5113, 2549, 25117, 428297, 1, 5903, 1, 433549, 434867, 7393, 437509, 438833, 440159, 2963, 442817, 1, 1, 446819, 448157, 1, 450839, 1, 1, 7457, 14717, 1, 1, 460289, 2417, 2399, 1993, 10831, 2797, 8839, 4391, 471209, 27799, 15289, 27961, 1721, 478099, 12959, 1, 1741, 1709, 8221, 486433, 487829, 3571, 490627, 492029, 493433, 1, 29191, 4651, 1, 500483, 7069, 503317, 1, 7129, 1873, 13757, 1471, 511867, 2203, 514733, 516169, 1, 5351, 1801, 1, 1811, 524827, 12239, 527729, 529183, 8699, 1, 7309, 535019, 1831, 1697, 1, 8867, 12613, 1, 32077, 8161, 32251, 549749, 551233, 1, 554207, 555697, 10513, 558683, 560179, 5153, 1, 564679, 566183, 567689, 569197, 1, 1, 33749, 575249, 6949, 1, 579809, 581333, 582859, 584387, 585917, 15877, 1, 1, 592057, 593597, 595139, 35099, 598229, 35281, 1723, 5531, 604433, 10271, 1, 609107, 19699, 8623, 2909, 615367, 1, 618509, 16759, 2311, 1, 11789, 36847, 5869, 629569, 631157, 632747, 10399, 2777, 637529, 1, 640727, 9587, 8821, 1, 647147, 2833, 1, 4759, 38447, 1, 1, 15313, 1, 4441, 11243, 664967, 666599, 1, 669869, 4021, 1, 674789, 15731, 39887, 18371, 1, 1, 684683, 686339, 1949, 22247, 7127, 692983, 694649, 696317, 1, 5107, 11887, 1, 704687, 1, 708049, 1, 1, 713107, 714797, 3637, 718183, 3769, 721577, 1, 2287, 13711, 10259, 16979, 731807, 733519, 1, 6761, 43451, 740387, 1, 743833, 3863, 747287, 17419, 750749, 752483, 11257, 3163, 3967, 1, 761183, 1, 1, 10499, 1, 20809, 1, 773447, 1, 776969, 778733, 780499, 782267, 7193, 785809, 1, 1823, 791137, 1, 46747, 25693, 46957, 800057, 1, 1, 18731, 21817, 7561, 9769, 2647, 3169, 816239, 3877, 1, 1, 823483, 1, 1, 48761, 13619, 832583, 3079, 1, 2111, 839899, 2543, 13829, 7901, 847247, 11959, 850933, 27509, 12037, 1, 4357, 50599, 8887, 863897, 865757, 867619, 14737, 871349, 1, 1, 28289, 878833, 880709, 882587, 1, 886349, 52249, 890119, 1, 893897, 895789, 1, 12323, 1, 1, 1, 907183, 909089, 29387, 15473, 914819, 916733, 17333, 54151, 922487, 54377, 6217, 1, 930187, 932117, 934049, 1, 937919, 2693, 2459, 3407, 1, 6917, 6373, 1, 56087, 955433, 1, 15727, 1, 2011, 965233, 1, 969167, 31327, 5827, 975083, 26407, 979037, 981017, 16661, 13873, 58057, 1, 1, 1, 994933, 32159, 998927,

6. Sequence of the polynom (only primes)

73, 71, 67, 61, 53, 43, 31, 17, 37, 59, 83, 109, 137, 167, 199, 233, 269, 307, 347, 389, 433, 479, 577, 683, 739, 797, 857, 919, 983, 1049, 1117, 1187, 1259, 1409, 1487, 1567, 97, 1733, 107, 1907, 1997, 2089, 2377, 2477, 2579, 2683, 2789, 2897, 3119, 197, 3467, 211, 3709, 3833, 4217, 4349, 4483, 149, 5039, 5477, 331, 5779, 349, 6089, 6247, 6569, 6733, 6899, 191, 7237, 239, 7583, 7759, 7937, 8117, 193, 499, 8669, 521, 9239, 9433, 9629, 317, 271, 10433, 10639, 10847, 11057, 11483, 11699, 701, 229, 727, 12583, 12809, 13037, 13267, 13499, 443, 14207, 14447, 397, 353, 15427, 257, 937, 16183, 967, 283, 547, 17483, 17749, 419, 18287, 277, 509, 19387, 19949, 20233, 20807, 293, 21683, 709, 22277, 449, 24107, 24419, 24733, 677, 25367, 1511, 839, 1549, 503, 26987, 463, 643, 27983, 28319, 28657, 29339, 29683, 30029, 821, 30727, 31079, 383, 32507, 32869, 33599, 33967, 34337, 569, 35083, 601, 35837, 36217, 36599, 1193, 37369, 2221, 1031, 2267, 38933, 587, 39727, 40127, 40529, 40933, 617, 42157, 42569, 811, 43399, 1019, 1427, 45083, 2677, 647, 883, 653, 659, 1129, 48989, 49433, 1609, 853, 50777, 51229, 51683, 3067, 3121, 491, 1459, 54449, 54917, 571, 673, 56333, 56809, 57287, 947, 1879, 58733, 59219, 59707, 3541, 60689, 1667, 641, 63179, 1481, 64189, 2087, 65719, 619, 66749, 1279, 823, 4049, 1613, 4111, 1051, 70949, 71483, 72019, 1091, 2393, 74729, 75277, 76379, 719, 77489, 4591, 78607, 4657, 1123, 1361, 82009, 607, 83737, 84317, 1163, 1171, 86069, 2029, 5167, 5237, 89627, 90227, 1489, 91433, 2969, 92647, 93257, 94483, 1559, 95717, 96337, 96959, 97583, 98837, 5851, 3229, 100733, 1229, 102647, 103289, 104579, 105227, 107183, 107839, 108497, 6421, 109819, 111149, 3607, 113159, 1699, 2663, 1063, 116549, 1987, 3187, 1429, 119297, 1237, 121379, 122777, 123479, 124183, 1759, 125597, 126307, 1789, 127733, 128449, 3491, 129887, 2153, 132059, 135719, 2237, 137197, 138683, 139429, 140177, 2659, 141679, 142433, 143947, 3911, 8647, 1381, 148537, 149309, 150083, 151637, 152417, 3581, 154769, 155557, 156347, 157933, 9337, 2381, 9431, 2731, 1951, 162739, 2441, 164357, 165983, 166799, 5407, 169259, 863, 10151, 175069, 3319, 176747, 177589, 1637, 2939, 1321, 3463, 1901, 3037, 186119, 5077, 4409, 2621, 2633, 6257, 195733, 2027, 197507, 198397, 199289, 200183, 202877, 11987, 1039, 205589, 5581, 208319, 209233, 6779, 211067, 3593, 212909, 213833, 214759, 215687, 216617, 5081, 12907, 220357, 5981, 4211, 224129, 225077, 226027, 1181, 5323, 229847, 230807, 4373, 1103, 3847, 236609, 1231, 1249, 7727, 240517, 242483, 243469, 244457, 3457, 246439, 247433, 3499, 249427, 14731, 251429, 253439, 254447, 255457, 256469, 6959, 258499, 259517, 3583, 262583, 263609, 264637, 1783, 1597, 15749, 8737, 6323, 272933, 273979, 275027, 5209, 2857, 1867, 7547, 280297, 281357, 2591, 1439, 286687, 16927, 288833, 4327, 290987, 3011, 293149, 4987, 295319, 8011, 4877, 298589, 299683, 300779, 301877, 302977, 5003, 307397, 308507, 1151, 310733, 2861, 312967, 2309, 317459, 8641, 4519, 321983, 4567, 19141, 326539, 1553, 328829, 329977, 331127, 1451, 333433, 335747, 1693, 9137, 4663, 4679, 20161, 346259, 347437, 348617, 350983, 4243, 11437, 8273, 356933, 3347, 359327, 5381, 6131, 21491, 5471, 6029, 8581, 370199, 371417, 372637, 373859, 375083, 377537, 379999, 381233, 10337, 22571, 22717, 387433, 4007, 389927, 391177, 12659, 393683, 396197, 1663, 7523, 399983, 1307, 402517, 403787, 23827, 23977, 411449, 1523, 414019, 13397, 1621, 419183, 420479, 2141, 9839, 5113, 2549, 25117, 428297, 5903, 433549, 434867, 7393, 437509, 438833, 440159, 2963, 442817, 446819, 448157, 450839, 7457, 14717, 460289, 2417, 2399, 1993, 10831, 2797, 8839, 4391, 471209, 27799, 15289, 27961, 1721, 478099, 12959, 1741, 1709, 8221, 486433, 487829, 3571, 490627, 492029, 493433, 29191, 4651, 500483, 7069, 503317, 7129, 1873, 13757, 1471, 511867, 2203, 514733, 516169, 5351, 1801, 1811, 524827, 12239, 527729, 529183, 8699, 7309, 535019, 1831, 1697, 8867, 12613, 32077, 8161, 32251, 549749, 551233, 554207, 555697, 10513, 558683, 560179, 5153, 564679, 566183, 567689, 569197, 33749, 575249, 6949, 579809, 581333, 582859, 584387, 585917, 15877, 592057, 593597, 595139, 35099, 598229, 35281, 1723, 5531, 604433, 10271, 609107, 19699, 8623, 2909, 615367, 618509, 16759, 2311, 11789, 36847, 5869, 629569, 631157, 632747, 10399, 2777, 637529, 640727, 9587, 8821, 647147, 2833, 4759, 38447, 15313, 4441, 11243, 664967, 666599, 669869, 4021, 674789, 15731, 39887, 18371, 684683, 686339, 1949, 22247, 7127, 692983, 694649, 696317, 5107, 11887, 704687, 708049, 713107, 714797, 3637, 718183, 3769, 721577, 2287, 13711, 10259, 16979, 731807, 733519, 6761, 43451, 740387, 743833, 3863, 747287, 17419, 750749, 752483, 11257, 3163, 3967, 761183, 10499, 20809, 773447, 776969, 778733, 780499, 782267, 7193, 785809, 1823, 791137, 46747, 25693, 46957, 800057, 18731, 21817, 7561, 9769, 2647, 3169, 816239, 3877, 823483, 48761, 13619, 832583, 3079, 2111, 839899, 2543, 13829, 7901, 847247, 11959, 850933, 27509, 12037, 4357, 50599, 8887, 863897, 865757, 867619, 14737, 871349, 28289, 878833, 880709, 882587, 886349, 52249, 890119, 893897, 895789, 12323, 907183, 909089, 29387, 15473, 914819, 916733, 17333, 54151, 922487, 54377, 6217, 930187, 932117, 934049, 937919, 2693, 2459, 3407, 6917, 6373, 56087, 955433, 15727, 2011, 965233, 969167, 31327, 5827, 975083, 26407, 979037, 981017, 16661, 13873, 58057, 994933, 32159, 998927,

7. Distribution of the primes

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

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)
1109900.9000000.9000000.0000000.0000000.0000000.000000
21008470140.8400000.7000000.1400009.3333337.777778inf
31.0007954313640.7950000.4310000.3640009.4642866.15714326.000000
410.0007.6753.0674.6080.7675000.3067000.4608009.6540887.11600912.659341
5100.00075.32723.56651.7610.7532700.2356600.5176109.8145927.68373011.232856
61.000.000743.399191.991551.4080.7433990.1919910.5514089.8689588.14694910.652963
710.000.0007.361.2681.622.0415.739.2270.7361270.1622040.5739239.9021768.44852610.408313
8100.000.00073.051.00814.054.36358.996.6450.7305100.1405440.5899669.9236998.66461710.279546
91.000.000.000726.216.157124.006.146602.210.0110.7262160.1240060.6022109.9412208.82332010.207529
1010.000.000.0007.228.014.3011.109.752.7366.118.261.5650.7228010.1109750.6118269.9529798.94917510.159681


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
388801.0000001.0000000.0000001.6000001.600000-nan
416151500.9375000.9375000.0000001.8750001.875000-nan
532292900.9062500.9062500.0000001.9333331.933333-nan
664545040.8437500.7812500.0625001.8620691.724138inf
712810885230.8437500.6640620.1796882.0000001.7000005.750000
8256215144710.8398440.5625000.2773441.9907411.6941183.086957
95124142541600.8085940.4960940.3125001.9255811.7638892.253521
101.0248144373770.7949220.4267580.3681641.9661841.7204722.356250
112.0481.6117858260.7866210.3833010.4033201.9791151.7963392.190981
124.0963.1811.4221.7590.7766110.3471680.4294431.9745501.8114652.129540
138.1926.3102.5753.7350.7702640.3143310.4559331.9836531.8108302.123366
1416.38412.5004.6837.8170.7629390.2858280.4771121.9809831.8186412.092905
1532.76824.8788.68916.1890.7592160.2651670.4940491.9902401.8554352.070999
1665.53649.47016.07233.3980.7548520.2452390.5096131.9885041.8496952.063006
17131.07298.56430.06468.5000.7519840.2293700.5226141.9923991.8705822.051021
18262.144196.30756.214140.0930.7488520.2144390.5344121.9916701.8698112.045153
19524.288391.145106.082285.0630.7460500.2023350.5437151.9925171.8871102.034813
201.048.576779.326200.565578.7610.7432230.1912740.5519501.9924221.8906602.030292
212.097.1521.553.891379.8281.174.0630.7409530.1811160.5598371.9938911.8937902.028580
224.194.3043.098.123722.6822.375.4410.7386500.1723010.5663491.9937841.9026562.023265
238.388.6086.179.5581.376.8084.802.7500.7366610.1641280.5725321.9946141.9051372.021835
2416.777.21612.327.0082.629.8689.697.1400.7347470.1567520.5779951.9948041.9101202.019081
2533.554.43224.595.0425.035.30919.559.7330.7329890.1500640.5829251.9952161.9146622.017062
2667.108.86449.082.5849.655.61239.426.9720.7313870.1438800.5875081.9956291.9175812.015722
27134.217.72897.967.04618.547.61379.419.4330.7299110.1381900.5917211.9959641.9209152.014343
28268.435.456195.566.60635.688.181159.878.4250.7285420.1329490.5955941.9962491.9241392.013090
29536.870.912390.453.95168.760.384321.693.5670.7272770.1280760.5992011.9965271.9266992.012114
301.073.741.824779.643.574132.669.794646.973.7800.7261000.1235580.6025411.9967621.9294512.011149
312.147.483.6481.556.916.837256.322.0491.300.594.7880.7249960.1193590.6056371.9969601.9320302.010274
324.294.967.2963.109.422.351495.762.9462.613.659.4050.7239690.1154290.6085401.9971671.9341412.009588
338.589.934.5926.210.568.787959.930.1535.250.638.6340.7230050.1117510.6112551.9973381.9362682.008922
3417.179.869.18412.405.573.1201.860.587.19610.544.985.9240.7220990.1083000.6137991.9974941.9382532.008324
3534.359.738.36824.781.839.3033.609.812.78721.172.026.5160.7212460.1050590.6161871.9976371.9401472.007782
3668.719.476.73649.508.414.2757.009.798.26542.498.616.0100.7204420.1020060.6184361.9977701.9418732.007300


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
245321121
388532222
41615873444
5322913167877
66450193113141310
712885315421222121
8256144529233373836
95122548716759627162
101.024437146291107109117104
112.048785265520193187210195
124.0961.422479943361356362343
138.1922.5758731.702646650651628
1416.3844.6831.5693.1141.1611.1811.1851.156
1532.7688.6892.8995.7902.1382.1952.1972.159
1665.53616.0725.35010.7223.9874.0474.0314.007
17131.07230.0649.99520.0697.5147.5317.5117.508
18262.14456.21418.84137.37314.08614.03314.06714.028
19524.288106.08235.47270.61026.64426.46926.46126.508
201.048.576200.56566.966133.59950.35350.11950.05450.039
212.097.152379.828126.842252.98695.16794.92494.96694.771
224.194.304722.682241.200481.482180.957180.577180.842180.306
238.388.6081.376.808458.985917.823344.671344.572344.005343.560
2416.777.2162.629.868876.5801.753.288657.849657.903657.341656.775
2533.554.4325.035.3091.677.7533.357.5561.259.0721.258.9531.258.5741.258.710
2667.108.8649.655.6123.217.8296.437.7832.413.1142.414.5522.414.1072.413.839
27134.217.72818.547.6136.183.43712.364.1764.636.4354.636.8154.639.1784.635.185
28268.435.45635.688.18111.896.54223.791.6398.921.3168.921.6668.923.7458.921.454
29536.870.91268.760.38422.922.73245.837.65217.189.23417.186.73817.193.80217.190.610
301.073.741.824132.669.79444.227.26888.442.52633.164.68833.167.44033.168.26733.169.399
312.147.483.648256.322.04985.441.697170.880.35264.080.71564.078.10764.081.55164.081.676
324.294.967.296495.762.946165.246.152330.516.794123.951.309123.932.988123.937.863123.940.786
338.589.934.592959.930.153319.973.223639.956.930239.991.216239.977.609239.981.673239.979.655
3417.179.869.1841.860.587.196620.189.1121.240.398.084465.148.648465.147.846465.151.519465.139.183
3534.359.738.3683.609.812.7871.203.269.3412.406.543.446902.442.466902.457.086902.474.146902.439.089
3668.719.476.7367.009.798.2652.336.558.4744.673.239.7911.752.436.1981.752.467.0751.752.493.0571.752.401.935


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
4160000000
5320000000
6644221210
71282312116575
825671343717221814
9512160827834444042
101.024377197180869695100
112.048826408418200210202214
124.0961.759867892430437445447
138.1923.7351.8901.845930909955941
1416.3847.8173.9753.8421.9411.9182.0031.955
1532.76816.1898.2017.9884.0194.0254.0974.048
1665.53633.39816.85016.5488.3338.3398.3958.331
17131.07268.50034.58033.92017.10317.10017.22117.076
18262.144140.09370.56669.52734.97235.14535.11634.860
19524.288285.063143.325141.73871.18971.16771.45771.250
201.048.576578.761290.524288.237144.808144.765144.730144.458
212.097.1521.174.063589.690584.373293.384293.545293.875293.259
224.194.3042.375.4411.193.1541.182.287594.255593.534594.063593.589
238.388.6084.802.7502.412.8612.389.8891.200.6221.200.0181.201.6091.200.501
2416.777.2169.697.1404.870.3634.826.7772.422.8562.423.5942.425.2352.425.455
2533.554.43219.559.7339.820.1059.739.6284.886.4464.889.5244.891.3794.892.384
2667.108.86439.426.97219.788.60819.638.3649.851.2319.856.7269.858.5909.860.425
27134.217.72879.419.43339.855.19339.564.24019.848.98919.853.92619.857.16919.859.349
28268.435.456159.878.42580.215.41379.663.01239.965.44739.967.25539.965.22039.980.503
29536.870.912321.693.567161.379.024160.314.54380.419.62480.424.85980.419.04780.430.037
301.073.741.824646.973.780324.495.870322.477.910161.727.150161.750.130161.734.101161.762.399
312.147.483.6481.300.594.788652.240.017648.354.771325.143.250325.151.512325.136.294325.163.732
324.294.967.2962.613.659.4051.310.603.0031.303.056.402653.403.392653.390.353653.412.176653.453.484
338.589.934.5925.250.638.6342.632.595.8392.618.042.7951.312.656.5351.312.628.3841.312.642.9341.312.710.781
3417.179.869.18410.544.985.9245.286.520.2425.258.465.6822.636.207.9052.636.244.9752.636.233.1832.636.299.861
3534.359.738.36821.172.026.51610.613.165.18610.558.861.3305.292.977.7175.293.045.1025.292.936.0035.293.067.694
3668.719.476.73642.498.616.01021.301.937.85121.196.678.15910.624.610.52110.624.654.07210.624.609.02810.624.742.389


8. Check for existing Integer Sequences by OEIS

Found in Database : 73, 71, 67, 61, 53, 43, 31, 17, 1, 1, 37, 59, 83, 109, 137, 167, 199, 233, 269, 307,
Found in Database : 73, 71, 67, 61, 53, 43, 31, 17, 37, 59, 83, 109, 137, 167, 199, 233, 269, 307, 347, 389, 433, 479, 577, 683, 739, 797, 857, 919, 983, 1049, 1117, 1187, 1259, 1409, 1487,
Found in Database : 17, 31, 37, 43, 53, 59, 61, 67, 71, 73, 83, 97, 107, 109, 137, 149,