Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:28:16
Deutsch
18.Apr 2024

Polynom = x^2+43x-3

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) = 3 = 3
f(1) = 41 = 41
f(2) = 87 = 3*29
f(3) = 135 = 3*3*3*5
f(4) = 185 = 5*37
f(5) = 237 = 3*79
f(6) = 291 = 3*97
f(7) = 347 = 347
f(8) = 405 = 3*3*3*3*5
f(9) = 465 = 3*5*31
f(10) = 527 = 17*31
f(11) = 591 = 3*197
f(12) = 657 = 3*3*73
f(13) = 725 = 5*5*29
f(14) = 795 = 3*5*53
f(15) = 867 = 3*17*17
f(16) = 941 = 941
f(17) = 1017 = 3*3*113
f(18) = 1095 = 3*5*73
f(19) = 1175 = 5*5*47
f(20) = 1257 = 3*419
f(21) = 1341 = 3*3*149
f(22) = 1427 = 1427
f(23) = 1515 = 3*5*101
f(24) = 1605 = 3*5*107
f(25) = 1697 = 1697
f(26) = 1791 = 3*3*199
f(27) = 1887 = 3*17*37
f(28) = 1985 = 5*397
f(29) = 2085 = 3*5*139
f(30) = 2187 = 3*3*3*3*3*3*3
f(31) = 2291 = 29*79
f(32) = 2397 = 3*17*47
f(33) = 2505 = 3*5*167
f(34) = 2615 = 5*523
f(35) = 2727 = 3*3*3*101
f(36) = 2841 = 3*947
f(37) = 2957 = 2957
f(38) = 3075 = 3*5*5*41
f(39) = 3195 = 3*3*5*71
f(40) = 3317 = 31*107
f(41) = 3441 = 3*31*37
f(42) = 3567 = 3*29*41
f(43) = 3695 = 5*739
f(44) = 3825 = 3*3*5*5*17
f(45) = 3957 = 3*1319
f(46) = 4091 = 4091
f(47) = 4227 = 3*1409
f(48) = 4365 = 3*3*5*97
f(49) = 4505 = 5*17*53
f(50) = 4647 = 3*1549
f(51) = 4791 = 3*1597
f(52) = 4937 = 4937
f(53) = 5085 = 3*3*5*113
f(54) = 5235 = 3*5*349
f(55) = 5387 = 5387
f(56) = 5541 = 3*1847
f(57) = 5697 = 3*3*3*211
f(58) = 5855 = 5*1171
f(59) = 6015 = 3*5*401
f(60) = 6177 = 3*29*71
f(61) = 6341 = 17*373
f(62) = 6507 = 3*3*3*241
f(63) = 6675 = 3*5*5*89
f(64) = 6845 = 5*37*37
f(65) = 7017 = 3*2339
f(66) = 7191 = 3*3*17*47
f(67) = 7367 = 53*139
f(68) = 7545 = 3*5*503
f(69) = 7725 = 3*5*5*103
f(70) = 7907 = 7907
f(71) = 8091 = 3*3*29*31
f(72) = 8277 = 3*31*89
f(73) = 8465 = 5*1693
f(74) = 8655 = 3*5*577
f(75) = 8847 = 3*3*983
f(76) = 9041 = 9041
f(77) = 9237 = 3*3079
f(78) = 9435 = 3*5*17*37
f(79) = 9635 = 5*41*47
f(80) = 9837 = 3*3*1093
f(81) = 10041 = 3*3347
f(82) = 10247 = 10247
f(83) = 10455 = 3*5*17*41
f(84) = 10665 = 3*3*3*5*79
f(85) = 10877 = 73*149
f(86) = 11091 = 3*3697
f(87) = 11307 = 3*3769
f(88) = 11525 = 5*5*461
f(89) = 11745 = 3*3*3*3*5*29
f(90) = 11967 = 3*3989
f(91) = 12191 = 73*167
f(92) = 12417 = 3*4139
f(93) = 12645 = 3*3*5*281
f(94) = 12875 = 5*5*5*103
f(95) = 13107 = 3*17*257
f(96) = 13341 = 3*4447
f(97) = 13577 = 13577
f(98) = 13815 = 3*3*5*307
f(99) = 14055 = 3*5*937
f(100) = 14297 = 17*29*29

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+43x-3

f(0)=3
f(1)=41
f(2)=29
f(3)=5
f(4)=37
f(5)=79
f(6)=97
f(7)=347
f(8)=1
f(9)=31
f(10)=17
f(11)=197
f(12)=73
f(13)=1
f(14)=53
f(15)=1
f(16)=941
f(17)=113
f(18)=1
f(19)=47
f(20)=419
f(21)=149
f(22)=1427
f(23)=101
f(24)=107
f(25)=1697
f(26)=199
f(27)=1
f(28)=397
f(29)=139
f(30)=1
f(31)=1
f(32)=1
f(33)=167
f(34)=523
f(35)=1
f(36)=947
f(37)=2957
f(38)=1
f(39)=71
f(40)=1
f(41)=1
f(42)=1
f(43)=739
f(44)=1
f(45)=1319
f(46)=4091
f(47)=1409
f(48)=1
f(49)=1
f(50)=1549
f(51)=1597
f(52)=4937
f(53)=1
f(54)=349
f(55)=5387
f(56)=1847
f(57)=211
f(58)=1171
f(59)=401
f(60)=1
f(61)=373
f(62)=241
f(63)=89
f(64)=1
f(65)=2339
f(66)=1
f(67)=1
f(68)=503
f(69)=103
f(70)=7907
f(71)=1
f(72)=1
f(73)=1693
f(74)=577
f(75)=983
f(76)=9041
f(77)=3079
f(78)=1
f(79)=1
f(80)=1093
f(81)=3347
f(82)=10247
f(83)=1
f(84)=1
f(85)=1
f(86)=3697
f(87)=3769
f(88)=461
f(89)=1
f(90)=3989
f(91)=1
f(92)=4139
f(93)=281
f(94)=1
f(95)=257
f(96)=4447
f(97)=13577
f(98)=307
f(99)=937

b) Substitution of the polynom
The polynom f(x)=x^2+43x-3 could be written as f(y)= y^2-465.25 with x=y-21.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+21.5
f'(x)>2x+42

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

3, 41, 29, 5, 37, 79, 97, 347, 1, 31, 17, 197, 73, 1, 53, 1, 941, 113, 1, 47, 419, 149, 1427, 101, 107, 1697, 199, 1, 397, 139, 1, 1, 1, 167, 523, 1, 947, 2957, 1, 71, 1, 1, 1, 739, 1, 1319, 4091, 1409, 1, 1, 1549, 1597, 4937, 1, 349, 5387, 1847, 211, 1171, 401, 1, 373, 241, 89, 1, 2339, 1, 1, 503, 103, 7907, 1, 1, 1693, 577, 983, 9041, 3079, 1, 1, 1093, 3347, 10247, 1, 1, 1, 3697, 3769, 461, 1, 3989, 1, 4139, 281, 1, 257, 4447, 13577, 307, 937, 1, 131, 1, 1, 1019, 5179, 15791, 1783, 1087, 3313, 1, 1, 1021, 1, 1193, 491, 683, 367, 1, 1, 1, 19841, 6709, 1361, 1, 2333, 151, 21587, 1459, 1, 1, 1, 7699, 1, 1, 8009, 1, 8219, 1, 5059, 8539, 8647, 26267, 1, 359, 1, 541, 1, 5653, 1907, 9649, 1723, 1, 1999, 6067, 193, 3449, 31397, 1, 2141, 691, 1, 11069, 1, 1, 1, 1, 11689, 1, 1433, 1, 12197, 1, 1, 839, 1031, 443, 12979, 7867, 883, 787, 571, 13649, 919, 8353, 827, 14197, 1483, 1, 1, 44267, 14897, 557, 9109, 613, 499, 1511, 1, 3181, 9631, 1, 5449, 1, 3329, 3359, 1753, 1, 1, 1, 3511, 5903, 53591, 487, 727, 647, 6163, 643, 56417, 3793, 1, 1231, 19447, 19609, 11863, 1, 1, 1, 659, 1373, 12457, 20929, 1, 1, 1429, 1, 65327, 1291, 1, 1, 4493, 22639, 769, 1, 1, 2801, 811, 2633, 1747, 283, 1, 823, 911, 1, 881, 1, 8443, 76541, 829, 1, 15643, 8753, 1, 79907, 1, 1801, 4801, 27397, 587, 1, 1, 1657, 85091, 28559, 1, 599, 1, 29347, 1, 661, 1, 90437, 30347, 1, 18451, 1, 31159, 2543, 619, 1, 1, 32189, 10799, 3373, 6563, 1321, 99707, 11149, 1, 20323, 1, 1, 2203, 34729, 1, 1, 3931, 35597, 773, 7207, 2417, 1499, 36697, 36919, 4457, 1, 37589, 6673, 38039, 2551, 1, 1249, 1, 1, 1, 7927, 2917, 1, 4481, 24337, 1, 1, 123791, 1, 1, 25183, 42209, 14149, 3461, 1, 1, 1, 14549, 43889, 26479, 1, 1, 134591, 1, 1, 27361, 1, 1487, 1, 9319, 1, 8311, 1, 47599, 28711, 1069, 1307, 1, 48869, 1, 29629, 49639, 1217, 1, 3361, 2027, 3727, 51197, 1009, 31033, 1, 52249, 1, 1, 1, 1103, 409, 1, 5237, 1, 1, 3109, 6133, 55469, 6689, 1, 1, 169691, 1, 11423, 1, 1, 57947, 4721, 11701, 3919, 2243, 3491, 59629, 1, 4013, 1, 10723, 1489, 1, 36973, 61909, 1, 6047, 1, 12613, 2677, 63647, 21313, 2267, 1, 1223, 195341, 21803, 1, 1, 1, 1, 1987, 1, 13499, 203387, 22699, 68399, 41221, 1, 1, 2153, 2411, 1, 1, 463, 71147, 4561, 1, 1, 217157, 1, 73009, 1, 4909, 1013, 222791, 1, 4993, 45127, 1607, 1039, 13441, 5099, 15361, 1, 77447, 8641, 9371, 15683, 1109, 8179, 8821, 1, 1, 80369, 1, 243077, 1, 1, 7937, 27449, 2851, 49807, 1, 27893, 2447, 84349, 16937, 1, 1, 1, 258107, 1, 1, 261167, 1, 87739, 1289, 1, 3061, 267341, 89459, 5987, 54091, 90499, 90847, 5821, 1, 18379, 1, 1, 30983, 1, 18731, 94009, 2161, 31573, 3803, 57259, 95789, 1187, 3253, 19373, 3889, 1, 10883, 2657, 1, 1, 1949, 5647, 100129, 1, 1, 1, 1, 2053, 1, 1, 10663, 1, 1, 12503, 6971, 1, 1637, 6217, 2357, 1, 2887, 107197, 322727, 2399, 1, 326147, 109097, 36493, 2273, 1297, 110629, 333041, 1, 1, 1, 112559, 37649, 340007, 4549, 1, 343517, 38299, 3719, 2239, 4643, 12941, 1, 117259, 23531, 1, 1, 6991, 357737, 23929, 1, 361337, 120847, 1, 1553, 1, 1, 2441, 123269, 1, 74449, 124489, 124897, 2251, 1, 1, 379607, 1, 1, 2473, 1, 128599, 1, 1, 25969, 78157, 7687, 1, 5557, 26387, 1, 23431, 1531, 3259, 3217, 26893, 44963, 9901, 1, 1, 1, 45673, 137447, 1, 1, 3083, 3187, 139597, 8237, 1, 1, 1, 425291, 2683, 1, 85843, 143509, 143947, 5483, 1931, 1709, 15073, 1447, 1, 1877, 1, 147919, 445091, 49603, 29851, 89821, 2833, 1, 453137, 1, 30389, 1627, 1, 3739, 92251, 30841, 1663, 1, 155569, 1, 93889, 52313, 1471, 1, 31663, 1, 12911, 159697, 160159, 5669, 10739, 2213, 486041, 3457, 1, 98047, 5651, 1, 4621, 3673, 33151, 1, 1873, 1, 20117, 33623, 1, 16361, 1823, 1, 1, 1, 57149, 515777, 1, 1, 1, 1, 174329, 1979, 35059, 19531, 528791, 1, 35447, 3677, 19801, 178697, 1, 7187, 12011, 541967, 2293, 181639, 109279, 1, 183119, 550841, 5939, 1, 1, 185599, 186097, 1, 12473, 2207, 1, 1669, 21011, 113761, 1, 4649, 573341, 1, 1, 2819, 193139, 3797, 1, 38933, 1, 587057, 3847, 196709, 1621, 1, 66083, 596291, 1, 1, 3877, 66943, 1, 605597, 2381, 1, 1, 203947, 1, 1, 4567, 206039, 4159, 1, 13841, 24977, 2939, 4451, 629177, 1, 42157, 1, 5167, 70793, 127747, 42689, 1, 17393, 1, 43117, 1, 1, 24133, 653207, 8731, 1, 6389, 1, 12967, 132589, 8861, 1, 23029, 13127, 44741, 1, 74933, 225347, 677687, 45289, 1, 682637, 228097, 1, 1, 1, 230309, 692591, 231419, 1, 1, 1, 7537, 17137, 1, 9413, 9967, 1, 1, 142543, 1, 8231, 42223, 79943, 48079, 144577, 1, 1, 727997, 48647, 48761, 733127, 81649, 245519, 29531, 49333, 9157, 1, 248389, 1, 1, 27791, 8087, 24317, 2963, 16829, 759047, 1, 254179, 152857, 1, 6917, 769541, 257099, 1, 1, 15227, 1, 1, 1, 1, 1, 1, 29221, 1, 10567, 264769, 796091, 1, 1, 2029, 267749, 89449, 1, 1, 1, 7591, 1, 1, 5639, 54631, 91253, 1, 2099, 1, 165709, 1, 3907, 22541, 1, 1, 1, 2621, 5303, 169003, 1, 3581, 1, 284129, 1, 1, 285979, 1, 861647, 1, 1861, 867227, 17041, 1, 34913, 58313, 1, 51673, 97813, 1, 35363, 295319, 1, 889727, 59441, 59567, 19051, 1, 1, 10601, 1, 3467, 4603, 2999, 3571, 182503, 101603, 1, 918257, 12269, 1, 1, 1, 309289, 185959, 1, 18307, 935591, 312509, 6959, 188281, 1, 315097, 25601, 1, 63409, 4517, 318347, 1, 191791, 1, 1, 13217, 1, 12917, 194149, 324239, 2927, 1, 1, 1, 1, 3529, 6997, 197713, 66037, 36761, 10253, 332179, 66569, 1, 12377, 8167, 1006547, 1, 1, 24697, 338197, 3167, 1, 1, 340889, 2953, 342239, 22861, 41231, 344269, 1, 1036877, 23087, 2393,

6. Sequence of the polynom (only primes)

3, 41, 29, 5, 37, 79, 97, 347, 31, 17, 197, 73, 53, 941, 113, 47, 419, 149, 1427, 101, 107, 1697, 199, 397, 139, 167, 523, 947, 2957, 71, 739, 1319, 4091, 1409, 1549, 1597, 4937, 349, 5387, 1847, 211, 1171, 401, 373, 241, 89, 2339, 503, 103, 7907, 1693, 577, 983, 9041, 3079, 1093, 3347, 10247, 3697, 3769, 461, 3989, 4139, 281, 257, 4447, 13577, 307, 937, 131, 1019, 5179, 15791, 1783, 1087, 3313, 1021, 1193, 491, 683, 367, 19841, 6709, 1361, 2333, 151, 21587, 1459, 7699, 8009, 8219, 5059, 8539, 8647, 26267, 359, 541, 5653, 1907, 9649, 1723, 1999, 6067, 193, 3449, 31397, 2141, 691, 11069, 11689, 1433, 12197, 839, 1031, 443, 12979, 7867, 883, 787, 571, 13649, 919, 8353, 827, 14197, 1483, 44267, 14897, 557, 9109, 613, 499, 1511, 3181, 9631, 5449, 3329, 3359, 1753, 3511, 5903, 53591, 487, 727, 647, 6163, 643, 56417, 3793, 1231, 19447, 19609, 11863, 659, 1373, 12457, 20929, 1429, 65327, 1291, 4493, 22639, 769, 2801, 811, 2633, 1747, 283, 823, 911, 881, 8443, 76541, 829, 15643, 8753, 79907, 1801, 4801, 27397, 587, 1657, 85091, 28559, 599, 29347, 661, 90437, 30347, 18451, 31159, 2543, 619, 32189, 10799, 3373, 6563, 1321, 99707, 11149, 20323, 2203, 34729, 3931, 35597, 773, 7207, 2417, 1499, 36697, 36919, 4457, 37589, 6673, 38039, 2551, 1249, 7927, 2917, 4481, 24337, 123791, 25183, 42209, 14149, 3461, 14549, 43889, 26479, 134591, 27361, 1487, 9319, 8311, 47599, 28711, 1069, 1307, 48869, 29629, 49639, 1217, 3361, 2027, 3727, 51197, 1009, 31033, 52249, 1103, 409, 5237, 3109, 6133, 55469, 6689, 169691, 11423, 57947, 4721, 11701, 3919, 2243, 3491, 59629, 4013, 10723, 1489, 36973, 61909, 6047, 12613, 2677, 63647, 21313, 2267, 1223, 195341, 21803, 1987, 13499, 203387, 22699, 68399, 41221, 2153, 2411, 463, 71147, 4561, 217157, 73009, 4909, 1013, 222791, 4993, 45127, 1607, 1039, 13441, 5099, 15361, 77447, 8641, 9371, 15683, 1109, 8179, 8821, 80369, 243077, 7937, 27449, 2851, 49807, 27893, 2447, 84349, 16937, 258107, 261167, 87739, 1289, 3061, 267341, 89459, 5987, 54091, 90499, 90847, 5821, 18379, 30983, 18731, 94009, 2161, 31573, 3803, 57259, 95789, 1187, 3253, 19373, 3889, 10883, 2657, 1949, 5647, 100129, 2053, 10663, 12503, 6971, 1637, 6217, 2357, 2887, 107197, 322727, 2399, 326147, 109097, 36493, 2273, 1297, 110629, 333041, 112559, 37649, 340007, 4549, 343517, 38299, 3719, 2239, 4643, 12941, 117259, 23531, 6991, 357737, 23929, 361337, 120847, 1553, 2441, 123269, 74449, 124489, 124897, 2251, 379607, 2473, 128599, 25969, 78157, 7687, 5557, 26387, 23431, 1531, 3259, 3217, 26893, 44963, 9901, 45673, 137447, 3083, 3187, 139597, 8237, 425291, 2683, 85843, 143509, 143947, 5483, 1931, 1709, 15073, 1447, 1877, 147919, 445091, 49603, 29851, 89821, 2833, 453137, 30389, 1627, 3739, 92251, 30841, 1663, 155569, 93889, 52313, 1471, 31663, 12911, 159697, 160159, 5669, 10739, 2213, 486041, 3457, 98047, 5651, 4621, 3673, 33151, 1873, 20117, 33623, 16361, 1823, 57149, 515777, 174329, 1979, 35059, 19531, 528791, 35447, 3677, 19801, 178697, 7187, 12011, 541967, 2293, 181639, 109279, 183119, 550841, 5939, 185599, 186097, 12473, 2207, 1669, 21011, 113761, 4649, 573341, 2819, 193139, 3797, 38933, 587057, 3847, 196709, 1621, 66083, 596291, 3877, 66943, 605597, 2381, 203947, 4567, 206039, 4159, 13841, 24977, 2939, 4451, 629177, 42157, 5167, 70793, 127747, 42689, 17393, 43117, 24133, 653207, 8731, 6389, 12967, 132589, 8861, 23029, 13127, 44741, 74933, 225347, 677687, 45289, 682637, 228097, 230309, 692591, 231419, 7537, 17137, 9413, 9967, 142543, 8231, 42223, 79943, 48079, 144577, 727997, 48647, 48761, 733127, 81649, 245519, 29531, 49333, 9157, 248389, 27791, 8087, 24317, 2963, 16829, 759047, 254179, 152857, 6917, 769541, 257099, 15227, 29221, 10567, 264769, 796091, 2029, 267749, 89449, 7591, 5639, 54631, 91253, 2099, 165709, 3907, 22541, 2621, 5303, 169003, 3581, 284129, 285979, 861647, 1861, 867227, 17041, 34913, 58313, 51673, 97813, 35363, 295319, 889727, 59441, 59567, 19051, 10601, 3467, 4603, 2999, 3571, 182503, 101603, 918257, 12269, 309289, 185959, 18307, 935591, 312509, 6959, 188281, 315097, 25601, 63409, 4517, 318347, 191791, 13217, 12917, 194149, 324239, 2927, 3529, 6997, 197713, 66037, 36761, 10253, 332179, 66569, 12377, 8167, 1006547, 24697, 338197, 3167, 340889, 2953, 342239, 22861, 41231, 344269, 1036877, 23087, 2393,

7. Distribution of the primes

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

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)
1108350.8000000.3000000.5000000.0000000.0000000.000000
21006414500.6400000.1400000.5000008.0000004.66666710.000000
31.000644785660.6440000.0780000.56600010.0625005.57142911.320000
410.0006.6415816.0600.6641000.0581000.60600010.3121127.44871810.706714
5100.00066.9584.57762.3810.6695800.0457700.62381010.0825187.87779710.293895
61.000.000674.16537.183636.9820.6741650.0371830.63698210.0684768.12388010.211154
710.000.0006.768.472314.9496.453.5230.6768470.0314950.64535210.0397858.47024210.131406
8100.000.00067.881.5152.727.13765.154.3780.6788150.0272710.65154410.0290758.65897910.095940
91.000.000.000680.337.77124.061.390656.276.3810.6803380.0240610.65627610.0224318.82294810.072637
1010.000.000.0006.815.864.031215.343.8656.600.520.1660.6815860.0215340.66005210.0183538.94976910.057531


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
244221.0000000.5000000.5000001.3333331.0000002.000000
387340.8750000.3750000.5000001.7500001.5000002.000000
41612480.7500000.2500000.5000001.7142861.3333332.000000
532236170.7187500.1875000.5312501.9166671.5000002.125000
6644210320.6562500.1562500.5000001.8260871.6666671.882353
71288117640.6328120.1328120.5000001.9285711.7000002.000000
8256164241400.6406250.0937500.5468752.0246911.4117652.187500
9512326392870.6367190.0761720.5605471.9878051.6250002.050000
101.024659785810.6435550.0761720.5673832.0214722.0000002.024390
112.0481.3301421.1880.6494140.0693360.5800782.0182091.8205132.044750
124.0962.6932602.4330.6574710.0634770.5939942.0248121.8309862.047980
138.1925.4384874.9510.6638180.0594480.6043702.0193091.8730772.034936
1416.38410.91590510.0100.6661990.0552370.6109622.0071721.8583162.021814
1532.76821.8931.68220.2110.6681210.0513310.6167912.0057721.8585642.019081
1665.53643.8723.15540.7170.6694340.0481410.6212922.0039281.8757432.014596
17131.07287.9675.83882.1290.6711350.0445400.6265952.0050831.8503962.017069
18262.144176.16710.891165.2760.6720240.0415460.6304782.0026491.8655362.012395
19524.288353.03320.587332.4460.6733570.0392670.6340902.0039681.8902762.011460
201.048.576706.84138.897667.9440.6740960.0370950.6370012.0021951.8893962.009181
212.097.1521.415.85173.6981.342.1530.6751300.0351420.6399882.0030691.8946962.009380
224.194.3042.834.838140.2702.694.5680.6758780.0334430.6424352.0022151.9033082.007646
238.388.6085.676.607267.2415.409.3660.6767040.0318580.6448472.0024451.9051902.007508
2416.777.21611.363.784510.15010.853.6340.6773340.0304070.6469272.0018621.9089512.006452
2533.554.43222.748.567976.41221.772.1550.6779600.0290990.6488612.0018481.9139702.005978
2667.108.86445.534.4861.873.40043.661.0860.6785170.0279160.6506012.0016421.9186572.005363
27134.217.72891.137.8243.598.29687.539.5280.6790300.0268090.6522202.0015121.9207302.004978
28268.435.456182.405.8096.925.377175.480.4320.6795150.0257990.6537162.0014281.9246272.004585
29536.870.912365.048.75113.341.526351.707.2250.6799560.0248510.6551062.0013001.9264692.004253
301.073.741.824730.556.21425.741.333704.814.8810.6803840.0239730.6564102.0012571.9294142.003982
312.147.483.6481.461.974.35549.730.4701.412.243.8850.6807850.0231580.6576272.0011801.9319312.003709
324.294.967.2962.925.550.71596.195.9222.829.354.7930.6811580.0223970.6587602.0010961.9343462.003446
338.589.934.5925.854.138.469186.270.6925.667.867.7770.6815110.0216850.6598272.0010381.9363682.003237
3417.179.869.18411.713.986.451361.046.14811.352.940.3030.6818440.0210160.6608282.0009751.9382872.003036


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
122011100
242011100
383021200
4164031210
5326052310
66410093520
7128170166722
8256240237944
95123903871598
101.0247807617221821
112.048142014035353636
124.096260025863647261
138.1924870485112113136126
1416.3849050903218211240236
1532.7681.68201.680402419439422
1665.5363.15503.153770797808780
17131.0725.83805.8361.4531.4681.4661.451
18262.14410.891010.8892.7112.7272.7222.731
19524.28820.587020.5855.1545.1275.1355.171
201.048.57638.897038.8959.7119.7539.7369.697
212.097.15273.698073.69618.40318.58118.40318.311
224.194.304140.2700140.26835.03635.35834.94534.931
238.388.608267.2410267.23966.67167.32866.58966.653
2416.777.216510.1500510.148127.305127.920127.318127.607
2533.554.432976.4120976.410244.006244.760243.673243.973
2667.108.8641.873.40001.873.398468.354468.792468.058468.196
27134.217.7283.598.29603.598.294899.302900.313898.889899.792
28268.435.4566.925.37706.925.3751.730.5411.731.4671.732.3051.731.064
29536.870.91213.341.526013.341.5243.333.8653.335.6633.336.8223.335.176
301.073.741.82425.741.333025.741.3316.432.7656.436.1826.435.9666.436.420
312.147.483.64849.730.470049.730.46812.433.41612.433.41312.431.35312.432.288
324.294.967.29696.195.922096.195.92024.048.98824.046.27424.049.01624.051.644
338.589.934.592186.270.6920186.270.69046.569.35546.562.68746.571.41946.567.231
3417.179.869.184361.046.1480361.046.14690.261.46090.259.49090.261.89390.263.305


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
121010010
242110020
384311021
4168532042
53217893374
66432171568117
712864343015171814
8256140825834413134
951228716412373776968
101.024581316265150141149141
112.0481.188635553301303294290
124.0962.4331.2981.135605602595631
138.1924.9512.5932.3581.2211.2441.2421.244
1416.38410.0105.2744.7362.4822.4712.5312.526
1532.76820.21110.5359.6764.9845.0785.0845.065
1665.53640.71721.20119.51610.07310.23910.18810.217
17131.07282.12942.72839.40120.43420.56720.53220.596
18262.144165.27685.69979.57741.12141.46241.33441.359
19524.288332.446171.847160.59982.71783.51683.09283.121
201.048.576667.944344.404323.540166.792167.184166.844167.124
212.097.1521.342.153691.385650.768335.176335.783335.237335.957
224.194.3042.694.5681.386.0151.308.553672.585673.947673.873674.163
238.388.6085.409.3662.779.8922.629.4741.351.3301.353.1801.351.9791.352.877
2416.777.21610.853.6345.571.2175.282.4172.714.0472.713.7292.711.9772.713.881
2533.554.43221.772.15511.159.74510.612.4105.446.8075.442.5605.440.0985.442.690
2667.108.86443.661.08622.357.26421.303.82210.916.98010.915.62910.912.66310.915.814
27134.217.72887.539.52844.778.94842.760.58021.891.55421.885.45721.880.48721.882.030
28268.435.456175.480.43289.683.32485.797.10843.881.45043.863.47543.865.65543.869.852
29536.870.912351.707.225179.601.689172.105.53687.936.11187.923.65987.921.26787.926.188
301.073.741.824704.814.881359.639.476345.175.405176.207.926176.215.902176.191.993176.199.060
312.147.483.6481.412.243.885720.055.518692.188.367353.060.112353.079.010353.048.636353.056.127
324.294.967.2962.829.354.7931.441.586.6311.387.768.162707.330.283707.334.383707.354.981707.335.146
338.589.934.5925.667.867.7772.885.985.2772.781.882.5001.416.947.5281.416.988.3411.416.955.8501.416.976.058
3417.179.869.18411.352.940.3035.777.311.0245.575.629.2792.838.245.9282.838.169.9932.838.278.0602.838.246.322


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 41, 29, 5, 37, 79, 97, 347, 1, 31, 17, 197, 73, 1, 53, 1, 941, 113, 1, 47,
Found in Database : 3, 41, 29, 5, 37, 79, 97, 347, 31, 17, 197, 73, 53, 941, 113, 47, 419, 149, 1427, 101, 107, 1697, 199, 397, 139, 167, 523, 947, 2957, 71,
Found in Database : 3, 5, 17, 29, 31, 37, 41, 47, 53, 71, 73, 79, 89, 97, 101, 103, 107, 113, 131, 139, 149,