Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:51:46
Deutsch
20.Apr 2024

Polynom = x^2+62x-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) = 59 = 59
f(2) = 53 = 53
f(3) = 7 = 7
f(4) = 83 = 83
f(5) = 77 = 7*11
f(6) = 227 = 227
f(7) = 151 = 151
f(8) = 379 = 379
f(9) = 229 = 229
f(10) = 539 = 7*7*11
f(11) = 311 = 311
f(12) = 707 = 7*101
f(13) = 397 = 397
f(14) = 883 = 883
f(15) = 487 = 487
f(16) = 1067 = 11*97
f(17) = 581 = 7*83
f(18) = 1259 = 1259
f(19) = 679 = 7*97
f(20) = 1459 = 1459
f(21) = 781 = 11*71
f(22) = 1667 = 1667
f(23) = 887 = 887
f(24) = 1883 = 7*269
f(25) = 997 = 997
f(26) = 2107 = 7*7*43
f(27) = 1111 = 11*101
f(28) = 2339 = 2339
f(29) = 1229 = 1229
f(30) = 2579 = 2579
f(31) = 1351 = 7*193
f(32) = 2827 = 11*257
f(33) = 1477 = 7*211
f(34) = 3083 = 3083
f(35) = 1607 = 1607
f(36) = 3347 = 3347
f(37) = 1741 = 1741
f(38) = 3619 = 7*11*47
f(39) = 1879 = 1879
f(40) = 3899 = 7*557
f(41) = 2021 = 43*47
f(42) = 4187 = 53*79
f(43) = 2167 = 11*197
f(44) = 4483 = 4483
f(45) = 2317 = 7*331
f(46) = 4787 = 4787
f(47) = 2471 = 7*353
f(48) = 5099 = 5099
f(49) = 2629 = 11*239
f(50) = 5419 = 5419
f(51) = 2791 = 2791
f(52) = 5747 = 7*821
f(53) = 2957 = 2957
f(54) = 6083 = 7*11*79
f(55) = 3127 = 53*59
f(56) = 6427 = 6427
f(57) = 3301 = 3301
f(58) = 6779 = 6779
f(59) = 3479 = 7*7*71
f(60) = 7139 = 11*11*59
f(61) = 3661 = 7*523
f(62) = 7507 = 7507
f(63) = 3847 = 3847
f(64) = 7883 = 7883
f(65) = 4037 = 11*367
f(66) = 8267 = 7*1181
f(67) = 4231 = 4231
f(68) = 8659 = 7*1237
f(69) = 4429 = 43*103
f(70) = 9059 = 9059
f(71) = 4631 = 11*421
f(72) = 9467 = 9467
f(73) = 4837 = 7*691
f(74) = 9883 = 9883
f(75) = 5047 = 7*7*103
f(76) = 10307 = 11*937
f(77) = 5261 = 5261
f(78) = 10739 = 10739
f(79) = 5479 = 5479
f(80) = 11179 = 7*1597
f(81) = 5701 = 5701
f(82) = 11627 = 7*11*151
f(83) = 5927 = 5927
f(84) = 12083 = 43*281
f(85) = 6157 = 47*131
f(86) = 12547 = 12547
f(87) = 6391 = 7*11*83
f(88) = 13019 = 47*277
f(89) = 6629 = 7*947
f(90) = 13499 = 13499
f(91) = 6871 = 6871
f(92) = 13987 = 71*197
f(93) = 7117 = 11*647
f(94) = 14483 = 7*2069
f(95) = 7367 = 53*139
f(96) = 14987 = 7*2141
f(97) = 7621 = 7621
f(98) = 15499 = 11*1409
f(99) = 7879 = 7879
f(100) = 16019 = 83*193

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

f(0)=181
f(1)=59
f(2)=53
f(3)=7
f(4)=83
f(5)=11
f(6)=227
f(7)=151
f(8)=379
f(9)=229
f(10)=1
f(11)=311
f(12)=101
f(13)=397
f(14)=883
f(15)=487
f(16)=97
f(17)=1
f(18)=1259
f(19)=1
f(20)=1459
f(21)=71
f(22)=1667
f(23)=887
f(24)=269
f(25)=997
f(26)=43
f(27)=1
f(28)=2339
f(29)=1229
f(30)=2579
f(31)=193
f(32)=257
f(33)=211
f(34)=3083
f(35)=1607
f(36)=3347
f(37)=1741
f(38)=47
f(39)=1879
f(40)=557
f(41)=1
f(42)=79
f(43)=197
f(44)=4483
f(45)=331
f(46)=4787
f(47)=353
f(48)=5099
f(49)=239
f(50)=5419
f(51)=2791
f(52)=821
f(53)=2957
f(54)=1
f(55)=1
f(56)=6427
f(57)=3301
f(58)=6779
f(59)=1
f(60)=1
f(61)=523
f(62)=7507
f(63)=3847
f(64)=7883
f(65)=367
f(66)=1181
f(67)=4231
f(68)=1237
f(69)=103
f(70)=9059
f(71)=421
f(72)=9467
f(73)=691
f(74)=9883
f(75)=1
f(76)=937
f(77)=5261
f(78)=10739
f(79)=5479
f(80)=1597
f(81)=5701
f(82)=1
f(83)=5927
f(84)=281
f(85)=131
f(86)=12547
f(87)=1
f(88)=277
f(89)=947
f(90)=13499
f(91)=6871
f(92)=1
f(93)=647
f(94)=2069
f(95)=139
f(96)=2141
f(97)=7621
f(98)=1409
f(99)=7879

b) Substitution of the polynom
The polynom f(x)=x^2+62x-181 could be written as f(y)= y^2-1142 with x=y-31

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+31
f'(x)>2x+61

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, 59, 53, 7, 83, 11, 227, 151, 379, 229, 1, 311, 101, 397, 883, 487, 97, 1, 1259, 1, 1459, 71, 1667, 887, 269, 997, 43, 1, 2339, 1229, 2579, 193, 257, 211, 3083, 1607, 3347, 1741, 47, 1879, 557, 1, 79, 197, 4483, 331, 4787, 353, 5099, 239, 5419, 2791, 821, 2957, 1, 1, 6427, 3301, 6779, 1, 1, 523, 7507, 3847, 7883, 367, 1181, 4231, 1237, 103, 9059, 421, 9467, 691, 9883, 1, 937, 5261, 10739, 5479, 1597, 5701, 1, 5927, 281, 131, 12547, 1, 277, 947, 13499, 6871, 1, 647, 2069, 139, 2141, 7621, 1409, 7879, 1, 1163, 16547, 1201, 1553, 8677, 17627, 8951, 1, 839, 2677, 9511, 449, 1, 337, 1, 1, 1483, 21059, 1, 179, 1, 3181, 11287, 467, 11597, 2137, 1, 1, 1747, 349, 163, 541, 1, 26083, 1, 3821, 1231, 3917, 13879, 28099, 14221, 2617, 2081, 29483, 2131, 30187, 15271, 1, 15629, 4517, 15991, 4621, 1487, 33083, 389, 33827, 1, 1, 1, 35339, 1, 36107, 1, 479, 18637, 5381, 19031, 38459, 19429, 1, 2833, 1, 1, 40883, 1877, 233, 21061, 1, 457, 6197, 1, 941, 1, 45083, 3251, 4177, 3313, 46819, 23629, 47699, 24071, 631, 24517, 7069, 24967, 50387, 2311, 1193, 3697, 661, 1, 53147, 2437, 54083, 27277, 1123, 27751, 727, 28229, 587, 28711, 733, 1, 1, 4241, 1, 30181, 60859, 2789, 8837, 31181, 1283, 31687, 1, 2927, 1381, 4673, 283, 1, 6089, 33751, 1153, 1, 1, 34807, 911, 599, 1, 35879, 1, 1, 73387, 5281, 1, 37517, 577, 3461, 10957, 38629, 11117, 39191, 7177, 1, 1511, 823, 1889, 5843, 7489, 41479, 601, 42061, 12101, 3877, 12269, 43237, 1049, 827, 88259, 1, 89459, 919, 1277, 971, 8353, 1, 1, 46861, 13477, 1, 8689, 1, 96827, 6961, 2281, 641, 99347, 49991, 1, 1, 14557, 1, 14741, 1, 1, 52567, 1, 7603, 107099, 1, 1, 54541, 907, 55207, 2267, 787, 16061, 1, 113779, 1, 1187, 8273, 116507, 761, 117883, 1, 119267, 59981, 1567, 60679, 1, 61381, 1, 1321, 11353, 8971, 126307, 1, 127739, 5839, 1279, 64951, 18661, 65677, 18869, 6037, 1609, 67141, 135019, 9697, 12409, 9803, 3209, 977, 139483, 70117, 1831, 1, 20357, 863, 2441, 6581, 145547, 1493, 147083, 1, 148627, 6791, 1901, 75479, 409, 76261, 1, 77047, 154883, 1, 156467, 1, 14369, 1621, 1, 80231, 161267, 1, 23269, 81847, 1, 1, 1613, 7589, 167779, 12043, 169427, 12161, 1, 1999, 1, 1, 24917, 87629, 2287, 88471, 177787, 89317, 179483, 1171, 443, 13003, 182899, 1, 1, 8431, 3803, 93607, 1, 94477, 17257, 983, 191579, 1, 1, 13873, 17737, 1, 1, 98887, 1, 1, 4091, 1213, 1, 101581, 204067, 1, 205883, 14771, 3919, 104311, 1, 105229, 30197, 1051, 1, 107077, 19553, 108007, 216947, 1, 218819, 1427, 220699, 110821, 222587, 111767, 32069, 10247, 32341, 1601, 228299, 1451, 20929, 1, 1, 16651, 234083, 1, 499, 1, 33997, 1, 1, 1, 241907, 121447, 5189, 17491, 4639, 1, 4201, 124429, 249859, 2917, 3271, 2143, 36269, 127447, 255907, 128461, 1, 1, 521, 1, 262027, 1087, 264083, 1867, 1, 1297, 38317, 12239, 270299, 135671, 1, 19531, 24953, 19681, 276587, 138821, 1, 3253, 1, 1453, 1, 142007, 2939, 13007, 1, 20593, 1, 20747, 291539, 1, 2113, 147397, 1, 1789, 1, 1481, 4229, 2843, 302459, 21683, 27697, 21841, 306883, 153997, 309107, 1, 563, 156229, 44797, 157351, 1, 14407, 1777, 1, 569, 22963, 1, 161879, 571, 163021, 1, 1, 1, 165317, 1291, 166471, 334099, 1, 336419, 24113, 338747, 169957, 341083, 1, 1, 4007, 1, 613, 31649, 1, 1303, 25121, 352883, 3613, 32297, 178231, 357659, 179429, 51437, 16421, 1, 181837, 364883, 183047, 367307, 2393, 369739, 26497, 372179, 186701, 34057, 187927, 1, 1, 1, 190391, 34729, 2699, 3733, 1, 386987, 2521, 389483, 2473, 391987, 1, 1, 17989, 1319, 2053, 8501, 200407, 3323, 1, 1693, 1, 407179, 1559, 1, 1361, 58901, 1, 8467, 18917, 1823, 209381, 4159, 30097, 2593, 2753, 2609, 213287, 427883, 4049, 5591, 3041, 1439, 217229, 435779, 218551, 39857, 1, 2239, 31601, 1, 20231, 8423, 1709, 64157, 225221, 1, 1, 454483, 3863, 1627, 4679, 41809, 701, 7841, 1669, 9901, 233357, 6079, 234727, 67261, 1, 473579, 21589, 6709, 34123, 2647, 4903, 481883, 1997, 2297, 243031, 1, 244429, 6367, 5717, 493067, 1, 6277, 35521, 45337, 1, 9463, 1, 504379, 1, 72461, 1, 72869, 255757, 1, 1, 1, 36947, 518699, 1, 47417, 2539, 2251, 2711, 1, 1, 1, 5657, 533219, 267341, 536147, 3491, 9137, 38611, 542027, 1, 544979, 1, 78277, 274711, 11243, 1543, 1, 277687, 556867, 39883, 559859, 1, 51169, 1, 565867, 283687, 1, 2357, 81701, 286711, 574939, 6703, 577979, 1, 1, 41611, 5783, 292807, 53377, 294341, 84317, 295879, 1, 297421, 54217, 6361, 11311, 6133, 12821, 3923, 1, 1, 608819, 3677, 87421, 1, 87869, 308327, 618227, 7207, 56489, 44497, 624539, 6389, 4157, 5333, 1, 4003, 1, 317831, 1, 1, 4889, 321031, 14969, 46091, 646883, 4211, 650107, 325861, 653339, 327479, 8527, 329101, 94261, 2029, 12511, 2039, 5507, 47713, 1987, 47947, 1, 30661, 6971, 7211, 1, 3511, 1, 1, 686099, 1, 16033, 49363, 1, 1, 696083, 853, 699427, 1, 9127, 352229, 14411, 353911, 709507, 32327, 712883, 1, 5153, 51283, 719659, 32789, 7159, 362381, 1759, 1, 9479, 365797, 733307, 6229, 2111, 52747, 67289, 1, 9413, 372677, 9001, 1, 1, 1, 107717, 1, 1, 34511, 2689, 1, 9677, 1, 1, 4637, 771499, 386629, 2089, 388391, 10111, 390157, 782083, 1, 785627, 5113, 18353, 1, 2549, 1, 796307, 36277, 114269, 400837, 114781, 402631, 73369, 404429, 810659, 1, 4219, 1, 74353, 1, 821507, 1951, 117877, 37589, 1, 7039, 832427, 417127, 17789, 5441, 1, 1, 1, 4357, 1, 424471, 1, 4139, 122069, 428167, 78017, 1, 861899, 1, 865619, 1, 1, 8219, 873083, 2417, 125261, 3631, 17971, 441229, 1, 1, 80737, 1, 3929, 63841, 895667, 5407, 81769, 1, 129037, 4481, 129581, 1, 910883, 1993, 1, 1, 918539, 1, 11113, 9833, 926227, 1, 1, 1, 1, 467941, 937819, 469879, 1, 9629, 945587, 1, 1, 1, 5849, 477671, 1, 479629, 1, 43781, 965147, 483557, 969083, 1, 1, 9949, 3527, 489479, 4649, 491461, 12791, 493447, 141269, 495437, 992867, 4111, 996859, 71347, 1000859, 71633, 23369, 45767, 2749, 505447, 144701, 507461, 1, 1021, 1020979, 10883, 14437, 73361, 93553, 73651, 10651, 12037, 6869, 1, 1, 521671, 149341, 523717, 1049483, 47797, 1, 75403, 1057699, 1,

6. Sequence of the polynom (only primes)

181, 59, 53, 7, 83, 11, 227, 151, 379, 229, 311, 101, 397, 883, 487, 97, 1259, 1459, 71, 1667, 887, 269, 997, 43, 2339, 1229, 2579, 193, 257, 211, 3083, 1607, 3347, 1741, 47, 1879, 557, 79, 197, 4483, 331, 4787, 353, 5099, 239, 5419, 2791, 821, 2957, 6427, 3301, 6779, 523, 7507, 3847, 7883, 367, 1181, 4231, 1237, 103, 9059, 421, 9467, 691, 9883, 937, 5261, 10739, 5479, 1597, 5701, 5927, 281, 131, 12547, 277, 947, 13499, 6871, 647, 2069, 139, 2141, 7621, 1409, 7879, 1163, 16547, 1201, 1553, 8677, 17627, 8951, 839, 2677, 9511, 449, 337, 1483, 21059, 179, 3181, 11287, 467, 11597, 2137, 1747, 349, 163, 541, 26083, 3821, 1231, 3917, 13879, 28099, 14221, 2617, 2081, 29483, 2131, 30187, 15271, 15629, 4517, 15991, 4621, 1487, 33083, 389, 33827, 35339, 36107, 479, 18637, 5381, 19031, 38459, 19429, 2833, 40883, 1877, 233, 21061, 457, 6197, 941, 45083, 3251, 4177, 3313, 46819, 23629, 47699, 24071, 631, 24517, 7069, 24967, 50387, 2311, 1193, 3697, 661, 53147, 2437, 54083, 27277, 1123, 27751, 727, 28229, 587, 28711, 733, 4241, 30181, 60859, 2789, 8837, 31181, 1283, 31687, 2927, 1381, 4673, 283, 6089, 33751, 1153, 34807, 911, 599, 35879, 73387, 5281, 37517, 577, 3461, 10957, 38629, 11117, 39191, 7177, 1511, 823, 1889, 5843, 7489, 41479, 601, 42061, 12101, 3877, 12269, 43237, 1049, 827, 88259, 89459, 919, 1277, 971, 8353, 46861, 13477, 8689, 96827, 6961, 2281, 641, 99347, 49991, 14557, 14741, 52567, 7603, 107099, 54541, 907, 55207, 2267, 787, 16061, 113779, 1187, 8273, 116507, 761, 117883, 119267, 59981, 1567, 60679, 61381, 1321, 11353, 8971, 126307, 127739, 5839, 1279, 64951, 18661, 65677, 18869, 6037, 1609, 67141, 135019, 9697, 12409, 9803, 3209, 977, 139483, 70117, 1831, 20357, 863, 2441, 6581, 145547, 1493, 147083, 148627, 6791, 1901, 75479, 409, 76261, 77047, 154883, 156467, 14369, 1621, 80231, 161267, 23269, 81847, 1613, 7589, 167779, 12043, 169427, 12161, 1999, 24917, 87629, 2287, 88471, 177787, 89317, 179483, 1171, 443, 13003, 182899, 8431, 3803, 93607, 94477, 17257, 983, 191579, 13873, 17737, 98887, 4091, 1213, 101581, 204067, 205883, 14771, 3919, 104311, 105229, 30197, 1051, 107077, 19553, 108007, 216947, 218819, 1427, 220699, 110821, 222587, 111767, 32069, 10247, 32341, 1601, 228299, 1451, 20929, 16651, 234083, 499, 33997, 241907, 121447, 5189, 17491, 4639, 4201, 124429, 249859, 2917, 3271, 2143, 36269, 127447, 255907, 128461, 521, 262027, 1087, 264083, 1867, 1297, 38317, 12239, 270299, 135671, 19531, 24953, 19681, 276587, 138821, 3253, 1453, 142007, 2939, 13007, 20593, 20747, 291539, 2113, 147397, 1789, 1481, 4229, 2843, 302459, 21683, 27697, 21841, 306883, 153997, 309107, 563, 156229, 44797, 157351, 14407, 1777, 569, 22963, 161879, 571, 163021, 165317, 1291, 166471, 334099, 336419, 24113, 338747, 169957, 341083, 4007, 613, 31649, 1303, 25121, 352883, 3613, 32297, 178231, 357659, 179429, 51437, 16421, 181837, 364883, 183047, 367307, 2393, 369739, 26497, 372179, 186701, 34057, 187927, 190391, 34729, 2699, 3733, 386987, 2521, 389483, 2473, 391987, 17989, 1319, 2053, 8501, 200407, 3323, 1693, 407179, 1559, 1361, 58901, 8467, 18917, 1823, 209381, 4159, 30097, 2593, 2753, 2609, 213287, 427883, 4049, 5591, 3041, 1439, 217229, 435779, 218551, 39857, 2239, 31601, 20231, 8423, 1709, 64157, 225221, 454483, 3863, 1627, 4679, 41809, 701, 7841, 1669, 9901, 233357, 6079, 234727, 67261, 473579, 21589, 6709, 34123, 2647, 4903, 481883, 1997, 2297, 243031, 244429, 6367, 5717, 493067, 6277, 35521, 45337, 9463, 504379, 72461, 72869, 255757, 36947, 518699, 47417, 2539, 2251, 2711, 5657, 533219, 267341, 536147, 3491, 9137, 38611, 542027, 544979, 78277, 274711, 11243, 1543, 277687, 556867, 39883, 559859, 51169, 565867, 283687, 2357, 81701, 286711, 574939, 6703, 577979, 41611, 5783, 292807, 53377, 294341, 84317, 295879, 297421, 54217, 6361, 11311, 6133, 12821, 3923, 608819, 3677, 87421, 87869, 308327, 618227, 7207, 56489, 44497, 624539, 6389, 4157, 5333, 4003, 317831, 4889, 321031, 14969, 46091, 646883, 4211, 650107, 325861, 653339, 327479, 8527, 329101, 94261, 2029, 12511, 2039, 5507, 47713, 1987, 47947, 30661, 6971, 7211, 3511, 686099, 16033, 49363, 696083, 853, 699427, 9127, 352229, 14411, 353911, 709507, 32327, 712883, 5153, 51283, 719659, 32789, 7159, 362381, 1759, 9479, 365797, 733307, 6229, 2111, 52747, 67289, 9413, 372677, 9001, 107717, 34511, 2689, 9677, 4637, 771499, 386629, 2089, 388391, 10111, 390157, 782083, 785627, 5113, 18353, 2549, 796307, 36277, 114269, 400837, 114781, 402631, 73369, 404429, 810659, 4219, 74353, 821507, 1951, 117877, 37589, 7039, 832427, 417127, 17789, 5441, 4357, 424471, 4139, 122069, 428167, 78017, 861899, 865619, 8219, 873083, 2417, 125261, 3631, 17971, 441229, 80737, 3929, 63841, 895667, 5407, 81769, 129037, 4481, 129581, 910883, 1993, 918539, 11113, 9833, 926227, 467941, 937819, 469879, 9629, 945587, 5849, 477671, 479629, 43781, 965147, 483557, 969083, 9949, 3527, 489479, 4649, 491461, 12791, 493447, 141269, 495437, 992867, 4111, 996859, 71347, 1000859, 71633, 23369, 45767, 2749, 505447, 144701, 507461, 1021, 1020979, 10883, 14437, 73361, 93553, 73651, 10651, 12037, 6869, 521671, 149341, 523717, 1049483, 47797, 75403, 1057699,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+62x-181 and
the reducible primes which appear as divisor for the first time
p | x^2+62x-181 and p < x^2+62x-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)
11010911.0000000.9000001.0000000.0000000.0000000.000000
21008152290.8100000.5200000.8100008.1000005.77777829.000000
31.0007473264210.7470000.3260000.7470009.2222226.26923114.517241
410.0007.2982.3154.9830.7298000.2315000.7298009.7697467.10122711.836104
5100.00072.24217.66954.5730.7224200.1766900.7224209.8988767.63239710.951837
61.000.000716.928144.509572.4190.7169280.1445090.7169289.9239788.17867510.489052
710.000.0007.134.2021.221.5515.912.6510.7134200.1221550.7134209.9510728.45311410.329236
8100.000.00071.069.62310.578.68060.490.9430.7106960.1057870.7106969.9618198.66004010.230765
91.000.000.000708.575.90593.223.070615.352.8350.7085760.0932230.7085769.9701668.81235410.172644
1010.000.000.0007.069.246.089833.420.5406.235.825.5490.7069250.0833420.7069259.9766958.94006710.133740


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
416161331.0000000.8125000.1875001.7777781.6250003.000000
532282170.8750000.6562500.2187501.7500001.6153852.333333
6645338150.8281250.5937500.2343751.8928571.8095242.142857
712810060400.7812500.4687500.3125001.8867921.5789472.666667
8256198104940.7734380.4062500.3671881.9800001.7333332.350000
95123861852010.7539060.3613280.3925781.9494951.7788462.138298
101.0247623324300.7441410.3242190.4199221.9740931.7945952.139303
112.0481.5066029040.7353520.2939450.4414061.9763781.8132532.102326
124.0963.0201.0631.9570.7373050.2595210.4777832.0053121.7657812.164823
138.1926.0021.9484.0540.7326660.2377930.4948731.9874171.8325492.071538
1416.38411.9213.5458.3760.7276000.2163700.5112301.9861711.8198152.066108
1532.76823.8006.52617.2740.7263180.1991580.5271611.9964771.8409032.062321
1665.53647.43212.05335.3790.7237550.1839140.5398411.9929411.8469202.048107
17131.07294.56022.63271.9280.7214360.1726680.5487671.9935911.8777072.033071
18262.144188.65142.466146.1850.7196460.1619950.5576521.9950401.8763702.032380
19524.288376.52879.919296.6090.7181700.1524330.5657371.9958971.8819532.028997
201.048.576751.659150.963600.6960.7168380.1439700.5728681.9962901.8889502.025212
212.097.1521.501.141286.3691.214.7720.7158000.1365510.5792481.9971041.8969482.022274
224.194.3042.997.558544.2872.453.2710.7146740.1297680.5849051.9968531.9006492.019532
238.388.6085.986.4621.037.0244.949.4380.7136420.1236230.5900191.9971131.9052892.017485
2416.777.21611.958.2041.981.2699.976.9350.7127650.1180930.5946721.9975411.9105332.015771
2533.554.43223.886.5643.793.14320.093.4210.7118750.1130440.5988311.9975041.9145022.013987
2667.108.86447.722.1237.267.70740.454.4160.7111150.1082970.6028181.9978651.9160122.013317
27134.217.72895.345.85713.957.46481.388.3930.7103820.1039910.6063911.9979381.9204772.011854
28268.435.456190.512.27626.844.024163.668.2520.7097140.1000020.6097121.9981181.9232742.010953
29536.870.912380.697.66851.703.235328.994.4330.7091050.0963050.6128001.9982841.9260612.010130
301.073.741.824760.768.67299.731.741661.036.9310.7085210.0928820.6156391.9983541.9289272.009265
312.147.483.6481.520.396.586192.605.9361.327.790.6500.7079900.0896890.6183011.9985011.9312402.008648
324.294.967.2963.038.645.795372.419.2182.666.226.5770.7074900.0867110.6207791.9985881.9335812.008018
338.589.934.5926.073.287.343720.934.7975.352.352.5460.7070240.0839280.6230961.9986821.9358152.007463
3417.179.869.18412.139.058.0511.397.039.33610.742.018.7150.7065860.0813180.6252681.9987621.9378172.006971


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
123120120
245230221
388440422
41613850544
53221101101065
66438191902099
71286030300291417
825610454500472730
951218599860884750
101.02433216816401618388
112.0486022953070303142157
124.0961.0635295340519265279
138.1921.9489819670955486507
1416.3843.5451.7871.75801.731914900
1532.7686.5263.2883.23803.1831.7201.623
1665.53612.0536.0565.99705.9013.1263.026
17131.07222.63211.40311.229011.1435.7985.691
18262.14442.46621.39621.070020.84010.85210.774
19524.28879.91940.02739.892039.45620.25820.205
201.048.576150.96375.83275.131074.54838.26038.155
212.097.152286.369143.687142.6820141.35572.52772.487
224.194.304544.287273.272271.0150268.789137.952137.546
238.388.6081.037.024520.468516.5560512.008262.780262.236
2416.777.2161.981.269994.548986.7210979.314501.431500.524
2533.554.4323.793.1431.903.8251.889.31801.875.634959.452958.057
2667.108.8647.267.7073.648.2603.619.44703.596.4131.836.5621.834.732
27134.217.72813.957.4647.004.0316.953.43306.909.0413.524.2313.524.192
28268.435.45626.844.02413.467.16513.376.859013.293.6516.774.7346.775.639
29536.870.91251.703.23525.931.11825.772.117025.610.45213.046.30713.046.476
301.073.741.82499.731.74150.014.83749.716.904049.422.98025.156.42225.152.339
312.147.483.648192.605.93696.583.29896.022.638095.473.01648.565.81648.567.104
324.294.967.296372.419.218186.732.376185.686.8420184.655.21193.881.91493.882.093
338.589.934.592720.934.797361.437.796359.497.0010357.554.710181.683.290181.696.797
3417.179.869.1841.397.039.336700.342.244696.697.0920693.063.755351.989.638351.985.943


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
381010100
4163121110
5327253121
664155104452
7128401822129145
825694454928153516
95122011049760406635
101.0244302142161288213783
112.048904459445258193264189
124.0961.957963994557416584400
138.1924.0542.0232.0311.1498761.166863
1416.3848.3764.1704.2062.3021.8792.3341.861
1532.76817.2748.6428.6324.7533.8614.8303.830
1665.53635.37917.58217.7979.7357.9239.7447.977
17131.07271.92835.90036.02819.53416.37319.61916.402
18262.144146.18572.99673.18939.41833.57539.48733.705
19524.288296.609148.484148.12579.71368.71879.66068.518
201.048.576600.696300.113300.583160.613140.207160.506139.370
212.097.1521.214.772607.381607.391322.999284.906322.936283.931
224.194.3042.453.2711.226.0591.227.212650.094578.047650.043575.087
238.388.6084.949.4382.474.1912.475.2471.308.4771.168.8861.307.5091.164.566
2416.777.2169.976.9354.987.9374.988.9982.628.2242.363.8912.628.7332.356.087
2533.554.43220.093.42110.047.70010.045.7215.279.1874.775.6685.278.2964.760.270
2667.108.86440.454.41620.225.52020.228.89610.596.6549.640.68510.607.0789.609.999
27134.217.72881.388.39340.693.04240.695.35121.265.10019.436.09221.298.58719.388.614
28268.435.456163.668.25281.837.14081.831.11242.684.39739.170.11942.742.58639.071.150
29536.870.912328.994.433164.504.231164.490.20285.638.53978.892.49285.773.16478.690.238
301.073.741.824661.036.931330.533.261330.503.670171.770.132158.820.258172.050.085158.396.456
312.147.483.6481.327.790.650663.925.361663.865.289344.501.114319.546.772345.066.612318.676.152
324.294.967.2962.666.226.5771.333.133.0711.333.093.506690.808.324642.562.400691.948.522640.907.331
338.589.934.5925.352.352.5462.676.236.5122.676.116.0341.384.898.7351.291.755.0931.387.258.5021.288.440.216
3417.179.869.18410.742.018.7155.371.149.7365.370.868.9792.776.083.9462.595.819.4722.780.746.6622.589.368.635


8. Check for existing Integer Sequences by OEIS

Found in Database : 181, 59, 53, 7, 83, 11, 227, 151, 379, 229, 1, 311, 101, 397, 883, 487, 97, 1, 1259, 1,
Found in Database : 181, 59, 53, 7, 83, 11, 227, 151, 379, 229, 311, 101, 397, 883, 487, 97, 1259, 1459, 71, 1667, 887, 269, 997, 43, 2339, 1229, 2579, 193, 257, 211, 3083, 1607, 3347, 1741, 47, 1879,
Found in Database : 7, 11, 43, 47, 53, 59, 71, 79, 83, 97, 101, 103, 131, 139,