Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:24:36
Deutsch
20.Apr 2024

Polynom = x^2+29x-59

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) = 59 = 59
f(1) = 29 = 29
f(2) = 3 = 3
f(3) = 37 = 37
f(4) = 73 = 73
f(5) = 111 = 3*37
f(6) = 151 = 151
f(7) = 193 = 193
f(8) = 237 = 3*79
f(9) = 283 = 283
f(10) = 331 = 331
f(11) = 381 = 3*127
f(12) = 433 = 433
f(13) = 487 = 487
f(14) = 543 = 3*181
f(15) = 601 = 601
f(16) = 661 = 661
f(17) = 723 = 3*241
f(18) = 787 = 787
f(19) = 853 = 853
f(20) = 921 = 3*307
f(21) = 991 = 991
f(22) = 1063 = 1063
f(23) = 1137 = 3*379
f(24) = 1213 = 1213
f(25) = 1291 = 1291
f(26) = 1371 = 3*457
f(27) = 1453 = 1453
f(28) = 1537 = 29*53
f(29) = 1623 = 3*541
f(30) = 1711 = 29*59
f(31) = 1801 = 1801
f(32) = 1893 = 3*631
f(33) = 1987 = 1987
f(34) = 2083 = 2083
f(35) = 2181 = 3*727
f(36) = 2281 = 2281
f(37) = 2383 = 2383
f(38) = 2487 = 3*829
f(39) = 2593 = 2593
f(40) = 2701 = 37*73
f(41) = 2811 = 3*937
f(42) = 2923 = 37*79
f(43) = 3037 = 3037
f(44) = 3153 = 3*1051
f(45) = 3271 = 3271
f(46) = 3391 = 3391
f(47) = 3513 = 3*1171
f(48) = 3637 = 3637
f(49) = 3763 = 53*71
f(50) = 3891 = 3*1297
f(51) = 4021 = 4021
f(52) = 4153 = 4153
f(53) = 4287 = 3*1429
f(54) = 4423 = 4423
f(55) = 4561 = 4561
f(56) = 4701 = 3*1567
f(57) = 4843 = 29*167
f(58) = 4987 = 4987
f(59) = 5133 = 3*29*59
f(60) = 5281 = 5281
f(61) = 5431 = 5431
f(62) = 5583 = 3*1861
f(63) = 5737 = 5737
f(64) = 5893 = 71*83
f(65) = 6051 = 3*2017
f(66) = 6211 = 6211
f(67) = 6373 = 6373
f(68) = 6537 = 3*2179
f(69) = 6703 = 6703
f(70) = 6871 = 6871
f(71) = 7041 = 3*2347
f(72) = 7213 = 7213
f(73) = 7387 = 83*89
f(74) = 7563 = 3*2521
f(75) = 7741 = 7741
f(76) = 7921 = 89*89
f(77) = 8103 = 3*37*73
f(78) = 8287 = 8287
f(79) = 8473 = 37*229
f(80) = 8661 = 3*2887
f(81) = 8851 = 53*167
f(82) = 9043 = 9043
f(83) = 9237 = 3*3079
f(84) = 9433 = 9433
f(85) = 9631 = 9631
f(86) = 9831 = 3*29*113
f(87) = 10033 = 79*127
f(88) = 10237 = 29*353
f(89) = 10443 = 3*59*59
f(90) = 10651 = 10651
f(91) = 10861 = 10861
f(92) = 11073 = 3*3691
f(93) = 11287 = 11287
f(94) = 11503 = 11503
f(95) = 11721 = 3*3907
f(96) = 11941 = 11941
f(97) = 12163 = 12163
f(98) = 12387 = 3*4129
f(99) = 12613 = 12613
f(100) = 12841 = 12841

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+29x-59

f(0)=59
f(1)=29
f(2)=3
f(3)=37
f(4)=73
f(5)=1
f(6)=151
f(7)=193
f(8)=79
f(9)=283
f(10)=331
f(11)=127
f(12)=433
f(13)=487
f(14)=181
f(15)=601
f(16)=661
f(17)=241
f(18)=787
f(19)=853
f(20)=307
f(21)=991
f(22)=1063
f(23)=379
f(24)=1213
f(25)=1291
f(26)=457
f(27)=1453
f(28)=53
f(29)=541
f(30)=1
f(31)=1801
f(32)=631
f(33)=1987
f(34)=2083
f(35)=727
f(36)=2281
f(37)=2383
f(38)=829
f(39)=2593
f(40)=1
f(41)=937
f(42)=1
f(43)=3037
f(44)=1051
f(45)=3271
f(46)=3391
f(47)=1171
f(48)=3637
f(49)=71
f(50)=1297
f(51)=4021
f(52)=4153
f(53)=1429
f(54)=4423
f(55)=4561
f(56)=1567
f(57)=167
f(58)=4987
f(59)=1
f(60)=5281
f(61)=5431
f(62)=1861
f(63)=5737
f(64)=83
f(65)=2017
f(66)=6211
f(67)=6373
f(68)=2179
f(69)=6703
f(70)=6871
f(71)=2347
f(72)=7213
f(73)=89
f(74)=2521
f(75)=7741
f(76)=1
f(77)=1
f(78)=8287
f(79)=229
f(80)=2887
f(81)=1
f(82)=9043
f(83)=3079
f(84)=9433
f(85)=9631
f(86)=113
f(87)=1
f(88)=353
f(89)=1
f(90)=10651
f(91)=10861
f(92)=3691
f(93)=11287
f(94)=11503
f(95)=3907
f(96)=11941
f(97)=12163
f(98)=4129
f(99)=12613

b) Substitution of the polynom
The polynom f(x)=x^2+29x-59 could be written as f(y)= y^2-269.25 with x=y-14.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+14.5
f'(x)>2x+28

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

59, 29, 3, 37, 73, 1, 151, 193, 79, 283, 331, 127, 433, 487, 181, 601, 661, 241, 787, 853, 307, 991, 1063, 379, 1213, 1291, 457, 1453, 53, 541, 1, 1801, 631, 1987, 2083, 727, 2281, 2383, 829, 2593, 1, 937, 1, 3037, 1051, 3271, 3391, 1171, 3637, 71, 1297, 4021, 4153, 1429, 4423, 4561, 1567, 167, 4987, 1, 5281, 5431, 1861, 5737, 83, 2017, 6211, 6373, 2179, 6703, 6871, 2347, 7213, 89, 2521, 7741, 1, 1, 8287, 229, 2887, 1, 9043, 3079, 9433, 9631, 113, 1, 353, 1, 10651, 10861, 3691, 11287, 11503, 3907, 11941, 12163, 4129, 12613, 12841, 4357, 251, 13537, 4591, 14011, 14251, 4831, 14737, 14983, 5077, 137, 15733, 1, 439, 569, 1, 587, 293, 5851, 1, 1, 6121, 18637, 18913, 6397, 19471, 19753, 6679, 20323, 20611, 6967, 21193, 21487, 1, 311, 22381, 7561, 1, 23293, 7867, 23911, 24223, 8179, 857, 25171, 1, 1, 443, 8821, 367, 733, 9151, 751, 28123, 179, 347, 1, 9829, 29833, 30181, 10177, 1, 31237, 10531, 359, 409, 10891, 33037, 33403, 11257, 34141, 34513, 401, 197, 1229, 12007, 617, 36787, 12391, 37561, 37951, 12781, 38737, 39133, 13177, 547, 761, 1, 41143, 1123, 1, 42373, 42787, 14401, 1, 44041, 14821, 44887, 1, 1, 46171, 1607, 15679, 1637, 47911, 227, 827, 929, 16561, 50131, 50581, 17011, 51487, 1, 17467, 52861, 53323, 17929, 239, 54721, 18397, 55663, 769, 1, 1543, 57571, 523, 58537, 59023, 1, 2069, 60493, 701, 61483, 61981, 1, 62983, 63487, 257, 1217, 65011, 21841, 66037, 66553, 1, 263, 68113, 1, 69163, 69691, 1, 70753, 71287, 269, 1, 72901, 24481, 1, 1021, 863, 1427, 1, 25579, 2089, 613, 1, 1, 79537, 26701, 80671, 593, 27271, 82387, 82963, 27847, 84121, 1193, 28429, 1087, 86461, 29017, 87643, 88237, 29611, 89431, 90031, 30211, 91237, 3167, 30817, 3209, 1, 1, 94903, 1619, 1, 96763, 97387, 883, 98641, 2683, 33301, 100537, 101173, 33937, 102451, 103093, 1, 104383, 105031, 35227, 941, 1289, 677, 108301, 108961, 36541, 3803, 1, 1283, 112291, 1361, 37879, 1447, 1949, 38557, 1, 117037, 39241, 118411, 119101, 1, 1697, 1, 40627, 3313, 1091, 1117, 124693, 1409, 1, 126823, 1433, 42751, 128971, 2447, 1499, 1847, 4547, 1, 133321, 134053, 1, 2297, 136261, 45667, 137743, 1753, 46411, 139981, 140731, 47161, 142237, 142993, 47917, 144511, 2741, 48679, 2011, 147571, 1, 149113, 4051, 50221, 4093, 1, 51001, 5303, 154573, 51787, 156151, 156943, 52579, 2687, 1163, 53377, 160933, 821, 54181, 163351, 983, 1, 859, 166603, 55807, 2027, 169063, 56629, 3221, 171541, 57457, 1, 2203, 1, 1, 176551, 2039, 1301, 179083, 1621, 1, 4909, 1031, 183343, 1103, 61687, 185923, 1237, 881, 3557, 189391, 63421, 191137, 192013, 1, 193771, 194653, 65179, 2207, 197311, 66067, 2237, 1, 2309, 201781, 1, 1, 204487, 1, 68767, 1, 2851, 1181, 209953, 1, 1, 5749, 213637, 1933, 1907, 216421, 1367, 218287, 219223, 73387, 221101, 222043, 1, 1483, 224881, 75277, 226783, 7853, 76231, 7919, 230611, 77191, 1831, 977, 78157, 235441, 4007, 1493, 238363, 3371, 80107, 241303, 3319, 1, 244261, 245251, 1039, 1, 6709, 83077, 6763, 251233, 1013, 253243, 3581, 85087, 8837, 257287, 2969, 259321, 1, 87121, 262387, 1093, 1, 265471, 4517, 1, 268573, 5087, 90217, 271693, 272737, 1, 274831, 275881, 92311, 1553, 1061, 1279, 3559, 1, 1, 2239, 285421, 1, 2099, 1, 1, 290791, 5507, 97651, 1, 295123, 98737, 5039, 1667, 99829, 300583, 301681, 100927, 1327, 2699, 102031, 307201, 308311, 103141, 1609, 311653, 1, 4421, 315013, 105379, 317263, 10979, 1459, 11057, 1, 107641, 1, 325201, 1, 1, 328633, 2971, 1, 4001, 1, 334393, 1, 112237, 337873, 1721, 1, 1, 4127, 114571, 344887, 1, 1, 348421, 349603, 116929, 1, 353161, 4073, 2129, 356737, 119311, 1823, 1867, 120511, 4969, 1, 2063, 1, 367573, 122929, 370003, 1, 124147, 10099, 374887, 125371, 1, 378571, 126601, 381037, 1523, 127837, 384751, 4337, 4451, 388483, 1, 2459, 392233, 393487, 131581, 396001, 1, 1871, 399787, 401053, 2273, 403591, 1613, 1, 5581, 408691, 136657, 411253, 412537, 137941, 415111, 416401, 1, 418987, 1, 140527, 422881, 14627, 141829, 14717, 5419, 143137, 430723, 432037, 144451, 5237, 3433, 145771, 438637, 7457, 147097, 3917, 443953, 148429, 5381, 447961, 149767, 450643, 451987, 1, 2003, 6247, 152461, 1, 8681, 153817, 15959, 464173, 5351, 12619, 468271, 4231, 1423, 2081, 1999, 475141, 4217, 1, 479287, 8147, 160687, 2671, 3539, 162079, 1, 9227, 163477, 491833, 6947, 164881, 496051, 497461, 1, 500287, 501703, 5783, 5669, 1, 169129, 5717, 510241, 170557, 513103, 7247, 1, 517411, 1, 173431, 1, 1, 174877, 2939, 527533, 176329, 530443, 531901, 177787, 10091, 536287, 2269, 3571, 540691, 1, 543637, 18797, 1, 18899, 549553, 2213, 552523, 554011, 185167, 1901, 1, 2557, 1, 2917, 2267, 1, 567493, 1, 570511, 572023, 5167, 575053, 15583, 192697, 579613, 581137, 1, 1, 585721, 195751, 1, 590323, 6803, 593401, 1913, 198829, 8423, 2333, 1, 1, 604237, 1787, 3083, 2659, 3449, 612037, 1973, 1, 616741, 2351, 1627, 8753, 623041, 208207, 2381, 627787, 1, 17053, 1669, 1, 635737, 21977, 2393, 640531, 642133, 2411, 5711, 1, 4079, 2417, 2423, 1, 655021, 4793, 3719, 8353, 661513, 221047, 664771, 666403, 222679, 669673, 1, 224317, 9241, 2953, 225961, 679531, 1, 227611, 23603, 686143, 229267, 689461, 18679, 230929, 1, 8387, 232597, 699463, 13229, 234271, 1, 11969, 235951, 709537, 711223, 3347, 714601, 9067, 239329, 719683, 721381, 241027, 724783, 726487, 242731, 25169, 731611, 8429, 10069, 13901, 3467, 740191, 741913, 247879, 5869, 2153, 249607, 750553, 752287, 6793, 3011, 1, 253081, 2689, 1, 254827, 766231, 4243, 256579, 1, 773251, 258337, 1, 778537, 8969, 782071, 1, 1, 3137, 8867, 263647, 14957, 1, 1, 1, 10957, 267217, 803443, 2243, 1, 13709, 1, 1, 814237, 816043, 1, 22153, 4919, 7417, 9941, 826921, 276247, 15671, 28703, 278071, 1, 11801, 2477, 10139, 1, 281737, 847051, 848893, 283579, 852583, 854431, 3613, 5683, 859987, 287281, 14639, 1, 289141, 3607, 4813, 291007, 874891, 2389, 292879, 880513, 882391, 294757, 30557, 24001, 1, 24103, 893701, 1, 6551, 1, 300427, 3779, 905083, 302329, 908893, 1993, 1, 2591, 916537, 5189, 920371, 922291, 1, 1, 928063, 5849, 931921, 933853, 4273, 2833, 939661, 1, 943543, 32603, 315811, 949381, 951331, 1, 10733, 957193, 8641, 10799, 26029, 321679, 967003, 968971, 323647, 1, 974887, 5519, 2441, 7723, 3947, 1, 5009, 329587, 4111, 18731, 331579, 2437, 34439, 4019, 1, 1004737, 4597, 1, 1, 1, 1014787, 1, 1, 1020841, 3491, 341629, 1026913,

6. Sequence of the polynom (only primes)

59, 29, 3, 37, 73, 151, 193, 79, 283, 331, 127, 433, 487, 181, 601, 661, 241, 787, 853, 307, 991, 1063, 379, 1213, 1291, 457, 1453, 53, 541, 1801, 631, 1987, 2083, 727, 2281, 2383, 829, 2593, 937, 3037, 1051, 3271, 3391, 1171, 3637, 71, 1297, 4021, 4153, 1429, 4423, 4561, 1567, 167, 4987, 5281, 5431, 1861, 5737, 83, 2017, 6211, 6373, 2179, 6703, 6871, 2347, 7213, 89, 2521, 7741, 8287, 229, 2887, 9043, 3079, 9433, 9631, 113, 353, 10651, 10861, 3691, 11287, 11503, 3907, 11941, 12163, 4129, 12613, 12841, 4357, 251, 13537, 4591, 14011, 14251, 4831, 14737, 14983, 5077, 137, 15733, 439, 569, 587, 293, 5851, 6121, 18637, 18913, 6397, 19471, 19753, 6679, 20323, 20611, 6967, 21193, 21487, 311, 22381, 7561, 23293, 7867, 23911, 24223, 8179, 857, 25171, 443, 8821, 367, 733, 9151, 751, 28123, 179, 347, 9829, 29833, 30181, 10177, 31237, 10531, 359, 409, 10891, 33037, 33403, 11257, 34141, 34513, 401, 197, 1229, 12007, 617, 36787, 12391, 37561, 37951, 12781, 38737, 39133, 13177, 547, 761, 41143, 1123, 42373, 42787, 14401, 44041, 14821, 44887, 46171, 1607, 15679, 1637, 47911, 227, 827, 929, 16561, 50131, 50581, 17011, 51487, 17467, 52861, 53323, 17929, 239, 54721, 18397, 55663, 769, 1543, 57571, 523, 58537, 59023, 2069, 60493, 701, 61483, 61981, 62983, 63487, 257, 1217, 65011, 21841, 66037, 66553, 263, 68113, 69163, 69691, 70753, 71287, 269, 72901, 24481, 1021, 863, 1427, 25579, 2089, 613, 79537, 26701, 80671, 593, 27271, 82387, 82963, 27847, 84121, 1193, 28429, 1087, 86461, 29017, 87643, 88237, 29611, 89431, 90031, 30211, 91237, 3167, 30817, 3209, 94903, 1619, 96763, 97387, 883, 98641, 2683, 33301, 100537, 101173, 33937, 102451, 103093, 104383, 105031, 35227, 941, 1289, 677, 108301, 108961, 36541, 3803, 1283, 112291, 1361, 37879, 1447, 1949, 38557, 117037, 39241, 118411, 119101, 1697, 40627, 3313, 1091, 1117, 124693, 1409, 126823, 1433, 42751, 128971, 2447, 1499, 1847, 4547, 133321, 134053, 2297, 136261, 45667, 137743, 1753, 46411, 139981, 140731, 47161, 142237, 142993, 47917, 144511, 2741, 48679, 2011, 147571, 149113, 4051, 50221, 4093, 51001, 5303, 154573, 51787, 156151, 156943, 52579, 2687, 1163, 53377, 160933, 821, 54181, 163351, 983, 859, 166603, 55807, 2027, 169063, 56629, 3221, 171541, 57457, 2203, 176551, 2039, 1301, 179083, 1621, 4909, 1031, 183343, 1103, 61687, 185923, 1237, 881, 3557, 189391, 63421, 191137, 192013, 193771, 194653, 65179, 2207, 197311, 66067, 2237, 2309, 201781, 204487, 68767, 2851, 1181, 209953, 5749, 213637, 1933, 1907, 216421, 1367, 218287, 219223, 73387, 221101, 222043, 1483, 224881, 75277, 226783, 7853, 76231, 7919, 230611, 77191, 1831, 977, 78157, 235441, 4007, 1493, 238363, 3371, 80107, 241303, 3319, 244261, 245251, 1039, 6709, 83077, 6763, 251233, 1013, 253243, 3581, 85087, 8837, 257287, 2969, 259321, 87121, 262387, 1093, 265471, 4517, 268573, 5087, 90217, 271693, 272737, 274831, 275881, 92311, 1553, 1061, 1279, 3559, 2239, 285421, 2099, 290791, 5507, 97651, 295123, 98737, 5039, 1667, 99829, 300583, 301681, 100927, 1327, 2699, 102031, 307201, 308311, 103141, 1609, 311653, 4421, 315013, 105379, 317263, 10979, 1459, 11057, 107641, 325201, 328633, 2971, 4001, 334393, 112237, 337873, 1721, 4127, 114571, 344887, 348421, 349603, 116929, 353161, 4073, 2129, 356737, 119311, 1823, 1867, 120511, 4969, 2063, 367573, 122929, 370003, 124147, 10099, 374887, 125371, 378571, 126601, 381037, 1523, 127837, 384751, 4337, 4451, 388483, 2459, 392233, 393487, 131581, 396001, 1871, 399787, 401053, 2273, 403591, 1613, 5581, 408691, 136657, 411253, 412537, 137941, 415111, 416401, 418987, 140527, 422881, 14627, 141829, 14717, 5419, 143137, 430723, 432037, 144451, 5237, 3433, 145771, 438637, 7457, 147097, 3917, 443953, 148429, 5381, 447961, 149767, 450643, 451987, 2003, 6247, 152461, 8681, 153817, 15959, 464173, 5351, 12619, 468271, 4231, 1423, 2081, 1999, 475141, 4217, 479287, 8147, 160687, 2671, 3539, 162079, 9227, 163477, 491833, 6947, 164881, 496051, 497461, 500287, 501703, 5783, 5669, 169129, 5717, 510241, 170557, 513103, 7247, 517411, 173431, 174877, 2939, 527533, 176329, 530443, 531901, 177787, 10091, 536287, 2269, 3571, 540691, 543637, 18797, 18899, 549553, 2213, 552523, 554011, 185167, 1901, 2557, 2917, 2267, 567493, 570511, 572023, 5167, 575053, 15583, 192697, 579613, 581137, 585721, 195751, 590323, 6803, 593401, 1913, 198829, 8423, 2333, 604237, 1787, 3083, 2659, 3449, 612037, 1973, 616741, 2351, 1627, 8753, 623041, 208207, 2381, 627787, 17053, 1669, 635737, 21977, 2393, 640531, 642133, 2411, 5711, 4079, 2417, 2423, 655021, 4793, 3719, 8353, 661513, 221047, 664771, 666403, 222679, 669673, 224317, 9241, 2953, 225961, 679531, 227611, 23603, 686143, 229267, 689461, 18679, 230929, 8387, 232597, 699463, 13229, 234271, 11969, 235951, 709537, 711223, 3347, 714601, 9067, 239329, 719683, 721381, 241027, 724783, 726487, 242731, 25169, 731611, 8429, 10069, 13901, 3467, 740191, 741913, 247879, 5869, 2153, 249607, 750553, 752287, 6793, 3011, 253081, 2689, 254827, 766231, 4243, 256579, 773251, 258337, 778537, 8969, 782071, 3137, 8867, 263647, 14957, 10957, 267217, 803443, 2243, 13709, 814237, 816043, 22153, 4919, 7417, 9941, 826921, 276247, 15671, 28703, 278071, 11801, 2477, 10139, 281737, 847051, 848893, 283579, 852583, 854431, 3613, 5683, 859987, 287281, 14639, 289141, 3607, 4813, 291007, 874891, 2389, 292879, 880513, 882391, 294757, 30557, 24001, 24103, 893701, 6551, 300427, 3779, 905083, 302329, 908893, 1993, 2591, 916537, 5189, 920371, 922291, 928063, 5849, 931921, 933853, 4273, 2833, 939661, 943543, 32603, 315811, 949381, 951331, 10733, 957193, 8641, 10799, 26029, 321679, 967003, 968971, 323647, 974887, 5519, 2441, 7723, 3947, 5009, 329587, 4111, 18731, 331579, 2437, 34439, 4019, 1004737, 4597, 1014787, 1020841, 3491, 341629, 1026913,

7. Distribution of the primes

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

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
21008656300.8600000.5600000.8600008.6000006.22222230.000000
31.0008283504780.8280000.3500000.8280009.6279076.25000015.933333
410.0007.9292.5135.4160.7929000.2513000.7929009.5760877.18000011.330544
5100.00077.02819.54657.4820.7702800.1954600.7702809.7147187.77795510.613368
61.000.000756.893158.653598.2400.7568930.1586530.7568939.8262068.11690310.407432
710.000.0007.472.3681.343.8616.128.5070.7472370.1343860.7472379.8724238.47044210.244228
8100.000.00074.028.15111.640.18662.387.9650.7402820.1164020.7402829.9069208.66174910.179961
91.000.000.000734.857.894102.718.009632.139.8850.7348580.1027180.7348589.9267368.82443010.132401
1010.000.000.0007.305.543.607919.169.5306.386.374.0770.7305540.0919170.7305549.9414378.94847510.102786


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
6645738190.8906250.5937500.2968751.9000001.8095242.111111
712810966430.8515620.5156250.3359381.9122811.7368422.263158
8256211120910.8242190.4687500.3554691.9357801.8181822.116279
95124302072230.8398440.4042970.4355472.0379151.7250002.450549
101.0248463584880.8261720.3496090.4765621.9674421.7294692.188341
112.0481.6666381.0280.8134770.3115230.5019531.9692671.7821232.106557
124.0963.2851.1682.1170.8020020.2851560.5168461.9717891.8307212.059339
138.1926.5112.0984.4130.7948000.2561040.5386961.9820401.7962332.084554
1416.38412.9143.8839.0310.7882080.2370000.5512081.9834131.8508102.046454
1532.76825.5707.17918.3910.7803340.2190860.5612491.9800221.8488282.036430
1665.53650.61413.36537.2490.7723080.2039340.5683751.9794291.8616802.025393
17131.072100.70324.85975.8440.7683030.1896590.5786441.9896271.8600082.036135
18262.144200.21946.696153.5230.7637750.1781310.5856441.9882131.8784342.024194
19524.288398.47787.618310.8590.7600350.1671180.5929161.9902061.8763492.024837
201.048.576793.452165.736627.7160.7566950.1580580.5986371.9912121.8915752.019295
212.097.1521.580.255314.4061.265.8490.7535240.1499200.6036041.9916201.8970292.016595
224.194.3043.147.739598.3942.549.3450.7504790.1426680.6078111.9919181.9032522.013941
238.388.6086.273.5911.140.4015.133.1900.7478700.1359460.6119241.9930471.9057692.013533
2416.777.21612.507.2962.178.19110.329.1050.7454930.1298300.6156631.9936421.9100222.012219
2533.554.43224.943.7414.168.78020.774.9610.7433810.1242390.6191421.9943351.9138732.011303
2667.108.86449.753.7537.994.29641.759.4570.7413890.1191240.6222641.9946391.9176582.010086
27134.217.72899.256.34515.359.62383.896.7220.7395170.1144380.6250791.9949521.9213232.009047
28268.435.456198.053.97629.552.392168.501.5840.7378090.1100910.6277171.9953791.9240312.008441
29536.870.912395.246.58856.951.630338.294.9580.7362040.1060810.6301231.9956511.9271412.007666
301.073.741.824788.890.671109.891.804678.998.8670.7347120.1023450.6323671.9959461.9295642.007121
312.147.483.6481.574.800.951212.305.5281.362.495.4230.7333240.0988620.6344611.9962221.9319512.006624
324.294.967.2963.144.045.204410.614.2182.733.430.9860.7320300.0956040.6364271.9964721.9340722.006195
338.589.934.5926.277.606.452795.077.4685.482.528.9840.7308100.0925590.6382501.9966651.9363132.005732
3417.179.869.18412.535.596.7381.541.036.52210.994.560.2160.7296680.0897000.6399681.9968751.9382222.005381


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
123020210
245221220
387422221
416131024432
532211825664
6643835211999
71286663217151717
8256120117228303131
9512207204244515656
101.024358355284919192
112.0486386352164160154160
124.0961.1681.1652294294288292
138.1922.0982.0952532536515515
1416.3843.8833.8802976983969955
1532.7687.1797.17621.7931.7821.8351.769
1665.53613.36513.36223.3723.3083.3773.308
17131.07224.85924.85626.1756.2036.2936.188
18262.14446.69646.693211.61811.66411.75511.659
19524.28887.61887.615221.90421.92021.92721.867
201.048.576165.736165.733241.39641.47441.60341.263
212.097.152314.406314.403278.46478.72778.82378.392
224.194.304598.394598.3912149.421149.684149.719149.570
238.388.6081.140.4011.140.3982284.780285.294285.129285.198
2416.777.2162.178.1912.178.1882544.204545.010544.110544.867
2533.554.4324.168.7804.168.77721.042.2691.042.6411.041.1371.042.733
2667.108.8647.994.2967.994.29321.997.2681.999.9271.997.3481.999.753
27134.217.72815.359.62315.359.62023.838.1373.841.1893.839.3143.840.983
28268.435.45629.552.39229.552.38927.386.7097.390.5367.386.4307.388.717
29536.870.91256.951.63056.951.627214.236.98814.239.50114.235.45314.239.688
301.073.741.824109.891.804109.891.801227.470.24727.476.96927.470.31927.474.269
312.147.483.648212.305.528212.305.525253.078.50453.083.78453.068.50453.074.736
324.294.967.296410.614.218410.614.2152102.653.528102.659.508102.645.958102.655.224
338.589.934.592795.077.468795.077.4652198.773.859198.774.894198.754.506198.774.209
3417.179.869.1841.541.036.5221.541.036.5192385.269.970385.266.740385.242.430385.257.382


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
5329902223
664191814456
71284337610111012
825691702126232022
95122231477652566154
101.024488295193118129120121
112.0481.028600428242267261258
124.0962.1171.217900489560534534
138.1924.4132.4601.9531.0661.1301.0951.122
1416.3849.0315.0204.0112.2092.2832.2572.282
1532.76818.39110.1518.2404.4744.6644.6534.600
1665.53637.24920.38916.8609.2139.2899.4169.331
17131.07275.84441.22834.61618.77019.03919.07018.965
18262.144153.52383.14570.37838.30538.29538.42338.500
19524.288310.859167.675143.18477.64077.54277.71777.960
201.048.576627.716336.763290.953156.865157.123156.826156.902
212.097.1521.265.849676.645589.204316.393316.390316.494316.572
224.194.3042.549.3451.359.0921.190.253637.082637.730637.106637.427
238.388.6085.133.1902.727.3562.405.8341.282.4011.283.6731.283.5951.283.521
2416.777.21610.329.1055.472.3354.856.7702.581.5572.582.2752.584.0562.581.217
2533.554.43220.774.96110.980.1449.794.8175.190.7415.193.1525.196.7575.194.311
2667.108.86441.759.45722.019.00819.740.44910.437.26010.443.08910.441.45910.437.649
27134.217.72883.896.72244.142.80839.753.91420.966.97720.977.78620.975.95720.976.002
28268.435.456168.501.58488.488.84280.012.74242.120.81042.129.65242.126.86442.124.258
29536.870.912338.294.958177.323.775160.971.18384.560.67184.579.92384.573.54684.580.818
301.073.741.824678.998.867355.311.291323.687.576169.747.101169.750.246169.749.381169.752.139
312.147.483.6481.362.495.423711.844.977650.650.446340.611.319340.618.998340.638.331340.626.775
324.294.967.2962.733.430.9861.425.987.4391.307.443.547683.336.872683.341.663683.374.996683.377.455
338.589.934.5925.482.528.9842.856.216.9912.626.311.9931.370.605.6181.370.631.8611.370.638.0571.370.653.448
3417.179.869.18410.994.560.2165.720.366.0705.274.194.1462.748.579.9612.748.611.6842.748.696.2702.748.672.301


8. Check for existing Integer Sequences by OEIS

Found in Database : 59, 29, 3, 37, 73, 1, 151, 193, 79, 283, 331, 127, 433, 487, 181, 601, 661, 241, 787, 853,
Found in Database : 59, 29, 3, 37, 73, 151, 193, 79, 283, 331, 127, 433, 487, 181, 601, 661, 241, 787, 853, 307, 991, 1063, 379, 1213, 1291, 457, 1453, 53, 541, 1801, 631, 1987, 2083, 727, 2281, 2383, 829, 2593,
Found in Database : 3, 29, 37, 53, 59, 71, 73, 79, 83, 89, 113, 127, 137,