Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:53:54
Deutsch
20.Apr 2024

Polynom = x^2+33x-101

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) = 101 = 101
f(1) = 67 = 67
f(2) = 31 = 31
f(3) = 7 = 7
f(4) = 47 = 47
f(5) = 89 = 89
f(6) = 133 = 7*19
f(7) = 179 = 179
f(8) = 227 = 227
f(9) = 277 = 277
f(10) = 329 = 7*47
f(11) = 383 = 383
f(12) = 439 = 439
f(13) = 497 = 7*71
f(14) = 557 = 557
f(15) = 619 = 619
f(16) = 683 = 683
f(17) = 749 = 7*107
f(18) = 817 = 19*43
f(19) = 887 = 887
f(20) = 959 = 7*137
f(21) = 1033 = 1033
f(22) = 1109 = 1109
f(23) = 1187 = 1187
f(24) = 1267 = 7*181
f(25) = 1349 = 19*71
f(26) = 1433 = 1433
f(27) = 1519 = 7*7*31
f(28) = 1607 = 1607
f(29) = 1697 = 1697
f(30) = 1789 = 1789
f(31) = 1883 = 7*269
f(32) = 1979 = 1979
f(33) = 2077 = 31*67
f(34) = 2177 = 7*311
f(35) = 2279 = 43*53
f(36) = 2383 = 2383
f(37) = 2489 = 19*131
f(38) = 2597 = 7*7*53
f(39) = 2707 = 2707
f(40) = 2819 = 2819
f(41) = 2933 = 7*419
f(42) = 3049 = 3049
f(43) = 3167 = 3167
f(44) = 3287 = 19*173
f(45) = 3409 = 7*487
f(46) = 3533 = 3533
f(47) = 3659 = 3659
f(48) = 3787 = 7*541
f(49) = 3917 = 3917
f(50) = 4049 = 4049
f(51) = 4183 = 47*89
f(52) = 4319 = 7*617
f(53) = 4457 = 4457
f(54) = 4597 = 4597
f(55) = 4739 = 7*677
f(56) = 4883 = 19*257
f(57) = 5029 = 47*107
f(58) = 5177 = 31*167
f(59) = 5327 = 7*761
f(60) = 5479 = 5479
f(61) = 5633 = 43*131
f(62) = 5789 = 7*827
f(63) = 5947 = 19*313
f(64) = 6107 = 31*197
f(65) = 6269 = 6269
f(66) = 6433 = 7*919
f(67) = 6599 = 6599
f(68) = 6767 = 67*101
f(69) = 6937 = 7*991
f(70) = 7109 = 7109
f(71) = 7283 = 7283
f(72) = 7459 = 7459
f(73) = 7637 = 7*1091
f(74) = 7817 = 7817
f(75) = 7999 = 19*421
f(76) = 8183 = 7*7*167
f(77) = 8369 = 8369
f(78) = 8557 = 43*199
f(79) = 8747 = 8747
f(80) = 8939 = 7*1277
f(81) = 9133 = 9133
f(82) = 9329 = 19*491
f(83) = 9527 = 7*1361
f(84) = 9727 = 71*137
f(85) = 9929 = 9929
f(86) = 10133 = 10133
f(87) = 10339 = 7*7*211
f(88) = 10547 = 53*199
f(89) = 10757 = 31*347
f(90) = 10969 = 7*1567
f(91) = 11183 = 53*211
f(92) = 11399 = 11399
f(93) = 11617 = 11617
f(94) = 11837 = 7*19*89
f(95) = 12059 = 31*389
f(96) = 12283 = 71*173
f(97) = 12509 = 7*1787
f(98) = 12737 = 47*271
f(99) = 12967 = 12967
f(100) = 13199 = 67*197

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+33x-101

f(0)=101
f(1)=67
f(2)=31
f(3)=7
f(4)=47
f(5)=89
f(6)=19
f(7)=179
f(8)=227
f(9)=277
f(10)=1
f(11)=383
f(12)=439
f(13)=71
f(14)=557
f(15)=619
f(16)=683
f(17)=107
f(18)=43
f(19)=887
f(20)=137
f(21)=1033
f(22)=1109
f(23)=1187
f(24)=181
f(25)=1
f(26)=1433
f(27)=1
f(28)=1607
f(29)=1697
f(30)=1789
f(31)=269
f(32)=1979
f(33)=1
f(34)=311
f(35)=53
f(36)=2383
f(37)=131
f(38)=1
f(39)=2707
f(40)=2819
f(41)=419
f(42)=3049
f(43)=3167
f(44)=173
f(45)=487
f(46)=3533
f(47)=3659
f(48)=541
f(49)=3917
f(50)=4049
f(51)=1
f(52)=617
f(53)=4457
f(54)=4597
f(55)=677
f(56)=257
f(57)=1
f(58)=167
f(59)=761
f(60)=5479
f(61)=1
f(62)=827
f(63)=313
f(64)=197
f(65)=6269
f(66)=919
f(67)=6599
f(68)=1
f(69)=991
f(70)=7109
f(71)=7283
f(72)=7459
f(73)=1091
f(74)=7817
f(75)=421
f(76)=1
f(77)=8369
f(78)=199
f(79)=8747
f(80)=1277
f(81)=9133
f(82)=491
f(83)=1361
f(84)=1
f(85)=9929
f(86)=10133
f(87)=211
f(88)=1
f(89)=347
f(90)=1567
f(91)=1
f(92)=11399
f(93)=11617
f(94)=1
f(95)=389
f(96)=1
f(97)=1787
f(98)=271
f(99)=12967

b) Substitution of the polynom
The polynom f(x)=x^2+33x-101 could be written as f(y)= y^2-373.25 with x=y-16.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+16.5
f'(x)>2x+32

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

101, 67, 31, 7, 47, 89, 19, 179, 227, 277, 1, 383, 439, 71, 557, 619, 683, 107, 43, 887, 137, 1033, 1109, 1187, 181, 1, 1433, 1, 1607, 1697, 1789, 269, 1979, 1, 311, 53, 2383, 131, 1, 2707, 2819, 419, 3049, 3167, 173, 487, 3533, 3659, 541, 3917, 4049, 1, 617, 4457, 4597, 677, 257, 1, 167, 761, 5479, 1, 827, 313, 197, 6269, 919, 6599, 1, 991, 7109, 7283, 7459, 1091, 7817, 421, 1, 8369, 199, 8747, 1277, 9133, 491, 1361, 1, 9929, 10133, 211, 1, 347, 1567, 1, 11399, 11617, 1, 389, 1, 1787, 271, 12967, 1, 1, 13669, 13907, 1, 14389, 14633, 14879, 2161, 15377, 15629, 2269, 16139, 863, 16657, 2417, 17183, 17449, 2531, 17987, 1, 431, 2687, 19087, 1, 401, 643, 20219, 20507, 2971, 21089, 21383, 163, 21977, 22277, 337, 467, 23189, 23497, 1, 1, 461, 24749, 3581, 479, 547, 3719, 613, 26687, 27017, 3907, 1, 28019, 4051, 28697, 409, 29383, 1, 1583, 30427, 4397, 191, 31489, 31847, 1, 32569, 32933, 1, 1, 1, 1811, 4969, 35159, 35537, 733, 36299, 36683, 1951, 5351, 37847, 38239, 5519, 1259, 443, 39827, 821, 1, 41039, 1, 2203, 983, 42683, 1, 43517, 829, 6337, 2357, 853, 971, 6581, 46499, 46933, 1, 47807, 48247, 1, 7019, 1153, 2633, 7211, 50929, 51383, 51839, 241, 52757, 2801, 7669, 1, 54617, 1777, 7937, 1, 56509, 1163, 57467, 1, 823, 1, 59407, 673, 8627, 569, 61379, 1439, 1, 1, 263, 9127, 907, 1381, 65419, 9419, 66449, 1, 1, 1447, 3607, 1303, 9941, 70117, 1, 10169, 71719, 3803, 72797, 10477, 73883, 283, 10711, 75527, 76079, 1, 11027, 77747, 78307, 593, 79433, 79999, 80567, 1, 809, 769, 1, 83437, 84017, 2729, 1, 1, 86357, 12421, 87539, 2843, 88729, 1823, 4733, 90529, 1, 1, 92347, 92957, 13367, 4957, 2017, 317, 701, 1, 97283, 1, 1, 757, 1, 1499, 1, 1, 14621, 1, 3343, 14897, 331, 1487, 5591, 15269, 3469, 1, 15551, 109519, 110183, 110849, 1, 2609, 112859, 1, 6011, 877, 709, 16607, 116933, 117619, 16901, 6263, 119689, 120383, 353, 2591, 122477, 17597, 1, 4019, 1171, 1, 126719, 1, 18307, 4157, 129587, 1, 18719, 131759, 367, 19031, 133949, 134683, 1, 1, 136897, 137639, 373, 1, 1021, 140627, 1063, 1597, 3323, 20521, 144407, 811, 145933, 1103, 1, 1, 3041, 1483, 150559, 151337, 1, 152899, 1, 22067, 1451, 1, 1, 3217, 158429, 159227, 22861, 160829, 1, 162439, 23321, 164057, 953, 23669, 997, 167317, 1, 24137, 169783, 170609, 1289, 5557, 173099, 173933, 24967, 2621, 1747, 1, 3361, 2011, 179827, 1, 1087, 1, 26177, 1, 184957, 185819, 26669, 9871, 188417, 3863, 190159, 191033, 4463, 27541, 10193, 1, 27919, 4177, 197207, 198097, 1, 1459, 200779, 1, 202577, 3037, 1, 29327, 206197, 2917, 29717, 208933, 1213, 11093, 30241, 1987, 213533, 30637, 5009, 216317, 2441, 1, 219119, 220057, 1, 11681, 222883, 223829, 1, 4259, 1, 1049, 1, 229547, 230507, 1, 232433, 7529, 4783, 235337, 3527, 237283, 1, 239237, 1, 34457, 1217, 1009, 244157, 5003, 5237, 13007, 35447, 249127, 1, 2347, 1, 1553, 254147, 36451, 256169, 5981, 8329, 1949, 1321, 1907, 1, 1471, 8527, 1, 2003, 267433, 4007, 38501, 270547, 2689, 1, 39097, 6389, 1307, 1, 277883, 1, 1327, 40151, 5323, 283183, 5801, 285317, 15073, 1093, 1, 4079, 9377, 41681, 292849, 1, 6277, 6043, 9587, 1, 2251, 1, 301577, 7039, 43397, 304883, 4567, 2309, 3463, 1, 310433, 44507, 1637, 1753, 44987, 316033, 317159, 318287, 45631, 16871, 7481, 1, 323957, 10487, 1, 46769, 17291, 329677, 1, 10709, 2543, 334289, 1, 1, 6373, 6917, 1879, 1, 1, 1, 1, 1, 1, 7411, 349499, 18457, 1, 353057, 354247, 50777, 5023, 357829, 359027, 51461, 1, 362633, 51977, 19213, 1, 367469, 1699, 3457, 5227, 1237, 19661, 374783, 376009, 53891, 378467, 379699, 54419, 1, 1, 5741, 55127, 3833, 20441, 55661, 390877, 1, 393383, 56377, 395897, 20903, 1, 12893, 400949, 7589, 57641, 9413, 1, 1877, 1, 409867, 1297, 1, 413719, 4663, 59471, 1, 418883, 3067, 3169, 1, 424079, 1, 9923, 427997, 1, 1, 431933, 433249, 62081, 1, 23011, 438533, 2027, 441187, 442517, 1, 445183, 1, 14447, 64171, 2287, 1453, 64747, 454577, 4261, 457279, 65519, 9787, 10729, 1, 464069, 465433, 2579, 1423, 1, 1, 1, 473659, 475037, 1, 1, 2677, 480569, 2221, 483347, 11273, 486133, 1, 25733, 15817, 1, 493133, 494539, 495947, 1, 26251, 2539, 1, 503017, 1429, 2099, 72469, 508709, 510137, 1, 512999, 514433, 1, 1, 518747, 3797, 1733, 5179, 1, 1, 75347, 528883, 530339, 10853, 533257, 1, 4093, 1, 2237, 540587, 1, 28607, 1, 1, 1, 549449, 3299, 1489, 29153, 1, 1493, 79769, 1, 561377, 1, 7949, 3271, 567389, 1, 570407, 1, 81919, 574949, 2143, 3461, 82787, 18743, 30661, 1, 13619, 587149, 588683, 84317, 591757, 593297, 84977, 12689, 597929, 599477, 4519, 1, 3163, 1, 6823, 1, 1, 1, 613499, 615067, 1, 9227, 19993, 621359, 12713, 624517, 6199, 89669, 1, 33203, 632447, 1709, 1, 637229, 1, 3929, 33791, 643633, 92177, 3739, 2341, 92867, 651683, 15193, 654917, 1, 658159, 659783, 4973, 663037, 664667, 1, 95419, 21599, 14281, 5059, 10067, 1, 677779, 1, 1, 682729, 13967, 686039, 4219, 689357, 98717, 36457, 694349, 99431, 697687, 1, 701033, 14341, 1, 706067, 101107, 709433, 2767, 712807, 102071, 13513, 717883, 102797, 1, 722977, 1, 103769, 10867, 2713, 3371, 2647, 734933, 1, 1, 740087, 741809, 106219, 5689, 4127, 748717, 2281, 752183, 1, 107951, 39863, 4241, 16189, 108947, 1, 766127, 15671, 40507, 771389, 773147, 3571, 10939, 2503, 1, 781967, 783737, 25339, 16067, 11777, 1, 1, 794399, 7883, 11239, 2657, 1913, 42281, 115019, 806929, 15259, 4073, 116047, 15361, 815939, 1, 1, 1871, 823183, 6203, 4951, 828637, 1, 1, 17747, 835937, 6299, 839599, 27143, 1, 17981, 12641, 848789, 1, 1, 854327, 1, 858029, 1, 861739, 1, 865457, 867319, 1, 2069, 45943, 2521, 17891, 20431, 880409, 126041, 884167, 4639, 28643, 1, 891707, 4937, 6733, 4253, 29009, 901177, 129011, 4289, 1, 6833, 21179, 1, 914519, 1, 2897, 920267, 2803, 924109, 926033, 5693, 1, 49043, 19867, 133669, 4909, 3467, 7187, 134777, 49757, 30559, 19373, 3947, 953179, 5521, 136727, 30937, 22349, 137567, 964933, 3109, 50993, 19813, 2939, 14549, 139537, 2393, 980717, 51721, 1, 9769, 7547, 1, 9277, 23131, 996629, 1, 11243, 1, 143519, 52981, 32537, 19069, 144667, 21589, 19183, 145531, 1, 1, 1024783, 3121, 1028837, 1030867,

6. Sequence of the polynom (only primes)

101, 67, 31, 7, 47, 89, 19, 179, 227, 277, 383, 439, 71, 557, 619, 683, 107, 43, 887, 137, 1033, 1109, 1187, 181, 1433, 1607, 1697, 1789, 269, 1979, 311, 53, 2383, 131, 2707, 2819, 419, 3049, 3167, 173, 487, 3533, 3659, 541, 3917, 4049, 617, 4457, 4597, 677, 257, 167, 761, 5479, 827, 313, 197, 6269, 919, 6599, 991, 7109, 7283, 7459, 1091, 7817, 421, 8369, 199, 8747, 1277, 9133, 491, 1361, 9929, 10133, 211, 347, 1567, 11399, 11617, 389, 1787, 271, 12967, 13669, 13907, 14389, 14633, 14879, 2161, 15377, 15629, 2269, 16139, 863, 16657, 2417, 17183, 17449, 2531, 17987, 431, 2687, 19087, 401, 643, 20219, 20507, 2971, 21089, 21383, 163, 21977, 22277, 337, 467, 23189, 23497, 461, 24749, 3581, 479, 547, 3719, 613, 26687, 27017, 3907, 28019, 4051, 28697, 409, 29383, 1583, 30427, 4397, 191, 31489, 31847, 32569, 32933, 1811, 4969, 35159, 35537, 733, 36299, 36683, 1951, 5351, 37847, 38239, 5519, 1259, 443, 39827, 821, 41039, 2203, 983, 42683, 43517, 829, 6337, 2357, 853, 971, 6581, 46499, 46933, 47807, 48247, 7019, 1153, 2633, 7211, 50929, 51383, 51839, 241, 52757, 2801, 7669, 54617, 1777, 7937, 56509, 1163, 57467, 823, 59407, 673, 8627, 569, 61379, 1439, 263, 9127, 907, 1381, 65419, 9419, 66449, 1447, 3607, 1303, 9941, 70117, 10169, 71719, 3803, 72797, 10477, 73883, 283, 10711, 75527, 76079, 11027, 77747, 78307, 593, 79433, 79999, 80567, 809, 769, 83437, 84017, 2729, 86357, 12421, 87539, 2843, 88729, 1823, 4733, 90529, 92347, 92957, 13367, 4957, 2017, 317, 701, 97283, 757, 1499, 14621, 3343, 14897, 331, 1487, 5591, 15269, 3469, 15551, 109519, 110183, 110849, 2609, 112859, 6011, 877, 709, 16607, 116933, 117619, 16901, 6263, 119689, 120383, 353, 2591, 122477, 17597, 4019, 1171, 126719, 18307, 4157, 129587, 18719, 131759, 367, 19031, 133949, 134683, 136897, 137639, 373, 1021, 140627, 1063, 1597, 3323, 20521, 144407, 811, 145933, 1103, 3041, 1483, 150559, 151337, 152899, 22067, 1451, 3217, 158429, 159227, 22861, 160829, 162439, 23321, 164057, 953, 23669, 997, 167317, 24137, 169783, 170609, 1289, 5557, 173099, 173933, 24967, 2621, 1747, 3361, 2011, 179827, 1087, 26177, 184957, 185819, 26669, 9871, 188417, 3863, 190159, 191033, 4463, 27541, 10193, 27919, 4177, 197207, 198097, 1459, 200779, 202577, 3037, 29327, 206197, 2917, 29717, 208933, 1213, 11093, 30241, 1987, 213533, 30637, 5009, 216317, 2441, 219119, 220057, 11681, 222883, 223829, 4259, 1049, 229547, 230507, 232433, 7529, 4783, 235337, 3527, 237283, 239237, 34457, 1217, 1009, 244157, 5003, 5237, 13007, 35447, 249127, 2347, 1553, 254147, 36451, 256169, 5981, 8329, 1949, 1321, 1907, 1471, 8527, 2003, 267433, 4007, 38501, 270547, 2689, 39097, 6389, 1307, 277883, 1327, 40151, 5323, 283183, 5801, 285317, 15073, 1093, 4079, 9377, 41681, 292849, 6277, 6043, 9587, 2251, 301577, 7039, 43397, 304883, 4567, 2309, 3463, 310433, 44507, 1637, 1753, 44987, 316033, 317159, 318287, 45631, 16871, 7481, 323957, 10487, 46769, 17291, 329677, 10709, 2543, 334289, 6373, 6917, 1879, 7411, 349499, 18457, 353057, 354247, 50777, 5023, 357829, 359027, 51461, 362633, 51977, 19213, 367469, 1699, 3457, 5227, 1237, 19661, 374783, 376009, 53891, 378467, 379699, 54419, 5741, 55127, 3833, 20441, 55661, 390877, 393383, 56377, 395897, 20903, 12893, 400949, 7589, 57641, 9413, 1877, 409867, 1297, 413719, 4663, 59471, 418883, 3067, 3169, 424079, 9923, 427997, 431933, 433249, 62081, 23011, 438533, 2027, 441187, 442517, 445183, 14447, 64171, 2287, 1453, 64747, 454577, 4261, 457279, 65519, 9787, 10729, 464069, 465433, 2579, 1423, 473659, 475037, 2677, 480569, 2221, 483347, 11273, 486133, 25733, 15817, 493133, 494539, 495947, 26251, 2539, 503017, 1429, 2099, 72469, 508709, 510137, 512999, 514433, 518747, 3797, 1733, 5179, 75347, 528883, 530339, 10853, 533257, 4093, 2237, 540587, 28607, 549449, 3299, 1489, 29153, 1493, 79769, 561377, 7949, 3271, 567389, 570407, 81919, 574949, 2143, 3461, 82787, 18743, 30661, 13619, 587149, 588683, 84317, 591757, 593297, 84977, 12689, 597929, 599477, 4519, 3163, 6823, 613499, 615067, 9227, 19993, 621359, 12713, 624517, 6199, 89669, 33203, 632447, 1709, 637229, 3929, 33791, 643633, 92177, 3739, 2341, 92867, 651683, 15193, 654917, 658159, 659783, 4973, 663037, 664667, 95419, 21599, 14281, 5059, 10067, 677779, 682729, 13967, 686039, 4219, 689357, 98717, 36457, 694349, 99431, 697687, 701033, 14341, 706067, 101107, 709433, 2767, 712807, 102071, 13513, 717883, 102797, 722977, 103769, 10867, 2713, 3371, 2647, 734933, 740087, 741809, 106219, 5689, 4127, 748717, 2281, 752183, 107951, 39863, 4241, 16189, 108947, 766127, 15671, 40507, 771389, 773147, 3571, 10939, 2503, 781967, 783737, 25339, 16067, 11777, 794399, 7883, 11239, 2657, 1913, 42281, 115019, 806929, 15259, 4073, 116047, 15361, 815939, 1871, 823183, 6203, 4951, 828637, 17747, 835937, 6299, 839599, 27143, 17981, 12641, 848789, 854327, 858029, 861739, 865457, 867319, 2069, 45943, 2521, 17891, 20431, 880409, 126041, 884167, 4639, 28643, 891707, 4937, 6733, 4253, 29009, 901177, 129011, 4289, 6833, 21179, 914519, 2897, 920267, 2803, 924109, 926033, 5693, 49043, 19867, 133669, 4909, 3467, 7187, 134777, 49757, 30559, 19373, 3947, 953179, 5521, 136727, 30937, 22349, 137567, 964933, 3109, 50993, 19813, 2939, 14549, 139537, 2393, 980717, 51721, 9769, 7547, 9277, 23131, 996629, 11243, 143519, 52981, 32537, 19069, 144667, 21589, 19183, 145531, 1024783, 3121, 1028837, 1030867,

7. Distribution of the primes

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

To avoid confusion with the number of primes:
I did not count the primes <= A
but I counted the primes appending the x and therefore the x <= A

ABCDEFGHIJK
exponent =log10 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
11010911.0000000.9000000.1000000.0000000.0000000.000000
21008449350.8400000.4900000.3500008.4000005.44444535.000000
31.0007853244610.7850000.3240000.4610009.3452386.61224513.171429
410.0007.5242.3935.1310.7524000.2393000.5131009.5847137.38580211.130152
5100.00073.88618.65755.2290.7388600.1865700.5522909.8200437.79649010.763789
61.000.000731.427150.993580.4340.7314270.1509930.5804349.8993998.09310210.509587
710.000.0007.259.2591.279.0475.980.2120.7259260.1279050.5980219.9247898.47090210.303000
8100.000.00072.165.31011.077.13461.088.1760.7216530.1107710.6108829.9411408.66045910.215052
91.000.000.000718.321.53597.731.929620.589.6060.7183220.0977320.6205909.9538348.82285310.158916
1010.000.000.0007.156.956.352874.621.1866.282.335.1660.7156960.0874620.6282349.9634448.94918510.123172


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
389811.1250001.0000000.1250001.8000001.600000inf
416161421.0000000.8750000.1250001.7777781.7500002.000000
532302370.9375000.7187500.2187501.8750001.6428573.500000
6645635210.8750000.5468750.3281251.8666671.5217393.000000
712810864440.8437500.5000000.3437501.9285711.8285712.095238
82562101101000.8203120.4296880.3906251.9444441.7187502.272727
95124051892160.7910160.3691410.4218751.9285711.7181822.160000
101.0248043324720.7851560.3242190.4609381.9851851.7566142.185185
112.0481.5776109670.7700200.2978520.4721681.9614431.8373492.048729
124.0963.1021.1061.9960.7573240.2700200.4873051.9670261.8131152.064116
138.1926.1692.0174.1520.7530520.2462160.5068361.9887171.8236892.080160
1416.38412.2543.6838.5710.7479250.2247920.5231321.9863841.8259792.064306
1532.76824.3426.83917.5030.7428590.2087100.5341491.9864531.8569102.042119
1665.53648.50612.65835.8480.7401430.1931460.5469971.9926881.8508552.048106
17131.07296.66723.74772.9200.7375110.1811750.5563351.9928871.8760472.034144
18262.144192.87744.416148.4610.7357670.1694340.5663341.9952721.8703842.035944
19524.288384.35183.586300.7650.7330910.1594280.5736641.9927261.8818892.025886
201.048.576766.869157.630609.2390.7313430.1503280.5810161.9952311.8858422.025631
212.097.1521.530.071299.2501.230.8210.7295950.1426940.5869011.9952181.8984332.020260
224.194.3043.052.989569.4992.483.4900.7278890.1357790.5921101.9953251.9030882.017751
238.388.6086.092.7201.085.7325.006.9880.7263090.1294290.5968791.9956571.9064692.016110
2416.777.21612.161.6752.073.82010.087.8550.7248920.1236090.6012831.9960991.9100662.014755
2533.554.43224.278.0273.968.30320.309.7240.7235420.1182650.6052771.9962731.9135232.013285
2667.108.86448.473.2207.609.69740.863.5230.7223070.1133930.6089141.9965881.9176202.012018
27134.217.72896.796.85114.617.94382.178.9080.7211930.1089120.6122811.9969141.9209632.011058
28268.435.456193.309.37728.118.198165.191.1790.7201340.1047480.6153851.9970631.9235402.010141
29536.870.912386.089.00354.187.318331.901.6850.7191470.1009320.6182151.9972591.9271262.009197
301.073.741.824771.198.237104.556.474666.641.7630.7182340.0973760.6208591.9974621.9295382.008552
312.147.483.6481.540.569.418201.999.0711.338.570.3470.7173840.0940630.6233201.9976311.9319612.007931
324.294.967.2963.077.744.690390.711.3892.687.033.3010.7165930.0909700.6256241.9977971.9342242.007390
338.589.934.5926.149.125.860756.540.8755.392.584.9850.7158520.0880730.6277801.9979321.9363162.006892
3417.179.869.18412.286.275.8091.466.396.88110.819.878.9280.7151550.0853560.6298001.9980521.9382922.006436


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
123210111
245320113
388351313
41614681535
532238154757
664351322710810
712864224215181516
8256110367426292530
95121896612345524448
101.02433211821481868580
112.048610210400153153143161
124.0961.106378728272262275297
138.1922.0176781.339502497503515
1416.3843.6831.2352.448897916934936
1532.7686.8392.2764.5631.6881.7101.7321.709
1665.53612.6584.2078.4513.1573.1753.1553.171
17131.07223.7477.90715.8405.8735.9405.9316.003
18262.14444.41614.74729.66911.06611.06311.10011.187
19524.28883.58627.91055.67620.94920.84320.81320.981
201.048.576157.63052.517105.11339.47439.39839.13639.622
212.097.152299.25099.797199.45374.92674.76474.42175.139
224.194.304569.499189.884379.615142.571142.333142.003142.592
238.388.6081.085.732361.876723.856271.529271.439271.051271.713
2416.777.2162.073.820691.2661.382.554519.202518.369517.716518.533
2533.554.4323.968.3031.323.0522.645.251993.121991.932991.192992.058
2667.108.8647.609.6972.536.8305.072.8671.903.5341.902.3661.901.5321.902.265
27134.217.72814.617.9434.874.5599.743.3843.655.7113.654.3313.653.3963.654.505
28268.435.45628.118.1989.374.43018.743.7687.031.4267.029.1537.028.0847.029.535
29536.870.91254.187.31818.065.47736.121.84113.547.66613.547.69313.545.41013.546.549
301.073.741.824104.556.47434.857.65769.698.81726.141.21526.138.72426.138.24826.138.287
312.147.483.648201.999.07167.334.637134.664.43450.504.09850.501.82250.495.25950.497.892
324.294.967.296390.711.389130.239.168260.472.22197.685.76197.676.32697.676.58597.672.717
338.589.934.592756.540.875252.171.729504.369.146189.147.240189.130.620189.130.206189.132.809
3417.179.869.1841.466.396.881488.786.189977.610.692366.609.910366.594.596366.589.112366.603.263


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
4162110101
5327341321
664216155664
71284416289131012
8256100425821302425
95122169012653535753
101.024472205267120125119108
112.048967429538239267235226
124.0961.9969021.094503495508490
138.1924.1521.9152.2371.0441.0171.0841.007
1416.3848.5713.9634.6082.1562.0922.2172.106
1532.76817.5038.1209.3834.4024.2664.3874.448
1665.53635.84816.88418.9649.0018.8439.0168.988
17131.07272.92034.56438.35618.34418.06418.18118.331
18262.144148.46170.74877.71337.22136.89637.09237.252
19524.288300.765143.786156.97975.23375.12675.22775.179
201.048.576609.239292.255316.984152.189152.712152.165152.173
212.097.1521.230.821591.976638.845307.090308.278307.757307.696
224.194.3042.483.4901.197.7341.285.756620.009621.912620.960620.609
238.388.6085.006.9882.419.6652.587.3231.251.2731.253.3431.251.6441.250.728
2416.777.21610.087.8554.883.7225.204.1332.521.1322.523.7822.521.7342.521.207
2533.554.43220.309.7249.850.87710.458.8475.078.5985.077.6715.076.9195.076.536
2667.108.86440.863.52319.849.22721.014.29610.214.39310.217.77110.216.73010.214.629
27134.217.72882.178.90839.977.60742.201.30120.540.12420.548.24220.548.12920.542.413
28268.435.456165.191.17980.462.65384.728.52641.288.82541.306.51241.304.36241.291.480
29536.870.912331.901.685161.857.261170.044.42482.962.57482.989.10882.978.20782.971.796
301.073.741.824666.641.763325.436.487341.205.276166.639.667166.685.678166.660.323166.656.095
312.147.483.6481.338.570.347654.069.715684.500.632334.620.857334.669.903334.653.385334.626.202
324.294.967.2962.687.033.3011.314.105.7621.372.927.539671.710.840671.812.128671.767.130671.743.203
338.589.934.5925.392.584.9852.639.450.1692.753.134.8161.348.083.9251.348.196.2441.348.156.5561.348.148.260
3417.179.869.18410.819.878.9285.299.875.3715.520.003.5572.704.878.3282.705.052.4262.704.978.0102.704.970.164


8. Check for existing Integer Sequences by OEIS

Found in Database : 101, 67, 31, 7, 47, 89, 19, 179, 227, 277, 1, 383, 439, 71, 557, 619, 683, 107, 43, 887,
Found in Database : 101, 67, 31, 7, 47, 89, 19, 179, 227, 277, 383, 439, 71, 557, 619, 683, 107, 43, 887, 137, 1033, 1109, 1187, 181, 1433, 1607, 1697, 1789, 269, 1979, 311, 53, 2383, 131, 2707,
Found in Database : 7, 19, 31, 43, 47, 53, 67, 71, 89, 101, 107, 131, 137,