Inhaltsverzeichnis

Development of
Algorithmic Constructions

21:21:37
Deutsch
16.Apr 2024

Polynom = x^2+23x-47

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) = 47 = 47
f(1) = 23 = 23
f(2) = 3 = 3
f(3) = 31 = 31
f(4) = 61 = 61
f(5) = 93 = 3*31
f(6) = 127 = 127
f(7) = 163 = 163
f(8) = 201 = 3*67
f(9) = 241 = 241
f(10) = 283 = 283
f(11) = 327 = 3*109
f(12) = 373 = 373
f(13) = 421 = 421
f(14) = 471 = 3*157
f(15) = 523 = 523
f(16) = 577 = 577
f(17) = 633 = 3*211
f(18) = 691 = 691
f(19) = 751 = 751
f(20) = 813 = 3*271
f(21) = 877 = 877
f(22) = 943 = 23*41
f(23) = 1011 = 3*337
f(24) = 1081 = 23*47
f(25) = 1153 = 1153
f(26) = 1227 = 3*409
f(27) = 1303 = 1303
f(28) = 1381 = 1381
f(29) = 1461 = 3*487
f(30) = 1543 = 1543
f(31) = 1627 = 1627
f(32) = 1713 = 3*571
f(33) = 1801 = 1801
f(34) = 1891 = 31*61
f(35) = 1983 = 3*661
f(36) = 2077 = 31*67
f(37) = 2173 = 41*53
f(38) = 2271 = 3*757
f(39) = 2371 = 2371
f(40) = 2473 = 2473
f(41) = 2577 = 3*859
f(42) = 2683 = 2683
f(43) = 2791 = 2791
f(44) = 2901 = 3*967
f(45) = 3013 = 23*131
f(46) = 3127 = 53*59
f(47) = 3243 = 3*23*47
f(48) = 3361 = 3361
f(49) = 3481 = 59*59
f(50) = 3603 = 3*1201
f(51) = 3727 = 3727
f(52) = 3853 = 3853
f(53) = 3981 = 3*1327
f(54) = 4111 = 4111
f(55) = 4243 = 4243
f(56) = 4377 = 3*1459
f(57) = 4513 = 4513
f(58) = 4651 = 4651
f(59) = 4791 = 3*1597
f(60) = 4933 = 4933
f(61) = 5077 = 5077
f(62) = 5223 = 3*1741
f(63) = 5371 = 41*131
f(64) = 5521 = 5521
f(65) = 5673 = 3*31*61
f(66) = 5827 = 5827
f(67) = 5983 = 31*193
f(68) = 6141 = 3*23*89
f(69) = 6301 = 6301
f(70) = 6463 = 23*281
f(71) = 6627 = 3*47*47
f(72) = 6793 = 6793
f(73) = 6961 = 6961
f(74) = 7131 = 3*2377
f(75) = 7303 = 67*109
f(76) = 7477 = 7477
f(77) = 7653 = 3*2551
f(78) = 7831 = 41*191
f(79) = 8011 = 8011
f(80) = 8193 = 3*2731
f(81) = 8377 = 8377
f(82) = 8563 = 8563
f(83) = 8751 = 3*2917
f(84) = 8941 = 8941
f(85) = 9133 = 9133
f(86) = 9327 = 3*3109
f(87) = 9523 = 89*107
f(88) = 9721 = 9721
f(89) = 9921 = 3*3307
f(90) = 10123 = 53*191
f(91) = 10327 = 23*449
f(92) = 10533 = 3*3511
f(93) = 10741 = 23*467
f(94) = 10951 = 47*233
f(95) = 11163 = 3*61*61
f(96) = 11377 = 31*367
f(97) = 11593 = 11593
f(98) = 11811 = 3*31*127
f(99) = 12031 = 53*227
f(100) = 12253 = 12253

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-47

f(0)=47
f(1)=23
f(2)=3
f(3)=31
f(4)=61
f(5)=1
f(6)=127
f(7)=163
f(8)=67
f(9)=241
f(10)=283
f(11)=109
f(12)=373
f(13)=421
f(14)=157
f(15)=523
f(16)=577
f(17)=211
f(18)=691
f(19)=751
f(20)=271
f(21)=877
f(22)=41
f(23)=337
f(24)=1
f(25)=1153
f(26)=409
f(27)=1303
f(28)=1381
f(29)=487
f(30)=1543
f(31)=1627
f(32)=571
f(33)=1801
f(34)=1
f(35)=661
f(36)=1
f(37)=53
f(38)=757
f(39)=2371
f(40)=2473
f(41)=859
f(42)=2683
f(43)=2791
f(44)=967
f(45)=131
f(46)=59
f(47)=1
f(48)=3361
f(49)=1
f(50)=1201
f(51)=3727
f(52)=3853
f(53)=1327
f(54)=4111
f(55)=4243
f(56)=1459
f(57)=4513
f(58)=4651
f(59)=1597
f(60)=4933
f(61)=5077
f(62)=1741
f(63)=1
f(64)=5521
f(65)=1
f(66)=5827
f(67)=193
f(68)=89
f(69)=6301
f(70)=281
f(71)=1
f(72)=6793
f(73)=6961
f(74)=2377
f(75)=1
f(76)=7477
f(77)=2551
f(78)=191
f(79)=8011
f(80)=2731
f(81)=8377
f(82)=8563
f(83)=2917
f(84)=8941
f(85)=9133
f(86)=3109
f(87)=107
f(88)=9721
f(89)=3307
f(90)=1
f(91)=449
f(92)=3511
f(93)=467
f(94)=233
f(95)=1
f(96)=367
f(97)=11593
f(98)=1
f(99)=227

b) Substitution of the polynom
The polynom f(x)=x^2+23x-47 could be written as f(y)= y^2-179.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

47, 23, 3, 31, 61, 1, 127, 163, 67, 241, 283, 109, 373, 421, 157, 523, 577, 211, 691, 751, 271, 877, 41, 337, 1, 1153, 409, 1303, 1381, 487, 1543, 1627, 571, 1801, 1, 661, 1, 53, 757, 2371, 2473, 859, 2683, 2791, 967, 131, 59, 1, 3361, 1, 1201, 3727, 3853, 1327, 4111, 4243, 1459, 4513, 4651, 1597, 4933, 5077, 1741, 1, 5521, 1, 5827, 193, 89, 6301, 281, 1, 6793, 6961, 2377, 1, 7477, 2551, 191, 8011, 2731, 8377, 8563, 2917, 8941, 9133, 3109, 107, 9721, 3307, 1, 449, 3511, 467, 233, 1, 367, 11593, 1, 227, 12253, 4159, 12703, 1, 1, 1, 13627, 4621, 239, 14341, 4861, 14827, 15073, 5107, 677, 15823, 1, 16333, 353, 137, 1, 17377, 5881, 17911, 18181, 6151, 307, 613, 6427, 631, 19843, 6709, 149, 1, 6997, 21283, 21577, 317, 22171, 977, 7591, 491, 349, 1, 24001, 593, 8209, 24943, 25261, 8527, 25903, 26227, 167, 26881, 27211, 9181, 457, 1, 1, 173, 1, 9859, 1301, 30271, 1, 659, 31327, 179, 1, 32401, 1, 1, 33493, 11287, 34231, 34603, 1, 35353, 35731, 12037, 36493, 36877, 12421, 1637, 1, 557, 947, 643, 1, 1291, 40423, 439, 41233, 41641, 1, 42463, 809, 14431, 43711, 44131, 14851, 1097, 45403, 15277, 46261, 881, 683, 47563, 2087, 1, 48883, 461, 1, 50221, 50671, 17041, 51577, 853, 17497, 52951, 1723, 17959, 1753, 929, 18427, 1, 953, 1, 1, 1, 19381, 2549, 59113, 19867, 60091, 1289, 20359, 919, 62071, 20857, 63073, 63577, 521, 64591, 65101, 21871, 743, 66643, 1, 1277, 1, 739, 3011, 2251, 1019, 70843, 1, 23971, 1367, 1553, 1, 74077, 74623, 25057, 75721, 857, 25609, 77383, 1901, 1, 79063, 79627, 26731, 80761, 81331, 1187, 1231, 1, 1, 84211, 84793, 1, 1, 2111, 937, 1487, 88327, 29641, 89521, 90121, 30241, 1, 617, 1, 93151, 93763, 1, 94993, 4157, 32077, 4211, 911, 1, 98731, 1483, 33331, 2141, 773, 33967, 1, 103183, 653, 104473, 3391, 35257, 3433, 107077, 35911, 1013, 1, 36571, 4799, 111043, 1619, 2741, 863, 1, 1, 733, 821, 116443, 117127, 1, 727, 119191, 1, 120577, 701, 1, 2011, 123373, 1, 124783, 1873, 1, 126913, 1, 1, 129061, 1, 1061, 1, 1039, 941, 1499, 2531, 44959, 135613, 136351, 45697, 1, 138577, 46441, 140071, 2657, 1151, 142327, 6221, 47947, 6287, 2383, 1, 146893, 147661, 49477, 4813, 3191, 1621, 151531, 152311, 51031, 153877, 1, 51817, 156241, 1, 52609, 1249, 159421, 53407, 7001, 3947, 2357, 1193, 164251, 55021, 165877, 166693, 55837, 168331, 1, 56659, 1567, 2909, 57487, 173293, 1, 58321, 1, 176641, 883, 178327, 179173, 2609, 180871, 7901, 60859, 3461, 184291, 61717, 186013, 186877, 62581, 4013, 2129, 1, 191227, 192103, 64327, 193861, 1307, 1069, 4793, 1, 1, 1, 8699, 2161, 1, 1, 67891, 1373, 205483, 1, 207301, 208213, 69709, 1, 210961, 70627, 1, 213727, 71551, 1117, 1, 72481, 1667, 219313, 73417, 1, 1163, 1, 3797, 1, 75307, 1, 227827, 76261, 7411, 1, 1, 1, 1223, 1907, 1, 236503, 79159, 3559, 239431, 1, 241393, 242377, 3527, 244351, 10667, 1, 1481, 248323, 2027, 1297, 251323, 1, 4153, 1523, 1811, 256363, 1579, 86131, 259411, 1, 87151, 8467, 263503, 88177, 265561, 1, 89209, 11681, 269701, 90247, 1571, 2503, 91291, 3089, 1, 1, 1, 5939, 1583, 281251, 282313, 1601, 4663, 5387, 95527, 1607, 1613, 96601, 12647, 7121, 1, 294127, 1, 1, 297391, 298483, 99859, 300673, 1, 100957, 1, 6491, 102061, 2243, 4603, 103171, 310627, 311743, 104287, 313981, 315103, 4583, 317353, 1, 106537, 7823, 2953, 107671, 324151, 1433, 1, 10567, 1213, 3547, 7043, 1, 111109, 6311, 335641, 1, 8243, 339127, 1693, 341461, 14897, 114601, 1, 5867, 115777, 2339, 5927, 116959, 1511, 5791, 118147, 355633, 1493, 1, 7643, 360421, 1, 2311, 11743, 1, 11821, 367663, 2999, 16091, 371311, 5399, 373753, 374977, 1409, 1, 378661, 126631, 3001, 382363, 127867, 384841, 386083, 1, 388573, 1, 2137, 1, 393577, 131611, 396091, 397351, 1, 4493, 1, 4327, 403681, 13063, 135409, 407503, 1, 2579, 1, 412627, 1, 415201, 416491, 2963, 7103, 10253, 140557, 1, 424273, 1, 2719, 18617, 2347, 18731, 2239, 144481, 434761, 436081, 1, 2297, 10733, 1, 14281, 444043, 4789, 446713, 9533, 1, 2699, 452077, 151141, 2381, 1, 1399, 19949, 3359, 6689, 462901, 464263, 155209, 1, 8837, 156577, 7723, 472477, 157951, 1, 476611, 1, 479377, 1, 1, 483541, 15643, 162109, 15733, 1, 7109, 491923, 1, 164911, 12101, 497551, 2819, 1, 1489, 2843, 504631, 3863, 169159, 508903, 510331, 1, 1, 7681, 172021, 517501, 1, 1949, 1, 22751, 174907, 22877, 527623, 5689, 530533, 1, 4337, 534913, 536377, 179281, 539311, 540781, 180751, 10259, 545203, 1, 1, 549643, 183709, 2293, 4363, 4517, 1, 9157, 8117, 1, 3779, 1, 566077, 1, 189697, 570601, 8539, 1787, 18553, 3673, 6217, 2063, 581227, 4133, 584281, 9929, 195781, 588877, 10007, 1, 593491, 1, 198859, 598123, 1, 200407, 602773, 9907, 201961, 4783, 1, 1, 1931, 1999, 3061, 5659, 15083, 4397, 1, 20101, 3929, 1, 27299, 209821, 27437, 1, 1, 2801, 637423, 4019, 640621, 642223, 1, 645433, 2777, 216217, 1, 651877, 3571, 655111, 1, 219451, 16097, 661603, 221077, 1, 666493, 1, 669763, 671401, 7237, 674683, 21817, 3373, 11519, 681271, 1, 1, 5009, 1, 689551, 4139, 230959, 4261, 14813, 1, 2927, 701227, 1, 704581, 30707, 1, 5417, 13421, 1, 714691, 716383, 2237, 719773, 6619, 1, 1, 13709, 1, 729991, 1789, 244471, 15641, 736843, 246187, 5651, 32261, 1, 32411, 6983, 1, 1783, 4349, 6131, 12391, 2677, 1993, 3607, 762823, 254857, 766321, 768073, 256609, 771583, 773341, 2903, 16529, 25117, 4409, 1, 783931, 1, 787477, 5297, 263677, 11833, 794593, 265459, 2287, 1, 1, 15161, 805327, 269041, 1, 1, 270841, 814327, 816133, 5801, 15467, 6469, 11933, 825193, 1, 276277, 1, 832477, 8971, 836131, 27031, 1, 1, 12589, 281767, 1, 848983, 283609, 852673, 3041, 285457, 858223, 860077, 6113, 2447, 1, 289171, 37799, 1, 291037, 21341, 876853, 292909, 880603, 882481, 294787, 886243, 15053, 1, 28771, 15149, 9631, 897577, 899473, 5669, 22031, 19259, 2207, 39521, 8513, 13229, 914713, 13681, 1, 5647, 15121, 308101, 926227, 928153, 310027, 6803, 933943, 1987, 937813, 10559, 313897, 8819, 945577, 2411, 949471, 1, 1, 30817, 41621, 319747, 961201, 963163, 321709, 1, 4021, 4831, 973003, 974977, 3659, 978931, 980911, 1, 984877, 2689, 329617, 990841, 6091, 331609, 1, 43427, 1, 1, 18959, 3079, 17099, 6053, 10891, 1014877, 32803, 339637, 1020931,

6. Sequence of the polynom (only primes)

47, 23, 3, 31, 61, 127, 163, 67, 241, 283, 109, 373, 421, 157, 523, 577, 211, 691, 751, 271, 877, 41, 337, 1153, 409, 1303, 1381, 487, 1543, 1627, 571, 1801, 661, 53, 757, 2371, 2473, 859, 2683, 2791, 967, 131, 59, 3361, 1201, 3727, 3853, 1327, 4111, 4243, 1459, 4513, 4651, 1597, 4933, 5077, 1741, 5521, 5827, 193, 89, 6301, 281, 6793, 6961, 2377, 7477, 2551, 191, 8011, 2731, 8377, 8563, 2917, 8941, 9133, 3109, 107, 9721, 3307, 449, 3511, 467, 233, 367, 11593, 227, 12253, 4159, 12703, 13627, 4621, 239, 14341, 4861, 14827, 15073, 5107, 677, 15823, 16333, 353, 137, 17377, 5881, 17911, 18181, 6151, 307, 613, 6427, 631, 19843, 6709, 149, 6997, 21283, 21577, 317, 22171, 977, 7591, 491, 349, 24001, 593, 8209, 24943, 25261, 8527, 25903, 26227, 167, 26881, 27211, 9181, 457, 173, 9859, 1301, 30271, 659, 31327, 179, 32401, 33493, 11287, 34231, 34603, 35353, 35731, 12037, 36493, 36877, 12421, 1637, 557, 947, 643, 1291, 40423, 439, 41233, 41641, 42463, 809, 14431, 43711, 44131, 14851, 1097, 45403, 15277, 46261, 881, 683, 47563, 2087, 48883, 461, 50221, 50671, 17041, 51577, 853, 17497, 52951, 1723, 17959, 1753, 929, 18427, 953, 19381, 2549, 59113, 19867, 60091, 1289, 20359, 919, 62071, 20857, 63073, 63577, 521, 64591, 65101, 21871, 743, 66643, 1277, 739, 3011, 2251, 1019, 70843, 23971, 1367, 1553, 74077, 74623, 25057, 75721, 857, 25609, 77383, 1901, 79063, 79627, 26731, 80761, 81331, 1187, 1231, 84211, 84793, 2111, 937, 1487, 88327, 29641, 89521, 90121, 30241, 617, 93151, 93763, 94993, 4157, 32077, 4211, 911, 98731, 1483, 33331, 2141, 773, 33967, 103183, 653, 104473, 3391, 35257, 3433, 107077, 35911, 1013, 36571, 4799, 111043, 1619, 2741, 863, 733, 821, 116443, 117127, 727, 119191, 120577, 701, 2011, 123373, 124783, 1873, 126913, 129061, 1061, 1039, 941, 1499, 2531, 44959, 135613, 136351, 45697, 138577, 46441, 140071, 2657, 1151, 142327, 6221, 47947, 6287, 2383, 146893, 147661, 49477, 4813, 3191, 1621, 151531, 152311, 51031, 153877, 51817, 156241, 52609, 1249, 159421, 53407, 7001, 3947, 2357, 1193, 164251, 55021, 165877, 166693, 55837, 168331, 56659, 1567, 2909, 57487, 173293, 58321, 176641, 883, 178327, 179173, 2609, 180871, 7901, 60859, 3461, 184291, 61717, 186013, 186877, 62581, 4013, 2129, 191227, 192103, 64327, 193861, 1307, 1069, 4793, 8699, 2161, 67891, 1373, 205483, 207301, 208213, 69709, 210961, 70627, 213727, 71551, 1117, 72481, 1667, 219313, 73417, 1163, 3797, 75307, 227827, 76261, 7411, 1223, 1907, 236503, 79159, 3559, 239431, 241393, 242377, 3527, 244351, 10667, 1481, 248323, 2027, 1297, 251323, 4153, 1523, 1811, 256363, 1579, 86131, 259411, 87151, 8467, 263503, 88177, 265561, 89209, 11681, 269701, 90247, 1571, 2503, 91291, 3089, 5939, 1583, 281251, 282313, 1601, 4663, 5387, 95527, 1607, 1613, 96601, 12647, 7121, 294127, 297391, 298483, 99859, 300673, 100957, 6491, 102061, 2243, 4603, 103171, 310627, 311743, 104287, 313981, 315103, 4583, 317353, 106537, 7823, 2953, 107671, 324151, 1433, 10567, 1213, 3547, 7043, 111109, 6311, 335641, 8243, 339127, 1693, 341461, 14897, 114601, 5867, 115777, 2339, 5927, 116959, 1511, 5791, 118147, 355633, 1493, 7643, 360421, 2311, 11743, 11821, 367663, 2999, 16091, 371311, 5399, 373753, 374977, 1409, 378661, 126631, 3001, 382363, 127867, 384841, 386083, 388573, 2137, 393577, 131611, 396091, 397351, 4493, 4327, 403681, 13063, 135409, 407503, 2579, 412627, 415201, 416491, 2963, 7103, 10253, 140557, 424273, 2719, 18617, 2347, 18731, 2239, 144481, 434761, 436081, 2297, 10733, 14281, 444043, 4789, 446713, 9533, 2699, 452077, 151141, 2381, 1399, 19949, 3359, 6689, 462901, 464263, 155209, 8837, 156577, 7723, 472477, 157951, 476611, 479377, 483541, 15643, 162109, 15733, 7109, 491923, 164911, 12101, 497551, 2819, 1489, 2843, 504631, 3863, 169159, 508903, 510331, 7681, 172021, 517501, 1949, 22751, 174907, 22877, 527623, 5689, 530533, 4337, 534913, 536377, 179281, 539311, 540781, 180751, 10259, 545203, 549643, 183709, 2293, 4363, 4517, 9157, 8117, 3779, 566077, 189697, 570601, 8539, 1787, 18553, 3673, 6217, 2063, 581227, 4133, 584281, 9929, 195781, 588877, 10007, 593491, 198859, 598123, 200407, 602773, 9907, 201961, 4783, 1931, 1999, 3061, 5659, 15083, 4397, 20101, 3929, 27299, 209821, 27437, 2801, 637423, 4019, 640621, 642223, 645433, 2777, 216217, 651877, 3571, 655111, 219451, 16097, 661603, 221077, 666493, 669763, 671401, 7237, 674683, 21817, 3373, 11519, 681271, 5009, 689551, 4139, 230959, 4261, 14813, 2927, 701227, 704581, 30707, 5417, 13421, 714691, 716383, 2237, 719773, 6619, 13709, 729991, 1789, 244471, 15641, 736843, 246187, 5651, 32261, 32411, 6983, 1783, 4349, 6131, 12391, 2677, 1993, 3607, 762823, 254857, 766321, 768073, 256609, 771583, 773341, 2903, 16529, 25117, 4409, 783931, 787477, 5297, 263677, 11833, 794593, 265459, 2287, 15161, 805327, 269041, 270841, 814327, 816133, 5801, 15467, 6469, 11933, 825193, 276277, 832477, 8971, 836131, 27031, 12589, 281767, 848983, 283609, 852673, 3041, 285457, 858223, 860077, 6113, 2447, 289171, 37799, 291037, 21341, 876853, 292909, 880603, 882481, 294787, 886243, 15053, 28771, 15149, 9631, 897577, 899473, 5669, 22031, 19259, 2207, 39521, 8513, 13229, 914713, 13681, 5647, 15121, 308101, 926227, 928153, 310027, 6803, 933943, 1987, 937813, 10559, 313897, 8819, 945577, 2411, 949471, 30817, 41621, 319747, 961201, 963163, 321709, 4021, 4831, 973003, 974977, 3659, 978931, 980911, 984877, 2689, 329617, 990841, 6091, 331609, 43427, 18959, 3079, 17099, 6053, 10891, 1014877, 32803, 339637, 1020931,

7. Distribution of the primes

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

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.9000001.0000000.0000000.0000000.000000
21008349340.8300000.4900000.8300008.3000005.44444534.000000
31.0008003084920.8000000.3080000.8000009.6385556.28571414.470589
410.0007.6272.1945.4330.7627000.2194000.7627009.5337507.12337711.042683
5100.00074.77416.88457.8900.7477400.1688400.7477409.8038557.69553310.655255
61.000.000738.499138.294600.2050.7384990.1382940.7384999.8764148.19083110.368026
710.000.0007.319.3211.170.9156.148.4060.7319320.1170910.7319329.9110778.46685310.243843
8100.000.00072.683.60610.152.83062.530.7760.7268360.1015280.7268369.9303768.67085210.170242
91.000.000.000722.930.77989.591.080633.339.6990.7229310.0895910.7229319.9462698.82424710.128448
1010.000.000.0007.198.234.160801.746.5236.396.487.6370.7198230.0801750.7198239.9570188.94895510.099616


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
388711.0000000.8750000.1250001.6000001.400000inf
416161331.0000000.8125000.1875002.0000001.8571433.000000
532302190.9375000.6562500.2812501.8750001.6153853.000000
6645536190.8593750.5625000.2968751.8333331.7142862.111111
712810560450.8203120.4687500.3515621.9090911.6666672.368421
82562071041030.8085940.4062500.4023441.9714291.7333332.288889
95124101792310.8007810.3496090.4511721.9806761.7211542.242718
101.0248183155030.7988280.3076170.4912111.9951221.7597772.177489
112.0481.6015581.0430.7817380.2724610.5092771.9572131.7714292.073559
124.0963.1609992.1610.7714840.2438960.5275881.9737661.7903232.071908
138.1926.2571.8344.4230.7637940.2238770.5399171.9800631.8358362.046738
1416.38412.4213.3879.0340.7581180.2067260.5513921.9851371.8467832.042505
1532.76824.6966.24818.4480.7536620.1906740.5629881.9882461.8447002.042063
1665.53649.15911.52037.6390.7501070.1757810.5743261.9905651.8437902.040275
17131.07297.81221.56676.2460.7462460.1645360.5817111.9897071.8720492.025718
18262.144194.89440.538154.3560.7434620.1546400.5888211.9925371.8797182.024447
19524.288388.46676.347312.1190.7409400.1456200.5953201.9932171.8833442.022072
201.048.576774.109144.643629.4660.7382480.1379420.6003061.9927331.8945472.016750
212.097.1521.543.942274.5051.269.4370.7362090.1308940.6053151.9944761.8978102.016689
224.194.3043.079.578521.0642.558.5140.7342290.1242310.6099971.9946201.8981952.015471
238.388.6086.143.989994.0385.149.9510.7324210.1184990.6139221.9950751.9077082.012868
2416.777.21612.258.3501.899.45010.358.9000.7306550.1132160.6174391.9951781.9108422.011456
2533.554.43224.463.2613.636.45920.826.8020.7290620.1083750.6206871.9956411.9144802.010523
2667.108.86448.829.4436.972.35341.857.0900.7276150.1038960.6237191.9960321.9173472.009770
27134.217.72897.478.72313.398.47884.080.2450.7262730.0998260.6264471.9963101.9216582.008746
28268.435.456194.631.26025.778.252168.853.0080.7250580.0960310.6290261.9966541.9239692.008236
29536.870.912388.640.38849.674.645338.965.7430.7238990.0925260.6313731.9968041.9269982.007460
301.073.741.824776.125.49995.846.838680.278.6610.7228230.0892640.6335591.9970271.9294922.006925
312.147.483.6481.550.083.050185.175.4911.364.907.5590.7218140.0862290.6355851.9972071.9319942.006395
324.294.967.2963.096.164.913358.171.6812.737.993.2320.7208820.0833930.6374891.9974191.9342282.005992
338.589.934.5926.184.828.084693.502.3805.491.325.7040.7200090.0807340.6392741.9975771.9362292.005602
3417.179.869.18412.355.513.9561.344.199.60711.011.314.3490.7191860.0782430.6409431.9977141.9382772.005220


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
123020102
245220113
387420214
416131022434
532211823657
66436332810810
71286057215151713
8256104101226292425
9512179176243474346
101.024315312281817479
112.0485585552145139130144
124.0969999962261241246251
138.1921.8341.8312471448457458
1416.3843.3873.3842867831838851
1532.7686.2486.24521.5481.5701.5711.559
1665.53611.52011.51722.8402.8962.8812.903
17131.07221.56621.56325.3425.3915.3975.436
18262.14440.53840.535210.03210.14610.18410.176
19524.28876.34776.344219.00119.15719.14119.048
201.048.576144.643144.640236.07036.28736.20436.082
212.097.152274.505274.502268.63868.72368.59568.549
224.194.304521.064521.0612130.333130.364130.055130.312
238.388.608994.038994.0352248.962248.604248.166248.306
2416.777.2161.899.4501.899.4472475.315474.620474.448475.067
2533.554.4323.636.4593.636.4562909.896908.822908.388909.353
2667.108.8646.972.3536.972.35021.744.0711.741.6301.742.8231.743.829
27134.217.72813.398.47813.398.47523.350.5723.347.7463.350.4543.349.706
28268.435.45625.778.25225.778.24926.445.0696.442.9166.445.8166.444.451
29536.870.91249.674.64549.674.642212.418.40812.417.42312.417.18312.421.631
301.073.741.82495.846.83895.846.835223.963.80223.958.05623.959.29023.965.690
312.147.483.648185.175.491185.175.488246.296.91446.291.84746.290.05546.296.675
324.294.967.296358.171.681358.171.678289.543.67689.538.77589.539.29989.549.931
338.589.934.592693.502.380693.502.3772173.376.006173.376.136173.370.199173.380.039
3417.179.869.1841.344.199.6071.344.199.6042336.045.266336.063.121336.035.929336.055.291


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
381100100
4163300120
5329902322
664191813664
71284536910131210
8256103703325282822
95122311419057626052
101.024503288215124132133114
112.0481.043575468258257286242
124.0962.1611.175986538521569533
138.1924.4232.4162.0071.0831.1041.1461.090
1416.3849.0344.8594.1752.1902.2612.2942.289
1532.76818.4489.8578.5914.5634.5744.6634.648
1665.53637.63919.98717.6529.3309.3659.4669.478
17131.07276.24640.40935.83719.01119.07619.03019.129
18262.144154.35681.50372.85338.39338.59238.60438.767
19524.288312.119164.623147.49677.75178.08978.12578.154
201.048.576629.466331.503297.963157.360156.873157.709157.524
212.097.1521.269.437666.282603.155316.918317.046317.887317.586
224.194.3042.558.5141.340.2361.218.278639.467639.043640.153639.851
238.388.6085.149.9512.691.7002.458.2511.286.9581.287.8281.288.3131.286.852
2416.777.21610.358.9005.403.9314.954.9692.588.7552.590.5382.590.6882.588.919
2533.554.43220.826.80210.844.6059.982.1975.206.4895.207.4925.206.4875.206.334
2667.108.86441.857.09021.757.43820.099.65210.463.25910.465.99810.463.20010.464.633
27134.217.72884.080.24543.633.49340.446.75221.015.65421.022.11121.019.03921.023.441
28268.435.456168.853.00887.504.61481.348.39442.211.12942.210.69742.215.89642.215.286
29536.870.912338.965.743175.428.989163.536.75484.746.65284.735.78984.741.87784.741.425
301.073.741.824680.278.661351.640.961328.637.700170.062.514170.074.616170.072.256170.069.275
312.147.483.6481.364.907.559704.727.923660.179.636341.217.299341.237.046341.233.974341.219.240
324.294.967.2962.737.993.2321.412.178.6971.325.814.535684.485.326684.502.777684.520.420684.484.709
338.589.934.5925.491.325.7042.829.463.0232.661.862.6811.372.796.8631.372.844.3161.372.833.3521.372.851.173
3417.179.869.18411.011.314.3495.668.393.5655.342.920.7842.752.833.5832.752.845.9862.752.812.6752.752.822.105


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 23, 3, 31, 61, 1, 127, 163, 67, 241, 283, 109, 373, 421, 157, 523, 577, 211, 691, 751,
Found in Database : 47, 23, 3, 31, 61, 127, 163, 67, 241, 283, 109, 373, 421, 157, 523, 577, 211, 691, 751, 271, 877, 41, 337, 1153, 409, 1303, 1381, 487, 1543, 1627, 571, 1801, 661, 53, 757, 2371,
Found in Database : 3, 23, 31, 41, 47, 53, 59, 61, 67, 89, 107, 109, 127, 131, 137, 149,