Inhaltsverzeichnis

Development of
Algorithmic Constructions

22:20:26
Deutsch
19.Apr 2024

Polynom = x^2+64x+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) = 17 = 17
f(2) = 135 = 3*3*3*5
f(3) = 51 = 3*17
f(4) = 275 = 5*5*11
f(5) = 87 = 3*29
f(6) = 423 = 3*3*47
f(7) = 125 = 5*5*5
f(8) = 579 = 3*193
f(9) = 165 = 3*5*11
f(10) = 743 = 743
f(11) = 207 = 3*3*23
f(12) = 915 = 3*5*61
f(13) = 251 = 251
f(14) = 1095 = 3*5*73
f(15) = 297 = 3*3*3*11
f(16) = 1283 = 1283
f(17) = 345 = 3*5*23
f(18) = 1479 = 3*17*29
f(19) = 395 = 5*79
f(20) = 1683 = 3*3*11*17
f(21) = 447 = 3*149
f(22) = 1895 = 5*379
f(23) = 501 = 3*167
f(24) = 2115 = 3*3*5*47
f(25) = 557 = 557
f(26) = 2343 = 3*11*71
f(27) = 615 = 3*5*41
f(28) = 2579 = 2579
f(29) = 675 = 3*3*3*5*5
f(30) = 2823 = 3*941
f(31) = 737 = 11*67
f(32) = 3075 = 3*5*5*41
f(33) = 801 = 3*3*89
f(34) = 3335 = 5*23*29
f(35) = 867 = 3*17*17
f(36) = 3603 = 3*1201
f(37) = 935 = 5*11*17
f(38) = 3879 = 3*3*431
f(39) = 1005 = 3*5*67
f(40) = 4163 = 23*181
f(41) = 1077 = 3*359
f(42) = 4455 = 3*3*3*3*5*11
f(43) = 1151 = 1151
f(44) = 4755 = 3*5*317
f(45) = 1227 = 3*409
f(46) = 5063 = 61*83
f(47) = 1305 = 3*3*5*29
f(48) = 5379 = 3*11*163
f(49) = 1385 = 5*277
f(50) = 5703 = 3*1901
f(51) = 1467 = 3*3*163
f(52) = 6035 = 5*17*71
f(53) = 1551 = 3*11*47
f(54) = 6375 = 3*5*5*5*17
f(55) = 1637 = 1637
f(56) = 6723 = 3*3*3*3*83
f(57) = 1725 = 3*5*5*23
f(58) = 7079 = 7079
f(59) = 1815 = 3*5*11*11
f(60) = 7443 = 3*3*827
f(61) = 1907 = 1907
f(62) = 7815 = 3*5*521
f(63) = 2001 = 3*23*29
f(64) = 8195 = 5*11*149
f(65) = 2097 = 3*3*233
f(66) = 8583 = 3*2861
f(67) = 2195 = 5*439
f(68) = 8979 = 3*41*73
f(69) = 2295 = 3*3*3*5*17
f(70) = 9383 = 11*853
f(71) = 2397 = 3*17*47
f(72) = 9795 = 3*5*653
f(73) = 2501 = 41*61
f(74) = 10215 = 3*3*5*227
f(75) = 2607 = 3*11*79
f(76) = 10643 = 29*367
f(77) = 2715 = 3*5*181
f(78) = 11079 = 3*3*1231
f(79) = 2825 = 5*5*113
f(80) = 11523 = 3*23*167
f(81) = 2937 = 3*11*89
f(82) = 11975 = 5*5*479
f(83) = 3051 = 3*3*3*113
f(84) = 12435 = 3*5*829
f(85) = 3167 = 3167
f(86) = 12903 = 3*11*17*23
f(87) = 3285 = 3*3*5*73
f(88) = 13379 = 17*787
f(89) = 3405 = 3*5*227
f(90) = 13863 = 3*4621
f(91) = 3527 = 3527
f(92) = 14355 = 3*3*5*11*29
f(93) = 3651 = 3*1217
f(94) = 14855 = 5*2971
f(95) = 3777 = 3*1259
f(96) = 15363 = 3*3*3*569
f(97) = 3905 = 5*11*71
f(98) = 15879 = 3*67*79
f(99) = 4035 = 3*5*269
f(100) = 16403 = 47*349

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

f(0)=3
f(1)=17
f(2)=5
f(3)=1
f(4)=11
f(5)=29
f(6)=47
f(7)=1
f(8)=193
f(9)=1
f(10)=743
f(11)=23
f(12)=61
f(13)=251
f(14)=73
f(15)=1
f(16)=1283
f(17)=1
f(18)=1
f(19)=79
f(20)=1
f(21)=149
f(22)=379
f(23)=167
f(24)=1
f(25)=557
f(26)=71
f(27)=41
f(28)=2579
f(29)=1
f(30)=941
f(31)=67
f(32)=1
f(33)=89
f(34)=1
f(35)=1
f(36)=1201
f(37)=1
f(38)=431
f(39)=1
f(40)=181
f(41)=359
f(42)=1
f(43)=1151
f(44)=317
f(45)=409
f(46)=83
f(47)=1
f(48)=163
f(49)=277
f(50)=1901
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1637
f(56)=1
f(57)=1
f(58)=7079
f(59)=1
f(60)=827
f(61)=1907
f(62)=521
f(63)=1
f(64)=1
f(65)=233
f(66)=2861
f(67)=439
f(68)=1
f(69)=1
f(70)=853
f(71)=1
f(72)=653
f(73)=1
f(74)=227
f(75)=1
f(76)=367
f(77)=1
f(78)=1231
f(79)=113
f(80)=1
f(81)=1
f(82)=479
f(83)=1
f(84)=829
f(85)=3167
f(86)=1
f(87)=1
f(88)=787
f(89)=1
f(90)=4621
f(91)=3527
f(92)=1
f(93)=1217
f(94)=2971
f(95)=1259
f(96)=569
f(97)=1
f(98)=1
f(99)=269

b) Substitution of the polynom
The polynom f(x)=x^2+64x+3 could be written as f(y)= y^2-1021 with x=y-32

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+32
f'(x)>2x+63

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, 17, 5, 1, 11, 29, 47, 1, 193, 1, 743, 23, 61, 251, 73, 1, 1283, 1, 1, 79, 1, 149, 379, 167, 1, 557, 71, 41, 2579, 1, 941, 67, 1, 89, 1, 1, 1201, 1, 431, 1, 181, 359, 1, 1151, 317, 409, 83, 1, 163, 277, 1901, 1, 1, 1, 1, 1637, 1, 1, 7079, 1, 827, 1907, 521, 1, 1, 233, 2861, 439, 1, 1, 853, 1, 653, 1, 227, 1, 367, 1, 1231, 113, 1, 1, 479, 1, 829, 3167, 1, 1, 787, 1, 4621, 3527, 1, 1217, 2971, 1259, 569, 1, 1, 269, 349, 463, 1129, 1, 1, 1, 1, 1, 563, 1, 709, 1619, 3943, 1667, 1, 5147, 6961, 353, 457, 1, 433, 1, 1, 1, 4663, 179, 347, 1213, 2731, 1, 2293, 2129, 1, 6551, 1, 2239, 2473, 1, 9293, 1, 9521, 1, 5851, 2467, 1997, 7577, 3407, 1, 31379, 1, 1, 8117, 199, 2767, 1, 1, 673, 1, 1063, 197, 491, 3019, 2441, 1, 1, 1, 38183, 643, 1, 1, 1, 1, 1, 1, 1, 10457, 14081, 1, 1873, 1, 1, 11087, 1, 3767, 9127, 1, 5167, 2347, 929, 797, 1, 1, 1, 12401, 1, 1, 1, 857, 17293, 2617, 5867, 1, 977, 4517, 1, 811, 18541, 1, 1951, 1, 19181, 1, 1, 1, 1, 4999, 20161, 3049, 1, 1033, 62483, 1, 1, 16001, 1, 5419, 65543, 1, 22193, 1, 22541, 631, 1, 1, 4649, 1597, 7867, 1, 71879, 1, 1, 1, 4937, 6217, 15031, 701, 2311, 1, 25793, 1, 2707, 599, 5309, 20051, 1, 6779, 1, 1, 1, 1, 28081, 7069, 1553, 2389, 1, 307, 1009, 1, 8089, 1493, 1307, 22697, 677, 1, 18523, 1, 10427, 4723, 773, 1, 96323, 2693, 1301, 24551, 1, 1, 100103, 1, 719, 5101, 1, 8609, 1223, 1, 2339, 1, 35521, 1787, 1, 1, 1, 1, 7369, 3089, 1, 1, 1, 1, 1, 1, 1, 9719, 1, 29501, 1, 9949, 1, 1, 40493, 1, 40961, 3433, 24859, 947, 1, 31607, 1, 2131, 11689, 1, 14447, 32687, 1753, 1, 2417, 1, 1, 1, 45293, 1, 137363, 1, 9257, 2053, 3119, 1069, 141863, 2377, 1, 7207, 4391, 1, 29287, 1, 1973, 907, 1, 1, 8887, 2531, 1, 1, 1, 12917, 31159, 13049, 1, 1, 1, 2663, 160583, 4483, 983, 40751, 1, 1, 165443, 1, 1, 1, 2083, 1, 1, 1297, 3823, 1879, 57901, 2909, 2113, 1, 59021, 1, 1, 1663, 1, 1, 1481, 9151, 20431, 3079, 1, 1, 1, 47051, 2521, 1439, 190823, 1, 2791, 1, 64781, 1, 1, 16417, 1, 49697, 2017, 3343, 1783, 3373, 7529, 51047, 1, 17167, 1427, 1, 4093, 953, 4129, 1, 212423, 1, 2857, 1, 1601, 18089, 218003, 1, 2221, 1, 2549, 1, 1091, 1, 1367, 3331, 75821, 1, 9973, 1, 77101, 58067, 1, 1, 1, 1789, 26347, 2381, 79693, 4001, 1289, 1, 1, 61001, 16333, 6833, 22453, 4133, 1, 1, 1, 1, 50599, 1, 1889, 64007, 1823, 1, 1, 1, 87041, 65537, 1, 1, 53047, 22189, 89101, 13417, 1, 4507, 271463, 22709, 6079, 1, 1, 23059, 16339, 1549, 3217, 1277, 1, 2621, 56827, 23767, 1, 71837, 1, 1, 4337, 4861, 2957, 1, 19661, 1451, 59419, 1, 99761, 1, 100493, 1, 303683, 2309, 20393, 1, 1, 1, 1, 1, 1, 3137, 6173, 1, 1153, 8839, 1, 1, 107201, 1, 323879, 5417, 1, 1741, 1, 1, 1, 1627, 1609, 1, 10163, 1, 1697, 9413, 22669, 1, 1, 3181, 11887, 1, 115693, 1583, 1, 1, 4139, 1279, 1, 1, 118861, 1, 358979, 1, 1, 90647, 1, 10139, 73243, 1, 11171, 18493, 41231, 1, 1877, 1, 1, 1, 25229, 1, 16561, 1, 2719, 19231, 128621, 10753, 1, 32467, 1, 1607, 1, 6577, 1, 6619, 44267, 2437, 26729, 1, 16139, 11243, 3301, 4073, 136193, 1, 411143, 34369, 27581, 1, 1, 1, 418883, 1, 46831, 21139, 1, 35449, 1399, 1321, 28621, 9787, 143981, 1, 5501, 1453, 8573, 9967, 1, 36767, 1, 1, 1499, 1, 6491, 7487, 450563, 12553, 1, 3919, 1, 12703, 458663, 1, 1361, 1, 17189, 1, 1, 3547, 2087, 5119, 1, 1579, 43189, 2647, 1, 5209, 1, 4463, 1, 1, 9533, 24379, 54331, 1, 491783, 1, 1, 124001, 33161, 3779, 1993, 1, 1, 1, 15331, 1, 1, 1, 1483, 4423, 5197, 8599, 12619, 8647, 2141, 1, 34877, 43717, 105211, 14653, 176321, 2411, 10429, 2963, 1, 1, 3259, 1, 1, 45179, 3037, 1, 5521, 1, 2207, 1, 110503, 1, 1, 8191, 186161, 1, 2027, 1, 2267, 141497, 12611, 47417, 1, 1, 63727, 28753, 192193, 1, 1, 5381, 1, 146051, 2297, 1, 8293, 9839, 197293, 29671, 66107, 4519, 119611, 1723, 1, 1693, 18311, 1, 3637, 1, 1, 9001, 3719, 1, 24671, 1, 206641, 1, 1, 1, 1, 1, 1, 14341, 1, 1, 1, 3541, 1, 32029, 1, 1987, 4451, 53917, 3931, 162557, 1, 10891, 10739, 1, 1, 164987, 8821, 3251, 132967, 1, 2819, 33487, 7717, 3739, 61333, 56359, 45197, 1, 15139, 56909, 62233, 11437, 1, 1, 13553, 1, 8171, 1, 1861, 1, 5701, 1, 704579, 1, 1, 4327, 1, 59417, 142939, 59699, 3469, 1, 21863, 1, 2089, 20183, 2111, 1, 48781, 6791, 735143, 12281, 246193, 1, 2843, 61979, 29819, 877, 1, 2801, 14753, 12569, 755879, 1, 23011, 1, 50857, 1, 153271, 1, 8849, 1, 85931, 12919, 1, 1, 1, 11503, 10453, 65479, 71593, 1, 1, 1, 264881, 22123, 1, 1, 53453, 2543, 1, 1, 2069, 13513, 1, 2789, 54413, 6197, 1, 1, 3307, 41263, 1, 1, 2999, 69379, 1, 1, 1, 1, 10141, 1, 1, 3851, 3877, 3083, 170551, 1, 57097, 19507, 286721, 4789, 863879, 1, 1, 217367, 1, 72767, 1, 73079, 1, 8807, 12791, 14741, 13229, 2243, 59341, 1, 2591, 1, 1, 1, 300493, 2657, 33529, 4447, 16529, 1, 20287, 228707, 305581, 1, 83689, 1, 308141, 10069, 12377, 1, 4547, 77839, 18353, 2039, 6143, 1, 943763, 78809, 21059, 237401, 1, 1, 1, 1, 1, 1, 29191, 26813, 193447, 4751, 1, 1, 108347, 3257, 6571, 1, 1, 1, 2269, 1, 4217, 27583, 2741, 1, 332993, 1, 1, 1, 1, 1, 7489, 1, 1015043, 1, 1, 10211, 341041, 85429, 1, 1, 68749, 258317, 1, 1, 1, 1021, 347821, 9013, 23279, 1, 19121, 1, 117307, 1, 353293, 1,

6. Sequence of the polynom (only primes)

3, 17, 5, 11, 29, 47, 193, 743, 23, 61, 251, 73, 1283, 79, 149, 379, 167, 557, 71, 41, 2579, 941, 67, 89, 1201, 431, 181, 359, 1151, 317, 409, 83, 163, 277, 1901, 1637, 7079, 827, 1907, 521, 233, 2861, 439, 853, 653, 227, 367, 1231, 113, 479, 829, 3167, 787, 4621, 3527, 1217, 2971, 1259, 569, 269, 349, 463, 1129, 563, 709, 1619, 3943, 1667, 5147, 6961, 353, 457, 433, 4663, 179, 347, 1213, 2731, 2293, 2129, 6551, 2239, 2473, 9293, 9521, 5851, 2467, 1997, 7577, 3407, 31379, 8117, 199, 2767, 673, 1063, 197, 491, 3019, 2441, 38183, 643, 10457, 14081, 1873, 11087, 3767, 9127, 5167, 2347, 929, 797, 12401, 857, 17293, 2617, 5867, 977, 4517, 811, 18541, 1951, 19181, 4999, 20161, 3049, 1033, 62483, 16001, 5419, 65543, 22193, 22541, 631, 4649, 1597, 7867, 71879, 4937, 6217, 15031, 701, 2311, 25793, 2707, 599, 5309, 20051, 6779, 28081, 7069, 1553, 2389, 307, 1009, 8089, 1493, 1307, 22697, 677, 18523, 10427, 4723, 773, 96323, 2693, 1301, 24551, 100103, 719, 5101, 8609, 1223, 2339, 35521, 1787, 7369, 3089, 9719, 29501, 9949, 40493, 40961, 3433, 24859, 947, 31607, 2131, 11689, 14447, 32687, 1753, 2417, 45293, 137363, 9257, 2053, 3119, 1069, 141863, 2377, 7207, 4391, 29287, 1973, 907, 8887, 2531, 12917, 31159, 13049, 2663, 160583, 4483, 983, 40751, 165443, 2083, 1297, 3823, 1879, 57901, 2909, 2113, 59021, 1663, 1481, 9151, 20431, 3079, 47051, 2521, 1439, 190823, 2791, 64781, 16417, 49697, 2017, 3343, 1783, 3373, 7529, 51047, 17167, 1427, 4093, 953, 4129, 212423, 2857, 1601, 18089, 218003, 2221, 2549, 1091, 1367, 3331, 75821, 9973, 77101, 58067, 1789, 26347, 2381, 79693, 4001, 1289, 61001, 16333, 6833, 22453, 4133, 50599, 1889, 64007, 1823, 87041, 65537, 53047, 22189, 89101, 13417, 4507, 271463, 22709, 6079, 23059, 16339, 1549, 3217, 1277, 2621, 56827, 23767, 71837, 4337, 4861, 2957, 19661, 1451, 59419, 99761, 100493, 303683, 2309, 20393, 3137, 6173, 1153, 8839, 107201, 323879, 5417, 1741, 1627, 1609, 10163, 1697, 9413, 22669, 3181, 11887, 115693, 1583, 4139, 1279, 118861, 358979, 90647, 10139, 73243, 11171, 18493, 41231, 1877, 25229, 16561, 2719, 19231, 128621, 10753, 32467, 1607, 6577, 6619, 44267, 2437, 26729, 16139, 11243, 3301, 4073, 136193, 411143, 34369, 27581, 418883, 46831, 21139, 35449, 1399, 1321, 28621, 9787, 143981, 5501, 1453, 8573, 9967, 36767, 1499, 6491, 7487, 450563, 12553, 3919, 12703, 458663, 1361, 17189, 3547, 2087, 5119, 1579, 43189, 2647, 5209, 4463, 9533, 24379, 54331, 491783, 124001, 33161, 3779, 1993, 15331, 1483, 4423, 5197, 8599, 12619, 8647, 2141, 34877, 43717, 105211, 14653, 176321, 2411, 10429, 2963, 3259, 45179, 3037, 5521, 2207, 110503, 8191, 186161, 2027, 2267, 141497, 12611, 47417, 63727, 28753, 192193, 5381, 146051, 2297, 8293, 9839, 197293, 29671, 66107, 4519, 119611, 1723, 1693, 18311, 3637, 9001, 3719, 24671, 206641, 14341, 3541, 32029, 1987, 4451, 53917, 3931, 162557, 10891, 10739, 164987, 8821, 3251, 132967, 2819, 33487, 7717, 3739, 61333, 56359, 45197, 15139, 56909, 62233, 11437, 13553, 8171, 1861, 5701, 704579, 4327, 59417, 142939, 59699, 3469, 21863, 2089, 20183, 2111, 48781, 6791, 735143, 12281, 246193, 2843, 61979, 29819, 877, 2801, 14753, 12569, 755879, 23011, 50857, 153271, 8849, 85931, 12919, 11503, 10453, 65479, 71593, 264881, 22123, 53453, 2543, 2069, 13513, 2789, 54413, 6197, 3307, 41263, 2999, 69379, 10141, 3851, 3877, 3083, 170551, 57097, 19507, 286721, 4789, 863879, 217367, 72767, 73079, 8807, 12791, 14741, 13229, 2243, 59341, 2591, 300493, 2657, 33529, 4447, 16529, 20287, 228707, 305581, 83689, 308141, 10069, 12377, 4547, 77839, 18353, 2039, 6143, 943763, 78809, 21059, 237401, 29191, 26813, 193447, 4751, 108347, 3257, 6571, 2269, 4217, 27583, 2741, 332993, 7489, 1015043, 10211, 341041, 85429, 68749, 258317, 1021, 347821, 9013, 23279, 19121, 117307, 353293,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+64x+3 and
the reducible primes which appear as divisor for the first time
p | x^2+64x+3 and p < x^2+64x+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
21005813450.5800000.1300000.4500007.2500004.3333339.000000
31.000582755070.5820000.0750000.50700010.0344835.76923111.266666
410.0006.1405495.5910.6140000.0549000.55910010.5498297.32000011.027614
5100.00062.9594.11858.8410.6295900.0411800.58841010.2539097.50091110.524236
61.000.000641.07033.604607.4660.6410700.0336040.60746610.1823418.16027210.323855
710.000.0006.486.663283.0016.203.6620.6486660.0283000.62036610.1184948.42164610.212360
8100.000.00065.438.9222.444.34062.994.5820.6543890.0244430.62994610.0882258.63721410.154419
91.000.000.000658.757.79821.511.795637.246.0030.6587580.0215120.63724610.0667598.80065610.115886
1010.000.000.0006.622.420.042192.124.4806.430.295.5620.6622420.0192120.64303010.0528908.93112210.090758


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
387250.8750000.2500000.6250001.7500001.0000002.500000
41613580.8125000.3125000.5000001.8571432.5000001.600000
532227150.6875000.2187500.4687501.6923081.4000001.875000
6643811270.5937500.1718750.4218751.7272731.5714291.800000
71287414600.5781250.1093750.4687501.9473681.2727272.222222
8256143271160.5585940.1054690.4531251.9324321.9285711.933333
9512294512430.5742190.0996090.4746092.0559441.8888892.094828
101.024596775190.5820310.0751950.5068362.0272111.5098042.135803
112.0481.2291411.0880.6000980.0688480.5312502.0620811.8311692.096339
124.0962.4692492.2200.6027830.0607910.5419922.0089501.7659572.040441
138.1925.0274654.5620.6136470.0567630.5568852.0360471.8674702.054955
1416.38410.1258589.2670.6179810.0523680.5656132.0141241.8451612.031346
1532.76820.3741.54518.8290.6217650.0471500.5746152.0122471.8006992.031833
1665.53641.0392.85838.1810.6262050.0436100.5825962.0142831.8498382.027776
17131.07282.7345.24877.4860.6312100.0400390.5911712.0159851.8362492.029439
18262.144166.4599.835156.6240.6349910.0375180.5974732.0119781.8740472.021320
19524.288334.71218.632316.0800.6384120.0355380.6028752.0107771.8944592.018081
201.048.576672.32735.091637.2360.6411810.0334650.6077162.0086731.8833732.016059
212.097.1521.350.17866.3141.283.8640.6438150.0316210.6121942.0082161.8897722.014739
224.194.3042.709.887126.1212.583.7660.6460870.0300700.6160182.0070591.9018762.012492
238.388.6085.437.145240.4075.196.7380.6481580.0286590.6194992.0064101.9061622.011304
2416.777.21610.907.833458.26910.449.5640.6501580.0273150.6228432.0061691.9062222.010793
2533.554.43221.873.234876.76520.996.4690.6518730.0261300.6257442.0052781.9132102.009315
2667.108.86443.856.0911.679.79042.176.3010.6535070.0250310.6284762.0050121.9158952.008733
27134.217.72887.913.7893.224.60684.689.1830.6550090.0240250.6309842.0045971.9196482.007980
28268.435.456176.199.2386.199.440169.999.7980.6563930.0230950.6332992.0042271.9225422.007338
29536.870.912353.084.97411.936.892341.148.0820.6576720.0222340.6354382.0038961.9254792.006756
301.073.741.824707.466.38023.013.194684.453.1860.6588790.0214330.6374472.0036721.9279052.006323
312.147.483.6481.417.341.18844.426.1051.372.915.0830.6600010.0206880.6393132.0034041.9304622.005857
324.294.967.2962.839.187.65885.875.5362.753.312.1220.6610500.0199940.6410552.0031791.9329972.005450
338.589.934.5925.686.834.431166.203.1385.520.631.2930.6620350.0193490.6426862.0029791.9353962.005087
3417.179.869.18411.389.608.500321.999.57411.067.608.9260.6629620.0187430.6442202.0028031.9373862.004772


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
382011100
4165041301
5327061411
664110101523
7128140131625
82562702659310
951251050915522
101.024770761225832
112.048141014019491855
124.096249024836882996
138.19246504646215356194
1416.3848580857118299107334
1532.7681.54501.544210543204588
1665.5362.85802.8573731.0593841.042
17131.0725.24805.2476701.9466851.947
18262.1449.83509.8341.3083.6421.2563.629
19524.28818.632018.6312.4466.9022.4026.882
201.048.57635.091035.0904.50613.0274.50713.051
212.097.15266.314066.3138.54124.7078.49324.573
224.194.304126.1210126.12016.10946.99916.18246.831
238.388.608240.4070240.40630.72089.74330.77289.172
2416.777.216458.2690458.26858.635170.90058.559170.175
2533.554.432876.7650876.764112.038326.672112.194325.861
2667.108.8641.679.79001.679.789214.129625.770214.590625.301
27134.217.7283.224.60603.224.605410.6041.201.064411.5081.201.430
28268.435.4566.199.44006.199.439789.3882.309.630790.6002.309.822
29536.870.91211.936.892011.936.8911.519.2774.448.3261.519.2114.450.078
301.073.741.82423.013.194023.013.1932.928.0448.578.9912.928.1938.577.966
312.147.483.64844.426.105044.426.1045.649.12716.563.6135.649.37816.563.987
324.294.967.29685.875.536085.875.53510.911.58432.024.27210.915.90932.023.771
338.589.934.592166.203.1380166.203.13721.110.90461.990.92421.113.39161.987.919
3417.179.869.184321.999.5740321.999.57340.881.574120.118.06940.879.430120.120.501


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
242020110
385141121
4168352132
53215692355
6642711166597
712860303014141814
8256116615533263027
951224313011369477156
101.024519278241133115149122
112.0481.088595493275254298261
124.0962.2201.221999577526580537
138.1924.5622.4482.1141.1851.0941.1951.088
1416.3849.2674.9124.3552.3972.2242.4142.232
1532.76818.8299.9538.8764.8664.4794.9144.570
1665.53638.18120.13618.0459.9329.1389.8849.227
17131.07277.48640.60736.87920.03718.60420.12018.725
18262.144156.62481.94874.67640.39437.57740.48438.169
19524.288316.080164.775151.30581.48076.39581.20077.005
201.048.576637.236331.282305.954164.010154.434163.307155.485
212.097.1521.283.864665.708618.156329.765312.286328.610313.203
224.194.3042.583.7661.337.7121.246.054662.686629.709661.421629.950
238.388.6085.196.7382.686.4552.510.2831.330.6141.268.0581.329.4931.268.573
2416.777.21610.449.5645.393.9275.055.6372.671.1902.554.0352.670.0212.554.318
2533.554.43220.996.46910.816.96510.179.5045.359.0305.136.7145.364.0815.136.644
2667.108.86442.176.30121.700.17620.476.12510.755.63310.329.19210.761.12310.330.353
27134.217.72884.689.18343.517.54941.171.63421.579.01220.759.83821.584.13020.766.203
28268.435.456169.999.79887.248.84682.750.95243.284.68841.707.38443.292.71641.715.010
29536.870.912341.148.082174.897.257166.250.82586.797.20483.768.26486.805.38083.777.234
301.073.741.824684.453.186350.554.060333.899.126174.028.959168.185.235174.035.829168.203.163
312.147.483.6481.372.915.083702.519.107670.395.976348.849.340337.592.497348.853.202337.620.044
324.294.967.2962.753.312.1221.407.669.8961.345.642.226699.171.698677.485.590699.209.800677.445.034
338.589.934.5925.520.631.2932.820.241.4522.700.389.8411.401.184.6571.359.111.8511.401.220.6031.359.114.182
3417.179.869.18411.067.608.9265.649.742.4385.417.866.4882.807.596.6862.726.160.7052.807.644.8632.726.206.672


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 17, 5, 1, 11, 29, 47, 1, 193, 1, 743, 23, 61, 251, 73, 1, 1283, 1, 1, 79,
Found in Database : 3, 17, 5, 11, 29, 47, 193, 743, 23, 61, 251, 73, 1283, 79, 149, 379, 167, 557, 71, 41, 2579, 941, 67, 89, 1201, 431,
Found in Database : 3, 5, 11, 17, 23, 29, 41, 47, 61, 67, 71, 73, 79, 83, 89, 113, 149,