Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:19:37
Deutsch
19.Apr 2024

Polynom = x^2+40x-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) = 3 = 3
f(2) = 37 = 37
f(3) = 41 = 41
f(4) = 129 = 3*43
f(5) = 89 = 89
f(6) = 229 = 229
f(7) = 141 = 3*47
f(8) = 337 = 337
f(9) = 197 = 197
f(10) = 453 = 3*151
f(11) = 257 = 257
f(12) = 577 = 577
f(13) = 321 = 3*107
f(14) = 709 = 709
f(15) = 389 = 389
f(16) = 849 = 3*283
f(17) = 461 = 461
f(18) = 997 = 997
f(19) = 537 = 3*179
f(20) = 1153 = 1153
f(21) = 617 = 617
f(22) = 1317 = 3*439
f(23) = 701 = 701
f(24) = 1489 = 1489
f(25) = 789 = 3*263
f(26) = 1669 = 1669
f(27) = 881 = 881
f(28) = 1857 = 3*619
f(29) = 977 = 977
f(30) = 2053 = 2053
f(31) = 1077 = 3*359
f(32) = 2257 = 37*61
f(33) = 1181 = 1181
f(34) = 2469 = 3*823
f(35) = 1289 = 1289
f(36) = 2689 = 2689
f(37) = 1401 = 3*467
f(38) = 2917 = 2917
f(39) = 1517 = 37*41
f(40) = 3153 = 3*1051
f(41) = 1637 = 1637
f(42) = 3397 = 43*79
f(43) = 1761 = 3*587
f(44) = 3649 = 41*89
f(45) = 1889 = 1889
f(46) = 3909 = 3*1303
f(47) = 2021 = 43*47
f(48) = 4177 = 4177
f(49) = 2157 = 3*719
f(50) = 4453 = 61*73
f(51) = 2297 = 2297
f(52) = 4737 = 3*1579
f(53) = 2441 = 2441
f(54) = 5029 = 47*107
f(55) = 2589 = 3*863
f(56) = 5329 = 73*73
f(57) = 2741 = 2741
f(58) = 5637 = 3*1879
f(59) = 2897 = 2897
f(60) = 5953 = 5953
f(61) = 3057 = 3*1019
f(62) = 6277 = 6277
f(63) = 3221 = 3221
f(64) = 6609 = 3*2203
f(65) = 3389 = 3389
f(66) = 6949 = 6949
f(67) = 3561 = 3*1187
f(68) = 7297 = 7297
f(69) = 3737 = 37*101
f(70) = 7653 = 3*2551
f(71) = 3917 = 3917
f(72) = 8017 = 8017
f(73) = 4101 = 3*1367
f(74) = 8389 = 8389
f(75) = 4289 = 4289
f(76) = 8769 = 3*37*79
f(77) = 4481 = 4481
f(78) = 9157 = 9157
f(79) = 4677 = 3*1559
f(80) = 9553 = 41*233
f(81) = 4877 = 4877
f(82) = 9957 = 3*3319
f(83) = 5081 = 5081
f(84) = 10369 = 10369
f(85) = 5289 = 3*41*43
f(86) = 10789 = 10789
f(87) = 5501 = 5501
f(88) = 11217 = 3*3739
f(89) = 5717 = 5717
f(90) = 11653 = 43*271
f(91) = 5937 = 3*1979
f(92) = 12097 = 12097
f(93) = 6161 = 61*101
f(94) = 12549 = 3*47*89
f(95) = 6389 = 6389
f(96) = 13009 = 13009
f(97) = 6621 = 3*2207
f(98) = 13477 = 13477
f(99) = 6857 = 6857
f(100) = 13953 = 3*4651

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

f(0)=47
f(1)=3
f(2)=37
f(3)=41
f(4)=43
f(5)=89
f(6)=229
f(7)=1
f(8)=337
f(9)=197
f(10)=151
f(11)=257
f(12)=577
f(13)=107
f(14)=709
f(15)=389
f(16)=283
f(17)=461
f(18)=997
f(19)=179
f(20)=1153
f(21)=617
f(22)=439
f(23)=701
f(24)=1489
f(25)=263
f(26)=1669
f(27)=881
f(28)=619
f(29)=977
f(30)=2053
f(31)=359
f(32)=61
f(33)=1181
f(34)=823
f(35)=1289
f(36)=2689
f(37)=467
f(38)=2917
f(39)=1
f(40)=1051
f(41)=1637
f(42)=79
f(43)=587
f(44)=1
f(45)=1889
f(46)=1303
f(47)=1
f(48)=4177
f(49)=719
f(50)=73
f(51)=2297
f(52)=1579
f(53)=2441
f(54)=1
f(55)=863
f(56)=1
f(57)=2741
f(58)=1879
f(59)=2897
f(60)=5953
f(61)=1019
f(62)=6277
f(63)=3221
f(64)=2203
f(65)=3389
f(66)=6949
f(67)=1187
f(68)=7297
f(69)=101
f(70)=2551
f(71)=3917
f(72)=8017
f(73)=1367
f(74)=8389
f(75)=4289
f(76)=1
f(77)=4481
f(78)=9157
f(79)=1559
f(80)=233
f(81)=4877
f(82)=3319
f(83)=5081
f(84)=10369
f(85)=1
f(86)=10789
f(87)=5501
f(88)=3739
f(89)=5717
f(90)=271
f(91)=1979
f(92)=12097
f(93)=1
f(94)=1
f(95)=6389
f(96)=13009
f(97)=2207
f(98)=13477
f(99)=6857

b) Substitution of the polynom
The polynom f(x)=x^2+40x-47 could be written as f(y)= y^2-447 with x=y-20

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+20
f'(x)>2x+39

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, 3, 37, 41, 43, 89, 229, 1, 337, 197, 151, 257, 577, 107, 709, 389, 283, 461, 997, 179, 1153, 617, 439, 701, 1489, 263, 1669, 881, 619, 977, 2053, 359, 61, 1181, 823, 1289, 2689, 467, 2917, 1, 1051, 1637, 79, 587, 1, 1889, 1303, 1, 4177, 719, 73, 2297, 1579, 2441, 1, 863, 1, 2741, 1879, 2897, 5953, 1019, 6277, 3221, 2203, 3389, 6949, 1187, 7297, 101, 2551, 3917, 8017, 1367, 8389, 4289, 1, 4481, 9157, 1559, 233, 4877, 3319, 5081, 10369, 1, 10789, 5501, 3739, 5717, 271, 1979, 12097, 1, 1, 6389, 13009, 2207, 13477, 6857, 4651, 1, 14437, 2447, 14929, 7589, 139, 7841, 15937, 2699, 16453, 137, 5659, 1, 17509, 2963, 18049, 9161, 6199, 9437, 1, 1, 19717, 1, 6763, 10289, 509, 3527, 499, 149, 7351, 11177, 163, 1, 23269, 11789, 7963, 12101, 24517, 4139, 25153, 1, 8599, 353, 26449, 4463, 27109, 13721, 1, 14057, 769, 4799, 29137, 14741, 1, 191, 30529, 5147, 31237, 15797, 10651, 1, 797, 5507, 33409, 16889, 11383, 421, 34897, 5879, 1, 419, 199, 18401, 37189, 6263, 883, 19181, 12919, 19577, 1069, 6659, 40357, 1, 13723, 20789, 211, 1, 911, 21617, 14551, 22037, 44497, 7487, 449, 487, 1, 23321, 1, 7919, 607, 24197, 223, 601, 1, 8363, 1, 25541, 1, 25997, 52453, 8819, 53377, 26921, 1, 1, 55249, 251, 56197, 659, 19051, 28817, 653, 9767, 1597, 29789, 20023, 1, 61057, 10259, 62053, 31277, 21019, 521, 811, 1, 65089, 32801, 22039, 33317, 67153, 11279, 1451, 34361, 563, 1, 70309, 11807, 1, 877, 24151, 36497, 1, 12347, 2017, 37589, 25243, 887, 76837, 12899, 569, 1061, 613, 39821, 80209, 13463, 81349, 40961, 1, 1, 83653, 1, 953, 42701, 28663, 593, 1429, 14627, 1, 1, 29851, 45077, 1931, 15227, 91969, 1129, 31063, 46901, 1, 1, 2333, 1301, 32299, 48761, 1609, 1, 99409, 50021, 907, 1, 2371, 17099, 103237, 51941, 34843, 1223, 105829, 17747, 107137, 53897, 36151, 1, 727, 1, 111109, 55889, 37483, 347, 113797, 19079, 115153, 57917, 38839, 58601, 117889, 19763, 2909, 59981, 1087, 1291, 122053, 1, 123457, 62081, 1, 1697, 2687, 1, 127717, 64217, 43051, 64937, 1789, 1, 132049, 1, 1, 67121, 1, 22619, 136453, 68597, 45979, 69341, 139429, 383, 140929, 70841, 1, 71597, 143953, 1, 145477, 73121, 49003, 1997, 148549, 1, 150097, 75437, 50551, 1, 1, 25667, 154789, 1, 1109, 1, 827, 26459, 159553, 80177, 53719, 1723, 1171, 1, 3823, 82601, 55339, 83417, 1, 1, 2143, 85061, 56983, 85889, 1709, 1, 2857, 87557, 1, 88397, 4801, 1, 1, 90089, 60343, 431, 4457, 1, 1327, 92657, 1, 2281, 187909, 1, 3109, 95261, 63799, 96137, 193153, 443, 194917, 2083, 65563, 1, 198469, 1, 200257, 2339, 1433, 101477, 203857, 34127, 4783, 103289, 69163, 1319, 209317, 947, 211153, 991, 70999, 106961, 214849, 35963, 5857, 108821, 72859, 2677, 2477, 36899, 222337, 111641, 1823, 112589, 226129, 37847, 1399, 1877, 76651, 1, 231877, 1, 1021, 117389, 78583, 118361, 1, 39779, 5099, 1523, 1873, 1201, 243589, 40763, 6637, 1, 1, 124277, 1531, 41759, 2351, 3413, 84523, 127289, 255589, 42767, 3529, 1453, 2111, 130337, 261697, 43787, 3613, 3229, 1, 1321, 267877, 44819, 269953, 135497, 90679, 136541, 1, 45863, 276229, 138641, 92779, 139697, 1, 46919, 282577, 3833, 94903, 3323, 3631, 1, 288997, 145037, 1, 146117, 2141, 1, 6287, 1, 99223, 149381, 299857, 50159, 302053, 3697, 101419, 152681, 2237, 51263, 7529, 1, 1699, 1753, 313153, 52379, 1601, 158261, 105883, 159389, 1373, 53507, 3011, 1163, 1, 1, 326737, 54647, 2179, 165089, 1, 4493, 7759, 55799, 335953, 2309, 112759, 3947, 7247, 56963, 342949, 2357, 115099, 1, 1747, 1237, 8537, 175601, 1, 176789, 2381, 1447, 4013, 1, 119851, 2957, 1279, 60527, 1831, 182789, 122263, 4973, 1, 1, 1, 186437, 124699, 187661, 10177, 1, 379009, 190121, 1259, 3137, 1949, 1493, 386437, 193841, 129643, 195089, 9103, 65447, 1867, 197597, 132151, 4231, 398977, 1627, 2659, 201389, 134683, 202661, 1, 67979, 409153, 1, 137239, 206501, 11197, 69263, 1, 1, 1571, 2663, 1, 1907, 1567, 212981, 1951, 1, 429889, 71867, 1, 216917, 1987, 1, 7177, 1, 10243, 220889, 147703, 1, 1999, 1733, 2011, 224897, 150379, 226241, 11069, 1, 456529, 1, 3257, 1, 7573, 2087, 3343, 233021, 1, 4987, 470149, 1, 12781, 237137, 158551, 1741, 478417, 79967, 6091, 2389, 161323, 242681, 486757, 81359, 489553, 245477, 1, 1, 1427, 82763, 497989, 5807, 1, 251117, 503653, 84179, 11779, 1, 169783, 6229, 4787, 85607, 13921, 2557, 4211, 259697, 520837, 1, 523729, 1, 175543, 3617, 6703, 88499, 532453, 266957, 3797, 3677, 538309, 89963, 541249, 3049, 181399, 1, 2129, 1499, 550117, 1, 1, 1861, 556069, 92927, 2927, 280277, 4357, 281777, 565057, 94427, 568069, 1, 4643, 286301, 1, 1, 577153, 7057, 5227, 290861, 583249, 97463, 586309, 1, 196459, 1, 592453, 98999, 12671, 3779, 1, 300089, 6761, 100547, 604837, 6451, 1, 304757, 5711, 102107, 10069, 2039, 205783, 309461, 1, 1, 623653, 312617, 5647, 7307, 629989, 105263, 6269, 7741, 4933, 1, 8761, 106859, 1, 1619, 1, 323789, 8893, 1, 652417, 327017, 218551, 328637, 658897, 1, 662149, 331889, 1, 1693, 668677, 2377, 6653, 2423, 225079, 3163, 1, 113363, 1, 1, 1667, 9281, 688453, 115019, 2969, 346721, 1, 348389, 1, 116687, 17117, 1, 235051, 8219, 708517, 2887, 711889, 5849, 238423, 2579, 718657, 1, 1, 361877, 3061, 363581, 728869, 121763, 4091, 367001, 1, 368717, 739153, 123479, 1, 6101, 248683, 4201, 1, 125207, 752977, 1, 252151, 379097, 1, 1, 763429, 382589, 1, 1, 770437, 1, 773953, 387857, 259159, 389621, 1, 1, 9931, 393161, 1, 3691, 3457, 1, 795217, 1787, 1, 1, 2273, 1, 1, 403877, 269851, 405677, 813157, 3671, 816769, 409289, 4483, 411101, 824017, 137639, 22369, 414737, 277099, 8863, 834949, 1, 838609, 420221, 280759, 422057, 1, 1, 19759, 1, 4663, 10429, 857029, 3329, 1, 431297, 2693, 5483, 868177, 145007, 4871, 436889, 1933, 438761, 1, 1, 23869, 442517, 1, 444401, 1, 148763, 12253, 12113, 299419, 450077, 902053, 150659, 12409, 3313, 3407, 455789, 4637, 152567, 917317, 1, 1, 11257, 924997, 154487, 928849, 1, 7583, 1, 936577, 156419, 21871, 2467, 314779, 473141, 3499, 158363, 952129, 12893, 318679, 1, 959953, 160319, 963877, 1, 8719, 7949, 6991, 162287, 4903, 2999, 1, 1, 983617, 164267, 1, 494789, 3089, 1, 9857, 166259, 999553, 500777, 1, 502781, 11321, 168263, 1011589, 1, 7873, 508817, 12907, 170279, 1023697, 11927, 1, 514889, 1031809, 172307, 4127, 7109,

6. Sequence of the polynom (only primes)

47, 3, 37, 41, 43, 89, 229, 337, 197, 151, 257, 577, 107, 709, 389, 283, 461, 997, 179, 1153, 617, 439, 701, 1489, 263, 1669, 881, 619, 977, 2053, 359, 61, 1181, 823, 1289, 2689, 467, 2917, 1051, 1637, 79, 587, 1889, 1303, 4177, 719, 73, 2297, 1579, 2441, 863, 2741, 1879, 2897, 5953, 1019, 6277, 3221, 2203, 3389, 6949, 1187, 7297, 101, 2551, 3917, 8017, 1367, 8389, 4289, 4481, 9157, 1559, 233, 4877, 3319, 5081, 10369, 10789, 5501, 3739, 5717, 271, 1979, 12097, 6389, 13009, 2207, 13477, 6857, 4651, 14437, 2447, 14929, 7589, 139, 7841, 15937, 2699, 16453, 137, 5659, 17509, 2963, 18049, 9161, 6199, 9437, 19717, 6763, 10289, 509, 3527, 499, 149, 7351, 11177, 163, 23269, 11789, 7963, 12101, 24517, 4139, 25153, 8599, 353, 26449, 4463, 27109, 13721, 14057, 769, 4799, 29137, 14741, 191, 30529, 5147, 31237, 15797, 10651, 797, 5507, 33409, 16889, 11383, 421, 34897, 5879, 419, 199, 18401, 37189, 6263, 883, 19181, 12919, 19577, 1069, 6659, 40357, 13723, 20789, 211, 911, 21617, 14551, 22037, 44497, 7487, 449, 487, 23321, 7919, 607, 24197, 223, 601, 8363, 25541, 25997, 52453, 8819, 53377, 26921, 55249, 251, 56197, 659, 19051, 28817, 653, 9767, 1597, 29789, 20023, 61057, 10259, 62053, 31277, 21019, 521, 811, 65089, 32801, 22039, 33317, 67153, 11279, 1451, 34361, 563, 70309, 11807, 877, 24151, 36497, 12347, 2017, 37589, 25243, 887, 76837, 12899, 569, 1061, 613, 39821, 80209, 13463, 81349, 40961, 83653, 953, 42701, 28663, 593, 1429, 14627, 29851, 45077, 1931, 15227, 91969, 1129, 31063, 46901, 2333, 1301, 32299, 48761, 1609, 99409, 50021, 907, 2371, 17099, 103237, 51941, 34843, 1223, 105829, 17747, 107137, 53897, 36151, 727, 111109, 55889, 37483, 347, 113797, 19079, 115153, 57917, 38839, 58601, 117889, 19763, 2909, 59981, 1087, 1291, 122053, 123457, 62081, 1697, 2687, 127717, 64217, 43051, 64937, 1789, 132049, 67121, 22619, 136453, 68597, 45979, 69341, 139429, 383, 140929, 70841, 71597, 143953, 145477, 73121, 49003, 1997, 148549, 150097, 75437, 50551, 25667, 154789, 1109, 827, 26459, 159553, 80177, 53719, 1723, 1171, 3823, 82601, 55339, 83417, 2143, 85061, 56983, 85889, 1709, 2857, 87557, 88397, 4801, 90089, 60343, 431, 4457, 1327, 92657, 2281, 187909, 3109, 95261, 63799, 96137, 193153, 443, 194917, 2083, 65563, 198469, 200257, 2339, 1433, 101477, 203857, 34127, 4783, 103289, 69163, 1319, 209317, 947, 211153, 991, 70999, 106961, 214849, 35963, 5857, 108821, 72859, 2677, 2477, 36899, 222337, 111641, 1823, 112589, 226129, 37847, 1399, 1877, 76651, 231877, 1021, 117389, 78583, 118361, 39779, 5099, 1523, 1873, 1201, 243589, 40763, 6637, 124277, 1531, 41759, 2351, 3413, 84523, 127289, 255589, 42767, 3529, 1453, 2111, 130337, 261697, 43787, 3613, 3229, 1321, 267877, 44819, 269953, 135497, 90679, 136541, 45863, 276229, 138641, 92779, 139697, 46919, 282577, 3833, 94903, 3323, 3631, 288997, 145037, 146117, 2141, 6287, 99223, 149381, 299857, 50159, 302053, 3697, 101419, 152681, 2237, 51263, 7529, 1699, 1753, 313153, 52379, 1601, 158261, 105883, 159389, 1373, 53507, 3011, 1163, 326737, 54647, 2179, 165089, 4493, 7759, 55799, 335953, 2309, 112759, 3947, 7247, 56963, 342949, 2357, 115099, 1747, 1237, 8537, 175601, 176789, 2381, 1447, 4013, 119851, 2957, 1279, 60527, 1831, 182789, 122263, 4973, 186437, 124699, 187661, 10177, 379009, 190121, 1259, 3137, 1949, 1493, 386437, 193841, 129643, 195089, 9103, 65447, 1867, 197597, 132151, 4231, 398977, 1627, 2659, 201389, 134683, 202661, 67979, 409153, 137239, 206501, 11197, 69263, 1571, 2663, 1907, 1567, 212981, 1951, 429889, 71867, 216917, 1987, 7177, 10243, 220889, 147703, 1999, 1733, 2011, 224897, 150379, 226241, 11069, 456529, 3257, 7573, 2087, 3343, 233021, 4987, 470149, 12781, 237137, 158551, 1741, 478417, 79967, 6091, 2389, 161323, 242681, 486757, 81359, 489553, 245477, 1427, 82763, 497989, 5807, 251117, 503653, 84179, 11779, 169783, 6229, 4787, 85607, 13921, 2557, 4211, 259697, 520837, 523729, 175543, 3617, 6703, 88499, 532453, 266957, 3797, 3677, 538309, 89963, 541249, 3049, 181399, 2129, 1499, 550117, 1861, 556069, 92927, 2927, 280277, 4357, 281777, 565057, 94427, 568069, 4643, 286301, 577153, 7057, 5227, 290861, 583249, 97463, 586309, 196459, 592453, 98999, 12671, 3779, 300089, 6761, 100547, 604837, 6451, 304757, 5711, 102107, 10069, 2039, 205783, 309461, 623653, 312617, 5647, 7307, 629989, 105263, 6269, 7741, 4933, 8761, 106859, 1619, 323789, 8893, 652417, 327017, 218551, 328637, 658897, 662149, 331889, 1693, 668677, 2377, 6653, 2423, 225079, 3163, 113363, 1667, 9281, 688453, 115019, 2969, 346721, 348389, 116687, 17117, 235051, 8219, 708517, 2887, 711889, 5849, 238423, 2579, 718657, 361877, 3061, 363581, 728869, 121763, 4091, 367001, 368717, 739153, 123479, 6101, 248683, 4201, 125207, 752977, 252151, 379097, 763429, 382589, 770437, 773953, 387857, 259159, 389621, 9931, 393161, 3691, 3457, 795217, 1787, 2273, 403877, 269851, 405677, 813157, 3671, 816769, 409289, 4483, 411101, 824017, 137639, 22369, 414737, 277099, 8863, 834949, 838609, 420221, 280759, 422057, 19759, 4663, 10429, 857029, 3329, 431297, 2693, 5483, 868177, 145007, 4871, 436889, 1933, 438761, 23869, 442517, 444401, 148763, 12253, 12113, 299419, 450077, 902053, 150659, 12409, 3313, 3407, 455789, 4637, 152567, 917317, 11257, 924997, 154487, 928849, 7583, 936577, 156419, 21871, 2467, 314779, 473141, 3499, 158363, 952129, 12893, 318679, 959953, 160319, 963877, 8719, 7949, 6991, 162287, 4903, 2999, 983617, 164267, 494789, 3089, 9857, 166259, 999553, 500777, 502781, 11321, 168263, 1011589, 7873, 508817, 12907, 170279, 1023697, 11927, 514889, 1031809, 172307, 4127, 7109,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+40x-47 and
the reducible primes which appear as divisor for the first time
p | x^2+40x-47 and p < x^2+40x-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)
11010461.0000000.4000001.0000000.0000000.0000000.000000
21008726610.8700000.2600000.8700008.7000006.50000010.166667
31.0008041706340.8040000.1700000.8040009.2413806.53846210.393442
410.0007.7391.2696.4700.7739000.1269000.7739009.6256227.46470610.205048
5100.00075.5469.72165.8250.7554600.0972100.7554609.7617267.66036310.173880
61.000.000744.25379.365664.8880.7442530.0793650.7442539.8516538.16428410.100843
710.000.0007.363.713672.2516.691.4620.7363710.0672250.7363719.8940998.47037110.064044
8100.000.00073.076.4805.824.22867.252.2520.7307650.0582420.7307659.9238638.66377010.050458
91.000.000.000726.386.54051.381.997675.004.5430.7263870.0513820.7263879.9400878.82211310.036905
1010.000.000.0007.229.081.703459.830.0036.769.251.7000.7229080.0459830.7229089.9521148.94924410.028454


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)
123211.5000001.0000000.5000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666671.0000003.000000
388441.0000000.5000000.5000001.6000002.0000001.333333
416166101.0000000.3750000.6250002.0000001.5000002.500000
5323111200.9687500.3437500.6250001.9375001.8333332.000000
6645616400.8750000.2500000.6250001.8064521.4545452.000000
712810833750.8437500.2578120.5859381.9285712.0625001.875000
8256210551550.8203120.2148440.6054691.9444441.6666672.066667
95124171003170.8144530.1953120.6191411.9857141.8181822.045161
101.0248211766450.8017580.1718750.6298831.9688251.7600002.034700
112.0481.6333221.3110.7973630.1572270.6401371.9890381.8295452.032558
124.0963.2205842.6360.7861330.1425780.6435551.9718311.8136652.010679
138.1926.3631.0835.2800.7767330.1322020.6445311.9760871.8544522.003035
1416.38412.5951.94410.6510.7687380.1186520.6500851.9794121.7950142.017235
1532.76824.9693.59921.3700.7619930.1098330.6521611.9824531.8513372.006384
1665.53649.6606.65443.0060.7577510.1015320.6562191.9888661.8488472.012447
17131.07298.85312.39586.4580.7541890.0945660.6596221.9905961.8627892.010371
18262.144196.72523.210173.5150.7504460.0885390.6619071.9900761.8725292.006928
19524.288391.72943.757347.9720.7471640.0834600.6637041.9912521.8852652.005429
201.048.576780.18282.917697.2650.7440400.0790760.6649641.9916371.8949432.003796
212.097.1521.554.791157.4171.397.3740.7413820.0750620.6663201.9928571.8984892.004079
224.194.3043.099.871299.2262.800.6450.7390670.0713410.6677261.9937541.9008492.004220
238.388.6086.181.585570.7455.610.8400.7369020.0680380.6688641.9941431.9074042.003410
2416.777.21612.331.0631.090.09111.240.9720.7349890.0649740.6700141.9948061.9099442.003438
2533.554.43224.603.1362.085.84822.517.2880.7332310.0621630.6710671.9952161.9134622.003144
2667.108.86449.099.5463.999.67145.099.8750.7316400.0596000.6720411.9956621.9175282.002900
27134.217.72897.997.7307.685.14090.312.5900.7301400.0572590.6728811.9958991.9214432.002502
28268.435.456195.625.00414.787.875180.837.1290.7287600.0550890.6736711.9962201.9242172.002347
29536.870.912390.555.80228.486.986362.068.8160.7274670.0530610.6744061.9964511.9263752.002182
301.073.741.824779.822.95254.972.553724.850.3990.7262670.0511970.6750701.9967011.9297432.001969
312.147.483.6481.557.238.403106.198.1521.451.040.2510.7251460.0494520.6756931.9969131.9318402.001848
324.294.967.2963.109.971.875205.421.0982.904.550.7770.7240970.0478280.6762681.9971071.9343192.001702
338.589.934.5926.211.509.154397.762.6855.813.746.4690.7231150.0463060.6768091.9972881.9363282.001599
3417.179.869.18412.407.234.049770.920.19711.636.313.8520.7221960.0448730.6773231.9974591.9381412.001517


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
122110011
242110011
384311021
4166512031
532111014061
664161517081
712833321150171
825655541270271
9512100991490501
101.0241761751880871
112.048322321116101601
124.096584583128602971
138.1921.0831.082153505471
1416.3841.9441.943196909741
1532.7683.5993.59811.79901.7991
1665.5366.6546.65313.30703.3461
17131.07212.39512.39416.15006.2441
18262.14423.21023.209111.625011.5841
19524.28843.75743.756121.885021.8711
201.048.57682.91782.916141.355041.5611
212.097.152157.417157.416178.585078.8311
224.194.304299.226299.2251149.6010149.6241
238.388.608570.745570.7441285.3530285.3911
2416.777.2161.090.0911.090.0901545.0690545.0211
2533.554.4322.085.8482.085.84711.043.45301.042.3941
2667.108.8643.999.6713.999.67012.000.63301.999.0371
27134.217.7287.685.1407.685.13913.843.13303.842.0061
28268.435.45614.787.87514.787.87417.393.60607.394.2681
29536.870.91228.486.98628.486.985114.242.761014.244.2241
301.073.741.82454.972.55354.972.552127.485.786027.486.7661
312.147.483.648106.198.152106.198.151153.100.600053.097.5511
324.294.967.296205.421.098205.421.0971102.713.3890102.707.7081
338.589.934.592397.762.685397.762.6841198.883.6580198.879.0261
3417.179.869.184770.920.197770.920.1961385.461.5070385.458.6891


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
121000100
243111200
384122200
41610363421
532205146644
664401128111289
712875205419211718
82561554510938413838
951231710621081838073
101.024645224420151168169157
112.0481.311476834310333335333
124.0962.6361.0011.634619683671663
138.1925.2802.0573.2221.2741.3531.3431.310
1416.38410.6514.2566.3942.6192.6862.6652.681
1532.76821.3708.73812.6315.2535.3815.3075.429
1665.53643.00617.95225.05310.64710.81010.67310.876
17131.07286.45836.66449.79321.36221.74421.38921.963
18262.144173.51574.66098.85442.97543.71143.01743.812
19524.288347.972151.008196.96386.15487.40786.73487.677
201.048.576697.265305.315391.949172.835175.293173.957175.180
212.097.1521.397.374617.132780.241347.155351.147347.948351.124
224.194.3042.800.6451.244.6011.556.043695.516703.896697.942703.291
238.388.6085.610.8402.509.3343.101.5051.395.6731.409.0041.398.0211.408.142
2416.777.21611.240.9725.055.8916.185.0802.798.6942.820.9762.799.8982.821.404
2533.554.43222.517.28810.181.69112.335.5965.609.4225.647.8825.610.2345.649.750
2667.108.86445.099.87520.486.42724.613.44711.239.85511.310.76411.240.94511.308.311
27134.217.72890.312.59041.198.35349.114.23622.513.27622.642.44522.513.35422.643.515
28268.435.456180.837.12982.809.27998.027.84945.094.19645.326.89845.087.84145.328.194
29536.870.912362.068.816166.397.105195.671.71090.290.66690.743.03190.289.56190.745.558
301.073.741.824724.850.399334.206.081390.644.317180.791.958181.626.062180.795.429181.636.950
312.147.483.6481.451.040.251671.023.352780.016.898361.975.750363.537.718361.973.713363.553.070
324.294.967.2962.904.550.7771.346.969.9941.557.580.782724.648.004727.606.669724.665.185727.630.919
338.589.934.5925.813.746.4692.703.145.7203.110.600.7481.450.621.7831.456.212.0041.450.665.2051.456.247.477
3417.179.869.18411.636.313.8525.423.628.7846.212.685.0672.903.727.1062.914.360.1782.903.891.4102.914.335.158


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 3, 37, 41, 43, 89, 229, 1, 337, 197, 151, 257, 577, 107, 709, 389, 283, 461, 997, 179,
Found in Database : 47, 3, 37, 41, 43, 89, 229, 337, 197, 151, 257, 577, 107, 709, 389, 283, 461, 997, 179, 1153, 617, 439, 701, 1489, 263, 1669, 881, 619, 977, 2053, 359, 61, 1181, 823, 1289, 2689, 467, 2917,
Found in Database : 3, 37, 41, 43, 47, 61, 73, 79, 89, 101, 107, 137, 139, 149,