Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:24:44
Deutsch
20.Apr 2024

Polynom = x^2+23x-181

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) = 181 = 181
f(1) = 157 = 157
f(2) = 131 = 131
f(3) = 103 = 103
f(4) = 73 = 73
f(5) = 41 = 41
f(6) = 7 = 7
f(7) = 29 = 29
f(8) = 67 = 67
f(9) = 107 = 107
f(10) = 149 = 149
f(11) = 193 = 193
f(12) = 239 = 239
f(13) = 287 = 7*41
f(14) = 337 = 337
f(15) = 389 = 389
f(16) = 443 = 443
f(17) = 499 = 499
f(18) = 557 = 557
f(19) = 617 = 617
f(20) = 679 = 7*97
f(21) = 743 = 743
f(22) = 809 = 809
f(23) = 877 = 877
f(24) = 947 = 947
f(25) = 1019 = 1019
f(26) = 1093 = 1093
f(27) = 1169 = 7*167
f(28) = 1247 = 29*43
f(29) = 1327 = 1327
f(30) = 1409 = 1409
f(31) = 1493 = 1493
f(32) = 1579 = 1579
f(33) = 1667 = 1667
f(34) = 1757 = 7*251
f(35) = 1849 = 43*43
f(36) = 1943 = 29*67
f(37) = 2039 = 2039
f(38) = 2137 = 2137
f(39) = 2237 = 2237
f(40) = 2339 = 2339
f(41) = 2443 = 7*349
f(42) = 2549 = 2549
f(43) = 2657 = 2657
f(44) = 2767 = 2767
f(45) = 2879 = 2879
f(46) = 2993 = 41*73
f(47) = 3109 = 3109
f(48) = 3227 = 7*461
f(49) = 3347 = 3347
f(50) = 3469 = 3469
f(51) = 3593 = 3593
f(52) = 3719 = 3719
f(53) = 3847 = 3847
f(54) = 3977 = 41*97
f(55) = 4109 = 7*587
f(56) = 4243 = 4243
f(57) = 4379 = 29*151
f(58) = 4517 = 4517
f(59) = 4657 = 4657
f(60) = 4799 = 4799
f(61) = 4943 = 4943
f(62) = 5089 = 7*727
f(63) = 5237 = 5237
f(64) = 5387 = 5387
f(65) = 5539 = 29*191
f(66) = 5693 = 5693
f(67) = 5849 = 5849
f(68) = 6007 = 6007
f(69) = 6167 = 7*881
f(70) = 6329 = 6329
f(71) = 6493 = 43*151
f(72) = 6659 = 6659
f(73) = 6827 = 6827
f(74) = 6997 = 6997
f(75) = 7169 = 67*107
f(76) = 7343 = 7*1049
f(77) = 7519 = 73*103
f(78) = 7697 = 43*179
f(79) = 7877 = 7877
f(80) = 8059 = 8059
f(81) = 8243 = 8243
f(82) = 8429 = 8429
f(83) = 8617 = 7*1231
f(84) = 8807 = 8807
f(85) = 8999 = 8999
f(86) = 9193 = 29*317
f(87) = 9389 = 41*229
f(88) = 9587 = 9587
f(89) = 9787 = 9787
f(90) = 9989 = 7*1427
f(91) = 10193 = 10193
f(92) = 10399 = 10399
f(93) = 10607 = 10607
f(94) = 10817 = 29*373
f(95) = 11029 = 41*269
f(96) = 11243 = 11243
f(97) = 11459 = 7*1637
f(98) = 11677 = 11677
f(99) = 11897 = 11897
f(100) = 12119 = 12119

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+23x-181

f(0)=181
f(1)=157
f(2)=131
f(3)=103
f(4)=73
f(5)=41
f(6)=7
f(7)=29
f(8)=67
f(9)=107
f(10)=149
f(11)=193
f(12)=239
f(13)=1
f(14)=337
f(15)=389
f(16)=443
f(17)=499
f(18)=557
f(19)=617
f(20)=97
f(21)=743
f(22)=809
f(23)=877
f(24)=947
f(25)=1019
f(26)=1093
f(27)=167
f(28)=43
f(29)=1327
f(30)=1409
f(31)=1493
f(32)=1579
f(33)=1667
f(34)=251
f(35)=1
f(36)=1
f(37)=2039
f(38)=2137
f(39)=2237
f(40)=2339
f(41)=349
f(42)=2549
f(43)=2657
f(44)=2767
f(45)=2879
f(46)=1
f(47)=3109
f(48)=461
f(49)=3347
f(50)=3469
f(51)=3593
f(52)=3719
f(53)=3847
f(54)=1
f(55)=587
f(56)=4243
f(57)=151
f(58)=4517
f(59)=4657
f(60)=4799
f(61)=4943
f(62)=727
f(63)=5237
f(64)=5387
f(65)=191
f(66)=5693
f(67)=5849
f(68)=6007
f(69)=881
f(70)=6329
f(71)=1
f(72)=6659
f(73)=6827
f(74)=6997
f(75)=1
f(76)=1049
f(77)=1
f(78)=179
f(79)=7877
f(80)=8059
f(81)=8243
f(82)=8429
f(83)=1231
f(84)=8807
f(85)=8999
f(86)=317
f(87)=229
f(88)=9587
f(89)=9787
f(90)=1427
f(91)=10193
f(92)=10399
f(93)=10607
f(94)=373
f(95)=269
f(96)=11243
f(97)=1637
f(98)=11677
f(99)=11897

b) Substitution of the polynom
The polynom f(x)=x^2+23x-181 could be written as f(y)= y^2-313.25 with x=y-11.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+11.5
f'(x)>2x+22

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

181, 157, 131, 103, 73, 41, 7, 29, 67, 107, 149, 193, 239, 1, 337, 389, 443, 499, 557, 617, 97, 743, 809, 877, 947, 1019, 1093, 167, 43, 1327, 1409, 1493, 1579, 1667, 251, 1, 1, 2039, 2137, 2237, 2339, 349, 2549, 2657, 2767, 2879, 1, 3109, 461, 3347, 3469, 3593, 3719, 3847, 1, 587, 4243, 151, 4517, 4657, 4799, 4943, 727, 5237, 5387, 191, 5693, 5849, 6007, 881, 6329, 1, 6659, 6827, 6997, 1, 1049, 1, 179, 7877, 8059, 8243, 8429, 1231, 8807, 8999, 317, 229, 9587, 9787, 1427, 10193, 10399, 10607, 373, 269, 11243, 1637, 11677, 11897, 12119, 12343, 12569, 1, 1861, 13259, 1, 13729, 13967, 14207, 14449, 2099, 14939, 15187, 359, 541, 1, 1, 2351, 1, 16979, 401, 17509, 613, 18047, 2617, 18593, 18869, 467, 19427, 19709, 19993, 2897, 1, 20857, 21149, 523, 21739, 22037, 3191, 22639, 22943, 347, 23557, 823, 24179, 3499, 24809, 25127, 25447, 353, 1, 911, 3821, 27077, 27409, 27743, 653, 1, 1, 4157, 29443, 29789, 30137, 709, 30839, 31193, 4507, 31907, 787, 487, 32993, 33359, 1163, 4871, 34469, 34843, 859, 35597, 35977, 1, 1, 1, 37517, 37907, 38299, 38693, 39089, 5641, 39887, 40289, 40693, 563, 41507, 1, 6047, 42743, 43159, 43577, 43997, 1033, 44843, 223, 45697, 1, 46559, 46993, 1103, 1, 1, 1, 49193, 49639, 50087, 521, 50989, 7349, 51899, 1277, 52817, 53279, 241, 1, 1, 55147, 55619, 56093, 56569, 57047, 57527, 8287, 2017, 58979, 59467, 59957, 60449, 60943, 1, 257, 2153, 62939, 63443, 63949, 1499, 9281, 65479, 65993, 66509, 691, 67547, 1583, 1, 69119, 271, 70177, 70709, 1, 1, 10331, 1777, 2531, 73943, 74489, 75037, 577, 1, 283, 77249, 2683, 78367, 78929, 79493, 11437, 80627, 81197, 81769, 1229, 293, 83497, 12011, 84659, 85243, 85829, 839, 1, 1, 1, 88789, 89387, 1, 1, 91193, 2239, 307, 1, 93629, 1291, 3271, 311, 96097, 1, 313, 1, 98597, 1481, 99859, 100493, 14447, 683, 102407, 103049, 1069, 1013, 104987, 15091, 677, 1, 107599, 3733, 108917, 109579, 15749, 110909, 111577, 112247, 112919, 3917, 114269, 16421, 2689, 1087, 116993, 117679, 2887, 119057, 17107, 2801, 121139, 1669, 1, 123239, 3023, 17807, 1871, 126067, 1307, 127493, 4421, 1, 18521, 130369, 1, 1, 132547, 133277, 4621, 19249, 135479, 136217, 907, 137699, 829, 769, 19991, 1, 141439, 142193, 142949, 1097, 1979, 20747, 2179, 3413, 977, 3617, 149069, 5167, 21517, 151397, 3539, 152959, 153743, 3769, 155317, 1, 156899, 1531, 158489, 159287, 160087, 1, 23099, 162499, 163307, 164117, 1259, 1549, 863, 23911, 168197, 169019, 169843, 170669, 1, 1, 853, 173993, 174829, 1811, 176507, 2647, 2441, 25577, 6203, 1213, 1, 182443, 183299, 184157, 26431, 1, 186743, 4363, 4597, 189347, 1, 27299, 191969, 192847, 193727, 194609, 195493, 196379, 28181, 6833, 199049, 1117, 1877, 3011, 202637, 29077, 204443, 1, 1, 929, 1, 208993, 1, 210827, 211747, 212669, 1279, 214519, 215447, 30911, 217309, 5323, 1471, 5119, 1, 221999, 31849, 1, 7753, 5507, 5273, 227693, 1, 32801, 230567, 231529, 8017, 1487, 1, 235397, 33767, 237343, 3557, 239297, 997, 241259, 242243, 34747, 244217, 3359, 1289, 247193, 248189, 249187, 1, 1051, 252193, 8731, 254207, 255217, 1, 36749, 6299, 259277, 1987, 9011, 6101, 263369, 1, 265427, 1, 267493, 268529, 6269, 1, 1, 272693, 273739, 274787, 275837, 3793, 1, 39857, 2719, 281117, 1559, 9767, 1, 285377, 1, 1, 2203, 289669, 1741, 1, 292909, 41999, 295079, 1, 297257, 298349, 1193, 1109, 1, 3121, 303839, 304943, 306049, 1697, 1, 1, 7573, 311609, 312727, 1, 10861, 7351, 45317, 318347, 319477, 320609, 321743, 4423, 11173, 46451, 1153, 327443, 328589, 2213, 330887, 332039, 47599, 334349, 335507, 336667, 1, 338993, 5077, 48761, 342497, 1, 344843, 1511, 347197, 1, 49937, 1, 351929, 353117, 354307, 355499, 356693, 1, 4919, 360287, 1873, 362693, 3533, 365107, 1217, 1, 368743, 369959, 371177, 372397, 1, 53549, 3877, 377297, 2411, 1237, 2557, 382229, 1889, 1, 3607, 5779, 1249, 389687, 1, 1, 13567, 394699, 2371, 397217, 9719, 3881, 57287, 402277, 403547, 404819, 406093, 407369, 9967, 1, 1, 412493, 413779, 1543, 1, 417649, 1, 1, 2207, 6311, 424139, 425443, 1, 61151, 429367, 14851, 431993, 433309, 1949, 435947, 62467, 4099, 439919, 441247, 442577, 443909, 1, 1, 1, 1, 450599, 1, 453289, 454637, 65141, 457339, 15817, 2063, 461407, 11287, 464129, 66499, 466859, 10889, 16193, 3119, 2473, 473719, 1, 476477, 11113, 479243, 2011, 482017, 483407, 69257, 486193, 487589, 1451, 1823, 491789, 493193, 70657, 496007, 497417, 1, 1993, 501659, 503077, 1, 505919, 2803, 12409, 1, 511627, 513059, 1, 515929, 517367, 518807, 12689, 521693, 3511, 74941, 526037, 527489, 12301, 4957, 531857, 533317, 1, 536243, 537709, 12539, 1, 542119, 543593, 77867, 546547, 2293, 549509, 550993, 19051, 5711, 1, 1, 1, 559939, 2909, 1613, 1, 80849, 567449, 13877, 570467, 8537, 573493, 575009, 82361, 578047, 579569, 14173, 2267, 20143, 585677, 1, 588743, 590279, 5531, 13799, 594899, 1, 85427, 599537, 1, 602639, 14051, 2357, 607307, 86981, 610429, 611993, 613559, 9181, 2693, 618269, 1, 621419, 622997, 624577, 626159, 1, 21701, 1, 15427, 3797, 4049, 2539, 4877, 1, 3163, 643693, 15739, 1663, 3623, 2399, 6719, 93337, 6359, 656597, 658219, 659843, 15383, 663097, 94961, 1, 2917, 9173, 2477, 15649, 1, 3331, 1, 679487, 681137, 682789, 684443, 686099, 98251, 23773, 691079, 692743, 694409, 696077, 6521, 2437, 4643, 6823, 704447, 3697, 7297, 1, 1, 17387, 714557, 716249, 2069, 719639, 721337, 103291, 1, 1, 2297, 2579, 731567, 17053, 104999, 1, 25463, 10139, 741869, 1, 17333, 106721, 748777, 750509, 2131, 753979, 755717, 757457, 108457, 5107, 4567, 2609, 766187, 7177, 18773, 1, 773207, 26723, 776729, 3491, 2663, 1, 2731, 785569, 2269, 27211, 790897, 11831, 10883, 113749, 4409, 799817, 801607, 803399, 2281, 1, 2687, 810587, 3643, 814193, 6229, 8431, 819617, 2729, 823243, 825059, 28513, 828697, 1, 8081, 1, 835997, 5623, 4639, 29017, 1, 845167, 121001, 848849, 1, 2777, 854387, 856237, 20929, 122849, 861799, 5501, 6607, 2789, 3637, 11933, 1, 874847, 876719, 878593, 1, 2819, 884227, 1, 1, 889879, 891767, 893657, 30881, 897443, 128477, 20959, 1, 2521, 906943, 908849, 5801, 1, 914579, 13679, 3659, 22447, 922247, 1, 132299, 5557, 12739, 931877, 933809, 1, 937679, 1, 941557, 943499, 3923, 947389, 6287, 32803, 136177, 955193, 1, 4013, 961067, 2089, 1, 1, 5413, 1, 972869, 5051, 6469, 978797, 140111, 982759, 22901, 986729, 2833, 990707, 34231, 142099, 996689, 998687, 24407, 10337, 1, 1, 4969, 1010717, 13873, 1014743, 24799, 1018777, 1020797,

6. Sequence of the polynom (only primes)

181, 157, 131, 103, 73, 41, 7, 29, 67, 107, 149, 193, 239, 337, 389, 443, 499, 557, 617, 97, 743, 809, 877, 947, 1019, 1093, 167, 43, 1327, 1409, 1493, 1579, 1667, 251, 2039, 2137, 2237, 2339, 349, 2549, 2657, 2767, 2879, 3109, 461, 3347, 3469, 3593, 3719, 3847, 587, 4243, 151, 4517, 4657, 4799, 4943, 727, 5237, 5387, 191, 5693, 5849, 6007, 881, 6329, 6659, 6827, 6997, 1049, 179, 7877, 8059, 8243, 8429, 1231, 8807, 8999, 317, 229, 9587, 9787, 1427, 10193, 10399, 10607, 373, 269, 11243, 1637, 11677, 11897, 12119, 12343, 12569, 1861, 13259, 13729, 13967, 14207, 14449, 2099, 14939, 15187, 359, 541, 2351, 16979, 401, 17509, 613, 18047, 2617, 18593, 18869, 467, 19427, 19709, 19993, 2897, 20857, 21149, 523, 21739, 22037, 3191, 22639, 22943, 347, 23557, 823, 24179, 3499, 24809, 25127, 25447, 353, 911, 3821, 27077, 27409, 27743, 653, 4157, 29443, 29789, 30137, 709, 30839, 31193, 4507, 31907, 787, 487, 32993, 33359, 1163, 4871, 34469, 34843, 859, 35597, 35977, 37517, 37907, 38299, 38693, 39089, 5641, 39887, 40289, 40693, 563, 41507, 6047, 42743, 43159, 43577, 43997, 1033, 44843, 223, 45697, 46559, 46993, 1103, 49193, 49639, 50087, 521, 50989, 7349, 51899, 1277, 52817, 53279, 241, 55147, 55619, 56093, 56569, 57047, 57527, 8287, 2017, 58979, 59467, 59957, 60449, 60943, 257, 2153, 62939, 63443, 63949, 1499, 9281, 65479, 65993, 66509, 691, 67547, 1583, 69119, 271, 70177, 70709, 10331, 1777, 2531, 73943, 74489, 75037, 577, 283, 77249, 2683, 78367, 78929, 79493, 11437, 80627, 81197, 81769, 1229, 293, 83497, 12011, 84659, 85243, 85829, 839, 88789, 89387, 91193, 2239, 307, 93629, 1291, 3271, 311, 96097, 313, 98597, 1481, 99859, 100493, 14447, 683, 102407, 103049, 1069, 1013, 104987, 15091, 677, 107599, 3733, 108917, 109579, 15749, 110909, 111577, 112247, 112919, 3917, 114269, 16421, 2689, 1087, 116993, 117679, 2887, 119057, 17107, 2801, 121139, 1669, 123239, 3023, 17807, 1871, 126067, 1307, 127493, 4421, 18521, 130369, 132547, 133277, 4621, 19249, 135479, 136217, 907, 137699, 829, 769, 19991, 141439, 142193, 142949, 1097, 1979, 20747, 2179, 3413, 977, 3617, 149069, 5167, 21517, 151397, 3539, 152959, 153743, 3769, 155317, 156899, 1531, 158489, 159287, 160087, 23099, 162499, 163307, 164117, 1259, 1549, 863, 23911, 168197, 169019, 169843, 170669, 853, 173993, 174829, 1811, 176507, 2647, 2441, 25577, 6203, 1213, 182443, 183299, 184157, 26431, 186743, 4363, 4597, 189347, 27299, 191969, 192847, 193727, 194609, 195493, 196379, 28181, 6833, 199049, 1117, 1877, 3011, 202637, 29077, 204443, 929, 208993, 210827, 211747, 212669, 1279, 214519, 215447, 30911, 217309, 5323, 1471, 5119, 221999, 31849, 7753, 5507, 5273, 227693, 32801, 230567, 231529, 8017, 1487, 235397, 33767, 237343, 3557, 239297, 997, 241259, 242243, 34747, 244217, 3359, 1289, 247193, 248189, 249187, 1051, 252193, 8731, 254207, 255217, 36749, 6299, 259277, 1987, 9011, 6101, 263369, 265427, 267493, 268529, 6269, 272693, 273739, 274787, 275837, 3793, 39857, 2719, 281117, 1559, 9767, 285377, 2203, 289669, 1741, 292909, 41999, 295079, 297257, 298349, 1193, 1109, 3121, 303839, 304943, 306049, 1697, 7573, 311609, 312727, 10861, 7351, 45317, 318347, 319477, 320609, 321743, 4423, 11173, 46451, 1153, 327443, 328589, 2213, 330887, 332039, 47599, 334349, 335507, 336667, 338993, 5077, 48761, 342497, 344843, 1511, 347197, 49937, 351929, 353117, 354307, 355499, 356693, 4919, 360287, 1873, 362693, 3533, 365107, 1217, 368743, 369959, 371177, 372397, 53549, 3877, 377297, 2411, 1237, 2557, 382229, 1889, 3607, 5779, 1249, 389687, 13567, 394699, 2371, 397217, 9719, 3881, 57287, 402277, 403547, 404819, 406093, 407369, 9967, 412493, 413779, 1543, 417649, 2207, 6311, 424139, 425443, 61151, 429367, 14851, 431993, 433309, 1949, 435947, 62467, 4099, 439919, 441247, 442577, 443909, 450599, 453289, 454637, 65141, 457339, 15817, 2063, 461407, 11287, 464129, 66499, 466859, 10889, 16193, 3119, 2473, 473719, 476477, 11113, 479243, 2011, 482017, 483407, 69257, 486193, 487589, 1451, 1823, 491789, 493193, 70657, 496007, 497417, 1993, 501659, 503077, 505919, 2803, 12409, 511627, 513059, 515929, 517367, 518807, 12689, 521693, 3511, 74941, 526037, 527489, 12301, 4957, 531857, 533317, 536243, 537709, 12539, 542119, 543593, 77867, 546547, 2293, 549509, 550993, 19051, 5711, 559939, 2909, 1613, 80849, 567449, 13877, 570467, 8537, 573493, 575009, 82361, 578047, 579569, 14173, 2267, 20143, 585677, 588743, 590279, 5531, 13799, 594899, 85427, 599537, 602639, 14051, 2357, 607307, 86981, 610429, 611993, 613559, 9181, 2693, 618269, 621419, 622997, 624577, 626159, 21701, 15427, 3797, 4049, 2539, 4877, 3163, 643693, 15739, 1663, 3623, 2399, 6719, 93337, 6359, 656597, 658219, 659843, 15383, 663097, 94961, 2917, 9173, 2477, 15649, 3331, 679487, 681137, 682789, 684443, 686099, 98251, 23773, 691079, 692743, 694409, 696077, 6521, 2437, 4643, 6823, 704447, 3697, 7297, 17387, 714557, 716249, 2069, 719639, 721337, 103291, 2297, 2579, 731567, 17053, 104999, 25463, 10139, 741869, 17333, 106721, 748777, 750509, 2131, 753979, 755717, 757457, 108457, 5107, 4567, 2609, 766187, 7177, 18773, 773207, 26723, 776729, 3491, 2663, 2731, 785569, 2269, 27211, 790897, 11831, 10883, 113749, 4409, 799817, 801607, 803399, 2281, 2687, 810587, 3643, 814193, 6229, 8431, 819617, 2729, 823243, 825059, 28513, 828697, 8081, 835997, 5623, 4639, 29017, 845167, 121001, 848849, 2777, 854387, 856237, 20929, 122849, 861799, 5501, 6607, 2789, 3637, 11933, 874847, 876719, 878593, 2819, 884227, 889879, 891767, 893657, 30881, 897443, 128477, 20959, 2521, 906943, 908849, 5801, 914579, 13679, 3659, 22447, 922247, 132299, 5557, 12739, 931877, 933809, 937679, 941557, 943499, 3923, 947389, 6287, 32803, 136177, 955193, 4013, 961067, 2089, 5413, 972869, 5051, 6469, 978797, 140111, 982759, 22901, 986729, 2833, 990707, 34231, 142099, 996689, 998687, 24407, 10337, 4969, 1010717, 13873, 1014743, 24799, 1018777, 1020797,

7. Distribution of the primes

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

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)
110111101.1000001.1000001.1000000.0000000.0000000.000000
21009274180.9200000.7400000.9200008.3636366.727273inf
31.0008444753690.8440000.4750000.8440009.1739136.41891920.500000
410.0008.1013.4114.6900.8101000.3411000.8101009.5983417.18105312.710027
5100.00078.43126.36552.0660.7843100.2636500.7843109.6816447.72940511.101493
61.000.000767.971215.195552.7760.7679710.2151950.7679719.7916778.16214710.616833
710.000.0007.569.1211.815.7585.753.3630.7569120.1815760.7569129.8559988.43773410.408128
8100.000.00074.856.17015.754.77359.101.3970.7485620.1575480.7485629.8896788.67669210.272495
91.000.000.000742.221.694139.011.762603.209.9320.7422220.1390120.7422229.9153048.82346910.206357
1010.000.000.0007.371.798.9551.244.065.3116.127.733.6440.7371800.1244070.7371809.9320728.94935310.158543


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
416161601.0000001.0000000.0000001.7777781.777778-nan
532312920.9687500.9062500.0625001.9375001.812500inf
664595180.9218750.7968750.1250001.9032261.7586214.000000
712811588270.8984380.6875000.2109381.9491531.7254903.375000
8256222162600.8671880.6328120.2343751.9304351.8409092.222222
95124362741620.8515620.5351560.3164061.9639641.6913582.700000
101.0248664833830.8457030.4716800.3740231.9862381.7627742.364197
112.0481.7108638470.8349610.4213870.4135741.9745961.7867492.211488
124.0963.3641.5861.7780.8212890.3872070.4340821.9672511.8377752.099174
138.1926.6622.8773.7850.8132320.3511960.4620361.9803811.8139982.128796
1416.38413.1405.2697.8710.8020020.3215940.4804081.9723811.8314222.079525
1532.76826.0639.67916.3840.7953800.2953800.5000001.9834861.8369712.081565
1665.53651.69117.92833.7630.7887420.2735600.5151821.9833101.8522572.060730
17131.072102.41033.79368.6170.7813260.2578200.5235061.9811961.8849292.032314
18262.144203.65663.071140.5850.7768860.2405970.5362891.9886341.8663922.048836
19524.288404.588118.877285.7110.7716900.2267400.5449501.9866241.8848122.032301
201.048.576805.009224.795580.2140.7677160.2143810.5533351.9897011.8909882.030772
212.097.1521.602.195425.3911.176.8040.7639860.2028420.5611441.9902821.8923512.028224
224.194.3043.190.784808.7402.382.0440.7607420.1928190.5679241.9915081.9011692.024164
238.388.6086.355.5961.541.6764.813.9200.7576460.1837820.5738641.9918601.9062692.020920
2416.777.21612.663.2892.946.4639.716.8260.7547910.1756230.5791681.9924631.9112082.018485
2533.554.43225.239.2675.643.47819.595.7890.7521890.1681890.5840001.9931051.9153402.016686
2667.108.86450.319.46610.824.81839.494.6480.7498180.1613020.5885161.9936971.9181112.015466
27134.217.728100.348.13520.793.33879.554.7970.7476520.1549220.5927291.9942211.9208952.014318
28268.435.456200.161.88740.005.512160.156.3750.7456610.1490320.5966291.9946751.9239582.013158
29536.870.912399.319.84577.079.934322.239.9110.7437910.1435730.6002191.9949841.9267332.012033
301.073.741.824796.772.665148.720.709648.051.9560.7420520.1385070.6035451.9953241.9294352.011086
312.147.483.6481.590.062.080287.315.0081.302.747.0720.7404300.1337910.6066391.9956281.9319102.010251
324.294.967.2963.173.580.831555.734.4722.617.846.3590.7389070.1293920.6095151.9958851.9342342.009481
338.589.934.5926.334.916.7911.076.100.1115.258.816.6800.7374810.1252750.6122071.9961421.9363572.008833
3417.179.869.18412.646.810.3832.085.746.26110.561.064.1220.7361410.1214060.6147351.9963661.9382462.008259


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
123210120
245411121
389632232
41616884453
5322913167895
66451203111131512
712888315720242222
82561625510739424041
95122749118367717264
101.024483155328125118124116
112.048863283580215225218205
124.0961.5865261.060394412392388
138.1922.8779691.908716739730692
1416.3845.2691.7463.5231.2961.3271.3281.318
1532.7689.6793.1976.4822.3902.4242.4612.404
1665.53617.9285.96111.9674.4654.4624.5364.465
17131.07233.79311.31022.4838.4258.3848.5488.436
18262.14463.07121.08041.99115.67215.72815.87415.797
19524.288118.87739.57979.29829.65129.60629.87429.746
201.048.576224.79574.949149.84656.26755.97456.34156.213
212.097.152425.391141.763283.628106.419106.063106.381106.528
224.194.304808.740269.041539.699202.007202.188202.248202.297
238.388.6081.541.676513.2751.028.401385.733385.302385.221385.420
2416.777.2162.946.463981.3511.965.112736.436736.470736.731736.826
2533.554.4325.643.4781.880.5753.762.9031.410.6241.411.0691.411.0371.410.748
2667.108.86410.824.8183.608.5117.216.3072.705.5192.707.0792.706.5862.705.634
27134.217.72820.793.3386.931.35913.861.9795.197.1665.200.4075.196.7225.199.043
28268.435.45640.005.51213.335.08126.670.43110.001.44010.001.5159.999.25510.003.302
29536.870.91277.079.93425.692.57751.387.35719.273.35219.267.14819.265.63119.273.803
301.073.741.824148.720.70949.576.18899.144.52137.179.18537.182.04137.177.93337.181.550
312.147.483.648287.315.00895.775.285191.539.72371.827.62771.830.84871.824.27671.832.257
324.294.967.296555.734.472185.245.659370.488.813138.932.961138.933.657138.934.252138.933.602
338.589.934.5921.076.100.111358.710.154717.389.957269.005.883269.030.011269.025.362269.038.855
3417.179.869.1842.085.746.261695.262.1521.390.484.109521.422.986521.444.197521.435.550521.443.528


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
5322111001
6648441223
712827111655107
825660243613151616
9512162719135454438
101.024383177206989410091
112.048847403444209209212217
124.0961.778850928430460450438
138.1923.7851.8081.977899961973952
1416.3847.8713.8524.0191.8861.9732.0261.986
1532.76816.3848.0178.3673.9824.1014.1424.159
1665.53633.76316.49317.2708.3238.4298.5258.486
17131.07268.61733.56035.05717.06017.24617.16617.145
18262.144140.58568.89471.69134.99635.29035.10935.190
19524.288285.711140.443145.26871.49171.47271.49471.254
201.048.576580.214285.665294.549144.804145.585145.119144.706
212.097.1521.176.804579.499597.305293.999294.756293.988294.061
224.194.3042.382.0441.174.0821.207.962595.654596.351595.035595.004
238.388.6084.813.9202.374.4692.439.4511.204.1201.203.3521.203.5731.202.875
2416.777.2169.716.8264.795.3544.921.4722.429.5112.428.9062.429.8382.428.571
2533.554.43219.595.7899.679.6379.916.1524.899.8004.898.1724.899.7564.898.061
2667.108.86439.494.64819.522.27719.972.3719.874.0249.873.3489.873.6439.873.633
27134.217.72879.554.79739.343.41640.211.38119.889.61719.890.18319.886.08419.888.913
28268.435.456160.156.37579.248.00980.908.36640.037.87740.043.77840.035.02740.039.693
29536.870.912322.239.911159.526.964162.712.94780.558.84080.554.27980.560.32480.566.468
301.073.741.824648.051.956320.940.546327.111.410162.015.672162.015.315162.004.194162.016.775
312.147.483.6481.302.747.072645.431.366657.315.706325.679.741325.696.535325.674.791325.696.005
324.294.967.2962.617.846.3591.297.413.6211.320.432.738654.444.275654.446.643654.466.662654.488.779
338.589.934.5925.258.816.6802.607.134.9502.651.681.7301.314.704.4581.314.677.3051.314.707.5591.314.727.358
3417.179.869.18410.561.064.1225.237.368.5195.323.695.6032.640.253.7532.640.244.7482.640.263.8872.640.301.734


8. Check for existing Integer Sequences by OEIS

Found in Database : 181, 157, 131, 103, 73, 41, 7, 29, 67, 107, 149, 193, 239, 1, 337, 389, 443, 499, 557, 617,
Found in Database : 181, 157, 131, 103, 73, 41, 7, 29, 67, 107, 149, 193, 239, 337, 389, 443, 499, 557, 617, 97, 743, 809, 877, 947, 1019, 1093, 167, 43, 1327, 1409, 1493, 1579, 1667, 251, 2039, 2137, 2237,
Found in Database : 7, 29, 41, 43, 67, 73, 97, 103, 107, 131, 149,