Inhaltsverzeichnis

Development of
Algorithmic Constructions

02:26:26
Deutsch
20.Apr 2024

Polynom = x^2+150x-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) = 13 = 13
f(2) = 257 = 257
f(3) = 103 = 103
f(4) = 569 = 569
f(5) = 91 = 7*13
f(6) = 889 = 7*127
f(7) = 263 = 263
f(8) = 1217 = 1217
f(9) = 173 = 173
f(10) = 1553 = 1553
f(11) = 431 = 431
f(12) = 1897 = 7*271
f(13) = 259 = 7*37
f(14) = 2249 = 13*173
f(15) = 607 = 607
f(16) = 2609 = 2609
f(17) = 349 = 349
f(18) = 2977 = 13*229
f(19) = 791 = 7*113
f(20) = 3353 = 7*479
f(21) = 443 = 443
f(22) = 3737 = 37*101
f(23) = 983 = 983
f(24) = 4129 = 4129
f(25) = 541 = 541
f(26) = 4529 = 7*647
f(27) = 1183 = 7*13*13
f(28) = 4937 = 4937
f(29) = 643 = 643
f(30) = 5353 = 53*101
f(31) = 1391 = 13*107
f(32) = 5777 = 53*109
f(33) = 749 = 7*107
f(34) = 6209 = 7*887
f(35) = 1607 = 1607
f(36) = 6649 = 61*109
f(37) = 859 = 859
f(38) = 7097 = 47*151
f(39) = 1831 = 1831
f(40) = 7553 = 7*13*83
f(41) = 973 = 7*139
f(42) = 8017 = 8017
f(43) = 2063 = 2063
f(44) = 8489 = 13*653
f(45) = 1091 = 1091
f(46) = 8969 = 8969
f(47) = 2303 = 7*7*47
f(48) = 9457 = 7*7*193
f(49) = 1213 = 1213
f(50) = 9953 = 37*269
f(51) = 2551 = 2551
f(52) = 10457 = 10457
f(53) = 1339 = 13*103
f(54) = 10969 = 7*1567
f(55) = 2807 = 7*401
f(56) = 11489 = 11489
f(57) = 1469 = 13*113
f(58) = 12017 = 61*197
f(59) = 3071 = 37*83
f(60) = 12553 = 12553
f(61) = 1603 = 7*229
f(62) = 13097 = 7*1871
f(63) = 3343 = 3343
f(64) = 13649 = 13649
f(65) = 1741 = 1741
f(66) = 14209 = 13*1093
f(67) = 3623 = 3623
f(68) = 14777 = 7*2111
f(69) = 1883 = 7*269
f(70) = 15353 = 13*1181
f(71) = 3911 = 3911
f(72) = 15937 = 15937
f(73) = 2029 = 2029
f(74) = 16529 = 16529
f(75) = 4207 = 7*601
f(76) = 17129 = 7*2447
f(77) = 2179 = 2179
f(78) = 17737 = 17737
f(79) = 4511 = 13*347
f(80) = 18353 = 18353
f(81) = 2333 = 2333
f(82) = 18977 = 7*2711
f(83) = 4823 = 7*13*53
f(84) = 19609 = 19609
f(85) = 2491 = 47*53
f(86) = 20249 = 20249
f(87) = 5143 = 37*139
f(88) = 20897 = 20897
f(89) = 2653 = 7*379
f(90) = 21553 = 7*3079
f(91) = 5471 = 5471
f(92) = 22217 = 13*1709
f(93) = 2819 = 2819
f(94) = 22889 = 47*487
f(95) = 5807 = 5807
f(96) = 23569 = 7*7*13*37
f(97) = 2989 = 7*7*61
f(98) = 24257 = 127*191
f(99) = 6151 = 6151
f(100) = 24953 = 24953

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+150x-47

f(0)=47
f(1)=13
f(2)=257
f(3)=103
f(4)=569
f(5)=7
f(6)=127
f(7)=263
f(8)=1217
f(9)=173
f(10)=1553
f(11)=431
f(12)=271
f(13)=37
f(14)=1
f(15)=607
f(16)=2609
f(17)=349
f(18)=229
f(19)=113
f(20)=479
f(21)=443
f(22)=101
f(23)=983
f(24)=4129
f(25)=541
f(26)=647
f(27)=1
f(28)=4937
f(29)=643
f(30)=53
f(31)=107
f(32)=109
f(33)=1
f(34)=887
f(35)=1607
f(36)=61
f(37)=859
f(38)=151
f(39)=1831
f(40)=83
f(41)=139
f(42)=8017
f(43)=2063
f(44)=653
f(45)=1091
f(46)=8969
f(47)=1
f(48)=193
f(49)=1213
f(50)=269
f(51)=2551
f(52)=10457
f(53)=1
f(54)=1567
f(55)=401
f(56)=11489
f(57)=1
f(58)=197
f(59)=1
f(60)=12553
f(61)=1
f(62)=1871
f(63)=3343
f(64)=13649
f(65)=1741
f(66)=1093
f(67)=3623
f(68)=2111
f(69)=1
f(70)=1181
f(71)=3911
f(72)=15937
f(73)=2029
f(74)=16529
f(75)=601
f(76)=2447
f(77)=2179
f(78)=17737
f(79)=347
f(80)=18353
f(81)=2333
f(82)=2711
f(83)=1
f(84)=19609
f(85)=1
f(86)=20249
f(87)=1
f(88)=20897
f(89)=379
f(90)=3079
f(91)=5471
f(92)=1709
f(93)=2819
f(94)=487
f(95)=5807
f(96)=1
f(97)=1
f(98)=191
f(99)=6151

b) Substitution of the polynom
The polynom f(x)=x^2+150x-47 could be written as f(y)= y^2-5672 with x=y-75

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+75
f'(x)>2x+149

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, 13, 257, 103, 569, 7, 127, 263, 1217, 173, 1553, 431, 271, 37, 1, 607, 2609, 349, 229, 113, 479, 443, 101, 983, 4129, 541, 647, 1, 4937, 643, 53, 107, 109, 1, 887, 1607, 61, 859, 151, 1831, 83, 139, 8017, 2063, 653, 1091, 8969, 1, 193, 1213, 269, 2551, 10457, 1, 1567, 401, 11489, 1, 197, 1, 12553, 1, 1871, 3343, 13649, 1741, 1093, 3623, 2111, 1, 1181, 3911, 15937, 2029, 16529, 601, 2447, 2179, 17737, 347, 18353, 2333, 2711, 1, 19609, 1, 20249, 1, 20897, 379, 3079, 5471, 1709, 2819, 487, 5807, 1, 1, 191, 6151, 24953, 3163, 25657, 929, 3767, 1, 1, 6863, 27817, 1, 4079, 1033, 29297, 3709, 199, 7607, 30809, 557, 1, 131, 32353, 4093, 2549, 1, 1, 613, 34729, 8783, 35537, 4493, 36353, 1, 1, 1, 1, 739, 733, 4909, 1, 1433, 1, 1, 499, 10463, 3253, 1, 881, 10903, 3389, 5563, 44953, 11351, 6551, 827, 46769, 11807, 463, 1, 797, 1753, 7079, 1, 50497, 12743, 51449, 6491, 7487, 1889, 53377, 6733, 1, 13711, 55337, 997, 619, 14207, 57329, 7229, 58337, 313, 1, 1069, 1, 1171, 61409, 7741, 317, 1, 1, 1, 64553, 307, 65617, 8269, 1361, 1, 1, 8539, 1861, 17351, 5381, 1259, 10151, 17903, 72169, 9091, 883, 1, 10631, 1, 75553, 19031, 76697, 743, 77849, 2801, 11287, 9949, 80177, 331, 81353, 10243, 907, 2969, 829, 1, 1, 21383, 86137, 1549, 12479, 21991, 877, 11149, 89809, 1, 13007, 1637, 92297, 1787, 93553, 1, 1789, 1, 1, 1, 97369, 1, 7589, 12413, 1, 3593, 7789, 12739, 941, 1, 103889, 1867, 15031, 1, 839, 1031, 107897, 27143, 15607, 1, 110609, 27823, 111977, 14083, 1, 4073, 1, 1, 8933, 29207, 117529, 14779, 1307, 4273, 1973, 409, 2591, 1, 123209, 2213, 17807, 2411, 126097, 1, 1, 2467, 2633, 1, 130489, 1, 131969, 1, 421, 4793, 1483, 16963, 2237, 34303, 10613, 17341, 19927, 5009, 1699, 1, 142553, 35831, 1399, 1, 20807, 36607, 147209, 1423, 4021, 1, 457, 2699, 151937, 38183, 153529, 1, 11933, 5569, 22391, 419, 937, 39791, 159977, 1, 23087, 5801, 163249, 20509, 1, 3187, 1103, 1, 3433, 3251, 169889, 21341, 4637, 43103, 467, 3109, 3301, 43951, 1, 22189, 1667, 1, 1979, 22619, 1609, 1, 1061, 23053, 1, 1, 187049, 1, 1, 1009, 190577, 1, 27479, 48311, 2339, 24379, 195929, 49207, 1, 3547, 15349, 50111, 1, 1, 15629, 1, 29287, 25741, 1579, 1, 208697, 26203, 4297, 1, 5741, 26669, 509, 4139, 1913, 3877, 31151, 54751, 219953, 521, 3637, 1051, 2459, 4013, 225689, 56663, 17509, 28573, 229553, 8233, 33071, 29059, 4967, 1, 1559, 2273, 33911, 8513, 6469, 2311, 241337, 1289, 3989, 4363, 1, 61583, 247337, 1, 19181, 62591, 35911, 4507, 1, 63607, 547, 32059, 257497, 1319, 5297, 32573, 1, 5051, 577, 33091, 37967, 1, 267857, 33613, 269953, 67751, 1381, 4877, 1, 1, 1, 1, 2003, 1, 3083, 1, 282697, 1163, 1, 1, 7757, 10289, 1, 2791, 6199, 1, 2693, 2833, 1, 10601, 1301, 37379, 300137, 593, 1583, 5419, 3347, 76423, 306809, 631, 23773, 77543, 6353, 1, 313553, 1, 1, 39619, 8597, 1, 45767, 40189, 1, 1, 324953, 40763, 46751, 1, 2371, 41341, 331889, 1571, 1, 1, 48079, 84431, 1, 42509, 2687, 85607, 1, 1, 3359, 1, 348353, 3361, 350737, 12569, 1, 3407, 355529, 1, 2069, 44893, 51479, 1, 1823, 1, 2161, 1, 367649, 1, 1, 92831, 10069, 46723, 375017, 94063, 53927, 6763, 6229, 7331, 382457, 47963, 1, 1, 55351, 48589, 1439, 2081, 392489, 1, 56431, 14153, 1, 49853, 7549, 100343, 659, 7213, 1, 673, 1, 51133, 410353, 102911, 58991, 1, 2153, 104207, 418129, 1, 420737, 15073, 1, 1, 425977, 106823, 3793, 1, 677, 2207, 1613, 54403, 33581, 109471, 439217, 7867, 63127, 110807, 444569, 1, 447257, 8627, 64279, 8059, 9631, 8731, 691, 1543, 3607, 1, 65831, 57773, 1481, 2473, 35869, 1, 1811, 1, 36293, 59149, 701, 1, 1, 1, 1, 120383, 1459, 4657, 485729, 1, 1, 1, 491353, 123191, 1879, 61949, 709, 2543, 1, 62659, 38669, 126031, 6091, 1, 1, 1, 511289, 64091, 8429, 128903, 3947, 1, 74279, 1, 522857, 65539, 525769, 10139, 75527, 9467, 11311, 133271, 534553, 67003, 537497, 19249, 5939, 67741, 10253, 136223, 1, 68483, 78479, 1, 1, 1, 1, 1, 1, 769, 80191, 3803, 564353, 5441, 567377, 142223, 1663, 1, 5261, 143743, 15581, 72253, 1, 20753, 83231, 73019, 45053, 146807, 12527, 1, 84551, 21193, 594953, 1, 598057, 1, 7243, 1, 1, 1, 607417, 76123, 610553, 1, 87671, 10987, 616849, 1, 1, 77699, 4127, 1, 6883, 1, 629537, 1901, 6143, 2143, 90847, 22769, 639137, 1, 1, 809, 645577, 1, 13241, 1, 4691, 1, 1, 164231, 94079, 11789, 50909, 3529, 665089, 83341, 51413, 23929, 1, 84163, 674953, 169151, 14431, 2297, 97367, 1877, 684889, 85819, 688217, 13267, 691553, 12379, 2683, 174143, 698249, 87491, 701609, 911, 1, 12619, 708353, 177511, 1, 1, 1, 25601, 102647, 1, 1723, 1, 6779, 6991, 1, 3727, 732209, 7057, 735649, 2221, 1, 13229, 1, 186071, 746017, 1, 57653, 1, 1, 13477, 58189, 1, 759953, 95213, 763457, 27329, 109567, 1, 9283, 14851, 774017, 96973, 1, 2141, 2251, 97859, 784649, 1, 788209, 14107, 113111, 198391, 1, 99643, 798937, 200183, 8819, 1, 806129, 1, 809737, 1, 8053, 4159, 16673, 7873, 820609, 205607, 22277, 1, 1, 29633, 831553, 104173, 835217, 209263, 838889, 15013, 1, 1, 7489, 106013, 65381, 3491, 121951, 15277, 857369, 214807, 861089, 1, 864817, 2381, 977, 108803, 4567, 16811, 23677, 109741, 125687, 31489, 883577, 1, 10691, 222311, 5273, 1, 1, 1, 1, 1, 17029, 1, 1, 1, 910177, 228023, 19447, 8807, 917849, 1, 131671, 1, 15173, 231871, 929417, 2477, 133327, 1, 1, 117389, 1, 235751, 944953, 1, 10427, 1, 8741, 1, 956689, 1, 1, 17189, 1, 18587, 15877, 121309, 1, 2677, 139487, 122299, 980377, 245591, 984353, 1, 1, 1, 76333, 124291, 996329, 249583, 76949, 2557, 1, 1, 3181, 2383, 4421, 253607, 145207, 1, 27581, 2531, 21799, 9871, 1028617, 36809, 1, 129341, 1036769, 7019, 1040857, 130363, 11483, 1, 1049057, 1, 81013, 1, 1, 18917, 151631, 265871, 5521, 1, 1069697, 20611, 153407, 19213, 1078009, 20771, 1082177, 135533, 1086353, 38873, 1, 2239, 5557, 7411, 84533, 1, 1, 5639, 1, 138683, 1111577, 1, 1, 19963, 3019, 1, 1124297, 10831, 1128553, 282671, 161831, 1, 10627, 284807, 10667, 142939, 2857, 40993,

6. Sequence of the polynom (only primes)

47, 13, 257, 103, 569, 7, 127, 263, 1217, 173, 1553, 431, 271, 37, 607, 2609, 349, 229, 113, 479, 443, 101, 983, 4129, 541, 647, 4937, 643, 53, 107, 109, 887, 1607, 61, 859, 151, 1831, 83, 139, 8017, 2063, 653, 1091, 8969, 193, 1213, 269, 2551, 10457, 1567, 401, 11489, 197, 12553, 1871, 3343, 13649, 1741, 1093, 3623, 2111, 1181, 3911, 15937, 2029, 16529, 601, 2447, 2179, 17737, 347, 18353, 2333, 2711, 19609, 20249, 20897, 379, 3079, 5471, 1709, 2819, 487, 5807, 191, 6151, 24953, 3163, 25657, 929, 3767, 6863, 27817, 4079, 1033, 29297, 3709, 199, 7607, 30809, 557, 131, 32353, 4093, 2549, 613, 34729, 8783, 35537, 4493, 36353, 739, 733, 4909, 1433, 499, 10463, 3253, 881, 10903, 3389, 5563, 44953, 11351, 6551, 827, 46769, 11807, 463, 797, 1753, 7079, 50497, 12743, 51449, 6491, 7487, 1889, 53377, 6733, 13711, 55337, 997, 619, 14207, 57329, 7229, 58337, 313, 1069, 1171, 61409, 7741, 317, 64553, 307, 65617, 8269, 1361, 8539, 1861, 17351, 5381, 1259, 10151, 17903, 72169, 9091, 883, 10631, 75553, 19031, 76697, 743, 77849, 2801, 11287, 9949, 80177, 331, 81353, 10243, 907, 2969, 829, 21383, 86137, 1549, 12479, 21991, 877, 11149, 89809, 13007, 1637, 92297, 1787, 93553, 1789, 97369, 7589, 12413, 3593, 7789, 12739, 941, 103889, 1867, 15031, 839, 1031, 107897, 27143, 15607, 110609, 27823, 111977, 14083, 4073, 8933, 29207, 117529, 14779, 1307, 4273, 1973, 409, 2591, 123209, 2213, 17807, 2411, 126097, 2467, 2633, 130489, 131969, 421, 4793, 1483, 16963, 2237, 34303, 10613, 17341, 19927, 5009, 1699, 142553, 35831, 1399, 20807, 36607, 147209, 1423, 4021, 457, 2699, 151937, 38183, 153529, 11933, 5569, 22391, 419, 937, 39791, 159977, 23087, 5801, 163249, 20509, 3187, 1103, 3433, 3251, 169889, 21341, 4637, 43103, 467, 3109, 3301, 43951, 22189, 1667, 1979, 22619, 1609, 1061, 23053, 187049, 1009, 190577, 27479, 48311, 2339, 24379, 195929, 49207, 3547, 15349, 50111, 15629, 29287, 25741, 1579, 208697, 26203, 4297, 5741, 26669, 509, 4139, 1913, 3877, 31151, 54751, 219953, 521, 3637, 1051, 2459, 4013, 225689, 56663, 17509, 28573, 229553, 8233, 33071, 29059, 4967, 1559, 2273, 33911, 8513, 6469, 2311, 241337, 1289, 3989, 4363, 61583, 247337, 19181, 62591, 35911, 4507, 63607, 547, 32059, 257497, 1319, 5297, 32573, 5051, 577, 33091, 37967, 267857, 33613, 269953, 67751, 1381, 4877, 2003, 3083, 282697, 1163, 7757, 10289, 2791, 6199, 2693, 2833, 10601, 1301, 37379, 300137, 593, 1583, 5419, 3347, 76423, 306809, 631, 23773, 77543, 6353, 313553, 39619, 8597, 45767, 40189, 324953, 40763, 46751, 2371, 41341, 331889, 1571, 48079, 84431, 42509, 2687, 85607, 3359, 348353, 3361, 350737, 12569, 3407, 355529, 2069, 44893, 51479, 1823, 2161, 367649, 92831, 10069, 46723, 375017, 94063, 53927, 6763, 6229, 7331, 382457, 47963, 55351, 48589, 1439, 2081, 392489, 56431, 14153, 49853, 7549, 100343, 659, 7213, 673, 51133, 410353, 102911, 58991, 2153, 104207, 418129, 420737, 15073, 425977, 106823, 3793, 677, 2207, 1613, 54403, 33581, 109471, 439217, 7867, 63127, 110807, 444569, 447257, 8627, 64279, 8059, 9631, 8731, 691, 1543, 3607, 65831, 57773, 1481, 2473, 35869, 1811, 36293, 59149, 701, 120383, 1459, 4657, 485729, 491353, 123191, 1879, 61949, 709, 2543, 62659, 38669, 126031, 6091, 511289, 64091, 8429, 128903, 3947, 74279, 522857, 65539, 525769, 10139, 75527, 9467, 11311, 133271, 534553, 67003, 537497, 19249, 5939, 67741, 10253, 136223, 68483, 78479, 769, 80191, 3803, 564353, 5441, 567377, 142223, 1663, 5261, 143743, 15581, 72253, 20753, 83231, 73019, 45053, 146807, 12527, 84551, 21193, 594953, 598057, 7243, 607417, 76123, 610553, 87671, 10987, 616849, 77699, 4127, 6883, 629537, 1901, 6143, 2143, 90847, 22769, 639137, 809, 645577, 13241, 4691, 164231, 94079, 11789, 50909, 3529, 665089, 83341, 51413, 23929, 84163, 674953, 169151, 14431, 2297, 97367, 1877, 684889, 85819, 688217, 13267, 691553, 12379, 2683, 174143, 698249, 87491, 701609, 911, 12619, 708353, 177511, 25601, 102647, 1723, 6779, 6991, 3727, 732209, 7057, 735649, 2221, 13229, 186071, 746017, 57653, 13477, 58189, 759953, 95213, 763457, 27329, 109567, 9283, 14851, 774017, 96973, 2141, 2251, 97859, 784649, 788209, 14107, 113111, 198391, 99643, 798937, 200183, 8819, 806129, 809737, 8053, 4159, 16673, 7873, 820609, 205607, 22277, 29633, 831553, 104173, 835217, 209263, 838889, 15013, 7489, 106013, 65381, 3491, 121951, 15277, 857369, 214807, 861089, 864817, 2381, 977, 108803, 4567, 16811, 23677, 109741, 125687, 31489, 883577, 10691, 222311, 5273, 17029, 910177, 228023, 19447, 8807, 917849, 131671, 15173, 231871, 929417, 2477, 133327, 117389, 235751, 944953, 10427, 8741, 956689, 17189, 18587, 15877, 121309, 2677, 139487, 122299, 980377, 245591, 984353, 76333, 124291, 996329, 249583, 76949, 2557, 3181, 2383, 4421, 253607, 145207, 27581, 2531, 21799, 9871, 1028617, 36809, 129341, 1036769, 7019, 1040857, 130363, 11483, 1049057, 81013, 18917, 151631, 265871, 5521, 1069697, 20611, 153407, 19213, 1078009, 20771, 1082177, 135533, 1086353, 38873, 2239, 5557, 7411, 84533, 5639, 138683, 1111577, 19963, 3019, 1124297, 10831, 1128553, 282671, 161831, 10627, 284807, 10667, 142939, 2857, 40993,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+150x-47 and
the reducible primes which appear as divisor for the first time
p | x^2+150x-47 and p < x^2+150x-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
21008351320.8300000.5100000.8300008.3000005.66666732.000000
31.0007303513790.7300000.3510000.7300008.7951806.88235311.843750
410.0007.1112.5014.6100.7111000.2501000.7111009.7410967.12535612.163589
5100.00070.63819.32551.3130.7063800.1932500.7063809.9336247.72690911.130802
61.000.000703.663157.159546.5040.7036630.1571590.7036639.9615368.13242010.650400
710.000.0007.020.9841.321.0435.699.9410.7020980.1321040.7020989.9777658.40577410.429825
8100.000.00070.077.39611.396.86758.680.5290.7007740.1139690.7007749.9811358.62717310.294936
91.000.000.000699.799.799100.255.556599.544.2430.6998000.1002560.6998009.9860998.79676410.217091
1010.000.000.0006.990.356.908894.919.1646.095.437.7440.6990360.0894920.6990369.9890818.92638010.166785


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
416151230.9375000.7500000.1875001.8750001.7142863.000000
5322919100.9062500.5937500.3125001.9333331.5833333.333333
6645433210.8437500.5156250.3281251.8620691.7368422.100000
712810364390.8046880.5000000.3046881.9074071.9393941.857143
8256197115820.7695310.4492190.3203121.9126211.7968752.102564
95123831941890.7480470.3789060.3691411.9441621.6869572.304878
101.0247473633840.7294920.3544920.3750001.9503921.8711342.031746
112.0481.4676458220.7163090.3149410.4013671.9638551.7768602.140625
124.0962.9361.1591.7770.7167970.2829590.4338382.0013631.7968992.161800
138.1925.8372.0983.7390.7125240.2561040.4564211.9880791.8101812.104108
1416.38411.6553.8847.7710.7113650.2370610.4743041.9967451.8512872.078363
1532.76823.2377.09016.1470.7091370.2163700.4927671.9937371.8254382.077853
1665.53646.32113.18533.1360.7068020.2011870.5056151.9934161.8596612.052146
17131.07292.54224.63067.9120.7060390.1879120.5181271.9978411.8680322.049493
18262.144184.80946.173138.6360.7049900.1761360.5288541.9970281.8746652.041407
19524.288369.19786.889282.3080.7041870.1657280.5384601.9977221.8818142.036325
201.048.576737.801164.143573.6580.7036220.1565390.5470831.9983941.8891112.032029
212.097.1521.474.648310.5171.164.1310.7031670.1480660.5551011.9987071.8917472.029312
224.194.3042.946.636589.5632.357.0730.7025330.1405630.5619701.9981961.8986502.024749
238.388.6085.890.7421.121.6704.769.0720.7022310.1337130.5685181.9991411.9025452.023303
2416.777.21611.772.7652.140.0959.632.6700.7017110.1275600.5741521.9985201.9079542.019821
2533.554.43223.532.3254.090.88619.441.4390.7013180.1219180.5794001.9988781.9115442.018281
2667.108.86447.041.2457.834.01239.207.2330.7009690.1167360.5842331.9990051.9149912.016684
27134.217.72894.036.86315.035.06679.001.7970.7006290.1120200.5886091.9990301.9192042.014980
28268.435.456187.989.95728.896.081159.093.8760.7003170.1076460.5926711.9991091.9219122.013801
29536.870.912375.829.00855.631.554320.197.4540.7000360.1036220.5964141.9991971.9252282.012632
301.073.741.824751.378.641107.248.253644.130.3880.6997760.0998830.5998931.9992571.9278312.011666
312.147.483.6481.502.230.003207.026.6361.295.203.3670.6995300.0964040.6031261.9992981.9303502.010778
324.294.967.2963.003.456.767400.134.3842.603.322.3830.6992970.0931640.6061331.9993321.9327682.009972
338.589.934.5926.005.067.363774.212.1705.230.855.1930.6990820.0901300.6089521.9993851.9348802.009300
3417.179.869.18412.006.682.5601.499.684.37310.506.998.1870.6988810.0872930.6115881.9994251.9370462.008658


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
123121011
245232012
387253013
41612395025
532197127246
664331419134511
71286428362871019
8256115526352131931
95121948610885253153
101.024363155208168485394
112.0486452753702988392172
124.0961.159476683531153163312
138.1922.0988851.213976279287556
1416.3843.8841.6412.2431.8275315211.005
1532.7687.0902.9794.1113.3409789441.828
1665.53613.1855.5477.6386.2891.7641.7463.386
17131.07224.63010.38314.24711.7973.2553.2126.366
18262.14446.17319.43826.73522.1136.0826.11611.862
19524.28886.88936.57450.31541.76311.41611.41822.292
201.048.576164.14369.10895.03579.17121.56621.53841.868
212.097.152310.517130.616179.901150.11540.73340.83978.830
224.194.304589.563247.666341.897285.57476.97477.063149.952
238.388.6081.121.670471.149650.521543.855146.337146.093285.385
2416.777.2162.140.095898.7261.241.3691.039.623278.880277.963543.629
2533.554.4324.090.8861.718.0112.372.8751.990.092531.748530.6471.038.399
2667.108.8647.834.0123.289.3404.544.6723.813.2671.015.9271.016.1051.988.713
27134.217.72815.035.0666.308.9738.726.0937.325.1011.946.2561.947.9333.815.776
28268.435.45628.896.08112.120.21216.775.86914.094.8273.736.0203.737.5287.327.706
29536.870.91255.631.55423.329.40232.302.15227.162.7727.184.5697.185.86414.098.349
301.073.741.824107.248.25344.969.69062.278.56352.414.20813.835.29013.834.83527.163.920
312.147.483.648207.026.63686.793.674120.232.962101.262.26626.675.48026.678.01952.410.871
324.294.967.296400.134.384167.714.832232.419.552195.854.93251.505.32851.511.259101.262.865
338.589.934.592774.212.170324.446.680449.765.490379.227.14999.558.75899.570.821195.855.442
3417.179.869.1841.499.684.373628.356.227871.328.146735.076.499192.681.502192.682.193379.244.179


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
381100001
4163300012
53210551144
664219123378
7128391623651315
825682354714142925
95121897711236415755
101.0243841682167187109117
112.048822367455167202219234
124.0961.777818959387443461486
138.1923.7391.7501.989823928989999
1416.3847.7713.6504.1211.7421.9152.0112.103
1532.76816.1477.6338.5143.7443.9484.1544.301
1665.53633.13615.87717.2597.7747.9918.5838.788
17131.07267.91232.59735.31516.08916.33017.59317.900
18262.144138.63666.95771.67932.94433.66535.59636.431
19524.288282.308136.473145.83567.27768.56572.26974.197
201.048.576573.658277.958295.700136.847139.501147.261150.049
212.097.1521.164.131565.204598.927278.898283.929297.701303.603
224.194.3042.357.0731.147.0201.210.053565.731575.339602.575613.428
238.388.6084.769.0722.324.8202.444.2521.146.3071.166.6791.217.8631.238.223
2416.777.2169.632.6704.701.4114.931.2592.323.5092.357.7542.454.9042.496.503
2533.554.43219.441.4399.503.3969.938.0434.698.0534.764.9084.949.6075.028.871
2667.108.86439.207.23319.188.81520.018.4189.488.6489.615.8309.974.41810.128.337
27134.217.72879.001.79738.706.42840.295.36919.153.25419.391.67420.079.14420.377.725
28268.435.456159.093.87678.033.53881.060.33838.627.18839.085.69640.405.41640.975.576
29536.870.912320.197.454157.188.930163.008.52477.842.46078.732.76381.258.30182.363.930
301.073.741.824644.130.388316.467.104327.663.284156.795.077158.471.134163.357.370165.506.807
312.147.483.6481.295.203.367636.806.312658.397.055315.637.707318.844.419328.273.263332.447.978
324.294.967.2962.603.322.3831.280.796.0141.322.526.369635.067.575641.214.515659.477.059667.563.234
338.589.934.5925.230.855.1932.575.046.7702.655.808.4231.277.235.0011.289.079.8171.324.394.5141.340.145.861
3417.179.869.18410.506.998.1875.175.345.2255.331.652.9622.567.774.9532.590.599.9772.658.941.0622.689.682.195


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 13, 257, 103, 569, 7, 127, 263, 1217, 173, 1553, 431, 271, 37, 1, 607, 2609, 349, 229, 113,
Found in Database : 47, 13, 257, 103, 569, 7, 127, 263, 1217, 173, 1553, 431, 271, 37, 607, 2609, 349, 229, 113, 479, 443, 101, 983, 4129, 541, 647, 4937, 643, 53, 107, 109, 887, 1607, 61, 859, 151, 1831,
Found in Database : 7, 13, 37, 47, 53, 61, 83, 101, 103, 107, 109, 113, 127, 131, 139,