Inhaltsverzeichnis

Development of
Algorithmic Constructions

04:30:27
Deutsch
19.Apr 2024

Polynom = x^2-81x+5

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) = 5 = 5
f(1) = 75 = 3*5*5
f(2) = 153 = 3*3*17
f(3) = 229 = 229
f(4) = 303 = 3*101
f(5) = 375 = 3*5*5*5
f(6) = 445 = 5*89
f(7) = 513 = 3*3*3*19
f(8) = 579 = 3*193
f(9) = 643 = 643
f(10) = 705 = 3*5*47
f(11) = 765 = 3*3*5*17
f(12) = 823 = 823
f(13) = 879 = 3*293
f(14) = 933 = 3*311
f(15) = 985 = 5*197
f(16) = 1035 = 3*3*5*23
f(17) = 1083 = 3*19*19
f(18) = 1129 = 1129
f(19) = 1173 = 3*17*23
f(20) = 1215 = 3*3*3*3*3*5
f(21) = 1255 = 5*251
f(22) = 1293 = 3*431
f(23) = 1329 = 3*443
f(24) = 1363 = 29*47
f(25) = 1395 = 3*3*5*31
f(26) = 1425 = 3*5*5*19
f(27) = 1453 = 1453
f(28) = 1479 = 3*17*29
f(29) = 1503 = 3*3*167
f(30) = 1525 = 5*5*61
f(31) = 1545 = 3*5*103
f(32) = 1563 = 3*521
f(33) = 1579 = 1579
f(34) = 1593 = 3*3*3*59
f(35) = 1605 = 3*5*107
f(36) = 1615 = 5*17*19
f(37) = 1623 = 3*541
f(38) = 1629 = 3*3*181
f(39) = 1633 = 23*71
f(40) = 1635 = 3*5*109
f(41) = 1635 = 3*5*109
f(42) = 1633 = 23*71
f(43) = 1629 = 3*3*181
f(44) = 1623 = 3*541
f(45) = 1615 = 5*17*19
f(46) = 1605 = 3*5*107
f(47) = 1593 = 3*3*3*59
f(48) = 1579 = 1579
f(49) = 1563 = 3*521
f(50) = 1545 = 3*5*103
f(51) = 1525 = 5*5*61
f(52) = 1503 = 3*3*167
f(53) = 1479 = 3*17*29
f(54) = 1453 = 1453
f(55) = 1425 = 3*5*5*19
f(56) = 1395 = 3*3*5*31
f(57) = 1363 = 29*47
f(58) = 1329 = 3*443
f(59) = 1293 = 3*431
f(60) = 1255 = 5*251
f(61) = 1215 = 3*3*3*3*3*5
f(62) = 1173 = 3*17*23
f(63) = 1129 = 1129
f(64) = 1083 = 3*19*19
f(65) = 1035 = 3*3*5*23
f(66) = 985 = 5*197
f(67) = 933 = 3*311
f(68) = 879 = 3*293
f(69) = 823 = 823
f(70) = 765 = 3*3*5*17
f(71) = 705 = 3*5*47
f(72) = 643 = 643
f(73) = 579 = 3*193
f(74) = 513 = 3*3*3*19
f(75) = 445 = 5*89
f(76) = 375 = 3*5*5*5
f(77) = 303 = 3*101
f(78) = 229 = 229
f(79) = 153 = 3*3*17
f(80) = 75 = 3*5*5
f(81) = 5 = 5
f(82) = 87 = 3*29
f(83) = 171 = 3*3*19
f(84) = 257 = 257
f(85) = 345 = 3*5*23
f(86) = 435 = 3*5*29
f(87) = 527 = 17*31
f(88) = 621 = 3*3*3*23
f(89) = 717 = 3*239
f(90) = 815 = 5*163
f(91) = 915 = 3*5*61
f(92) = 1017 = 3*3*113
f(93) = 1121 = 19*59
f(94) = 1227 = 3*409
f(95) = 1335 = 3*5*89
f(96) = 1445 = 5*17*17
f(97) = 1557 = 3*3*173
f(98) = 1671 = 3*557
f(99) = 1787 = 1787
f(100) = 1905 = 3*5*127

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-81x+5

f(0)=5
f(1)=3
f(2)=17
f(3)=229
f(4)=101
f(5)=1
f(6)=89
f(7)=19
f(8)=193
f(9)=643
f(10)=47
f(11)=1
f(12)=823
f(13)=293
f(14)=311
f(15)=197
f(16)=23
f(17)=1
f(18)=1129
f(19)=1
f(20)=1
f(21)=251
f(22)=431
f(23)=443
f(24)=29
f(25)=31
f(26)=1
f(27)=1453
f(28)=1
f(29)=167
f(30)=61
f(31)=103
f(32)=521
f(33)=1579
f(34)=59
f(35)=107
f(36)=1
f(37)=541
f(38)=181
f(39)=71
f(40)=109
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=257
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=239
f(90)=163
f(91)=1
f(92)=113
f(93)=1
f(94)=409
f(95)=1
f(96)=1
f(97)=173
f(98)=557
f(99)=1787

b) Substitution of the polynom
The polynom f(x)=x^2-81x+5 could be written as f(y)= y^2-1635.25 with x=y+40.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-40.5
f'(x)>2x-82 with x > 40

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

5, 3, 17, 229, 101, 1, 89, 19, 193, 643, 47, 1, 823, 293, 311, 197, 23, 1, 1129, 1, 1, 251, 431, 443, 29, 31, 1, 1453, 1, 167, 61, 103, 521, 1579, 59, 107, 1, 541, 181, 71, 109, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 257, 1, 1, 1, 1, 239, 163, 1, 113, 1, 409, 1, 1, 173, 557, 1787, 127, 1, 1, 757, 1, 1, 1, 929, 1, 1019, 1, 1, 1, 1, 3767, 1, 271, 4217, 1, 503, 937, 1, 1669, 5171, 593, 367, 227, 1949, 223, 6197, 1, 1, 6737, 769, 1, 1459, 499, 853, 463, 2689, 1, 1693, 1, 2957, 313, 619, 211, 571, 3307, 1, 1, 1, 1, 1, 1, 1, 2341, 1, 4057, 653, 281, 859, 13127, 4457, 1, 1, 941, 4789, 14621, 1, 1009, 3079, 307, 1, 16187, 1097, 1, 739, 1, 5849, 1, 1, 1, 18671, 1, 1283, 3907, 2203, 353, 1201, 1381, 467, 21317, 7207, 7309, 4447, 1, 401, 1, 7829, 1, 1, 1, 359, 25097, 1, 1, 1373, 8807, 991, 5419, 1, 1, 461, 3163, 1, 1, 9839, 3319, 1, 2039, 2063, 31307, 1, 1, 6481, 1, 1, 33521, 11299, 457, 1, 1, 11807, 587, 1, 1, 1, 12457, 12589, 449, 857, 419, 39371, 13259, 1, 1, 13669, 13807, 1, 1, 569, 607, 1, 1, 1, 1, 887, 1, 1, 1, 9397, 15809, 1, 2543, 3251, 1, 49667, 5569, 733, 1, 3433, 1, 1, 1, 3557, 2153, 2011, 18257, 547, 743, 1249, 56687, 1, 19219, 1, 1303, 19709, 59621, 691, 1, 719, 1, 20707, 62627, 1, 4243, 64157, 21557, 7243, 773, 883, 1171, 67271, 1, 911, 1, 1, 1, 70457, 4733, 1, 72077, 8069, 1, 641, 4951, 1, 1, 25309, 5099, 811, 8623, 1, 78737, 1, 1, 80447, 1, 1, 1, 613, 27779, 83921, 1657, 1, 17137, 28759, 1259, 1861, 1, 1, 1, 1033, 1117, 18217, 6113, 1061, 92921, 1, 6277, 1, 31799, 1, 761, 1297, 1, 1, 3673, 1, 20089, 1, 1, 1, 1493, 6911, 673, 1, 1, 106277, 7129, 797, 3733, 36307, 36529, 22051, 1, 37199, 1, 37649, 1, 22861, 38329, 38557, 5059, 1, 1, 1, 1, 13313, 24103, 8081, 40639, 7213, 1, 8269, 1, 1, 4673, 1, 1, 1, 7591, 14419, 43499, 1, 1, 1, 1321, 1, 1, 27127, 5051, 45707, 137867, 9241, 1, 2297, 46957, 2777, 28477, 3181, 47969, 144671, 48479, 1, 5879, 2897, 1597, 149297, 1, 1, 151637, 1, 1, 1621, 1, 51859, 156371, 5821, 10531, 1, 53189, 1, 1, 10799, 10853, 1, 18269, 55079, 33211, 1, 6211, 1, 2971, 2269, 1487, 1, 57557, 1, 1, 1, 1709, 1, 59239, 1, 1, 60089, 2551, 60659, 1, 36739, 61519, 3253, 1741, 4159, 1, 1733, 1, 1, 1, 1, 3391, 1, 21673, 13063, 39367, 3877, 1, 1571, 1, 13421, 1, 7523, 1447, 2411, 13723, 22973, 207671, 3023, 13967, 1, 1021, 1, 12541, 1, 1, 1, 72307, 1, 43759, 1, 4327, 221621, 74189, 4967, 44893, 2591, 1237, 3853, 1, 1, 10009, 1, 25793, 2027, 3121, 1667, 236021, 1549, 1, 47791, 79979, 8923, 241907, 16193, 1, 244877, 1607, 1, 1, 1, 27763, 250871, 1, 1, 1, 1049, 3709, 13523, 1, 1151, 8387, 1, 1, 1, 5869, 88379, 14009, 89069, 1987, 53857, 1, 1, 272417, 1, 18301, 1153, 1, 30853, 1, 1, 5507, 281921, 1, 1, 2281, 5021, 1, 1, 1, 1, 2887, 1, 97919, 1, 1, 1, 6343, 5867, 20021, 2621, 33613, 101207, 13249, 20389, 1, 18121, 1, 1, 1, 1, 104549, 314771, 3631, 1409, 1, 1499, 1, 3613, 1, 21589, 324977, 108707, 1, 3457, 1, 4793, 331871, 37003, 22279, 1427, 1, 2207, 5743, 1193, 4549, 342347, 4241, 1291, 2767, 1361, 38693, 12049, 6151, 1, 1, 1, 118457, 356567, 1, 2659, 360167, 1, 6361, 2347, 8111, 122069, 21613, 1, 8219, 14843, 1, 6553, 1279, 1, 25147, 1, 1, 42323, 3323, 1, 4421, 1, 43013, 1523, 2687, 1, 1, 393377, 26309, 26393, 20903, 44269, 1, 80191, 1, 1, 5701, 135349, 5431, 1, 1, 1, 412457, 27583, 1, 1, 1301, 1, 1, 1, 140939, 424121, 1, 1, 1451, 1, 1613, 25411, 9629, 1, 435947, 145757, 48733, 17597, 1, 4759, 26113, 1, 1567, 1, 149759, 50069, 451967, 1, 1783, 1, 1, 152909, 1, 30763, 1, 464171, 5351, 1831, 18731, 52183, 157007, 1, 6317, 10559, 20719, 9371, 159769, 1, 3571, 161159, 15641, 1, 10837, 97813, 1, 1, 493277, 10993, 33073, 497507, 8753, 1, 5903, 6709, 1, 17449, 56383, 1, 102061, 170579, 3001, 30271, 34403, 34499, 1, 19273, 1, 1, 34981, 1, 2053, 5689, 1, 1, 59273, 178307, 2137, 1559, 1, 28463, 1, 1, 1, 12149, 6301, 9011, 1, 12281, 1, 2081, 185707, 3229, 1, 37441, 563117, 11071, 62903, 1, 1997, 1, 24877, 63743, 1, 1, 192749, 1, 5333, 1, 1, 1, 65269, 4177, 6947, 1, 1, 2371, 3371, 2099, 119953, 22271, 11821, 604427, 1, 1, 609107, 1, 1, 122761, 1, 12097, 618521, 206699, 1, 4021, 208279, 208807, 33053, 1, 1, 632777, 211457, 70663, 4397, 42611, 213589, 33809, 1, 1, 129439, 9403, 72269, 3769, 43577, 8737, 2273, 3851, 1, 1, 1, 24631, 666671, 1, 1, 7901, 1, 1, 4051, 1, 15107, 29629, 227707, 1, 1, 1699, 12101, 11719, 2243, 15439, 1, 232699, 13721, 701447, 1, 2473, 706487, 2089, 1, 1, 2797, 1, 716621, 79813, 2087, 1, 1, 1, 1, 2857, 1, 731957, 1, 245129, 7759, 9851, 1, 1, 247999, 1, 149491, 83243, 250307, 1, 2647, 1867, 1, 1, 253789, 152623, 1, 5437, 768371, 1, 1, 1, 258469, 8933, 25127, 5783, 10433, 27043, 262007, 1, 31583, 52757, 4481, 794921, 88523, 53233, 6959, 15727, 1, 1, 53831, 53951, 811067, 1, 1, 2677, 3209, 1, 1, 274579, 1, 6619, 1, 277007, 48991, 1, 1, 44123, 2719, 12203, 168769, 18793, 1, 2939, 6037, 1, 2803, 15031, 1, 5279, 19163, 3389, 866057, 1, 96643, 174331, 1, 2833, 14869, 32561, 1, 6089, 12823, 98519, 888557, 1, 1, 894227, 5857, 2357, 1, 1, 3719, 905621, 1, 3191, 1, 1, 2851, 2287,

6. Sequence of the polynom (only primes)

5, 3, 17, 229, 101, 89, 19, 193, 643, 47, 823, 293, 311, 197, 23, 1129, 251, 431, 443, 29, 31, 1453, 167, 61, 103, 521, 1579, 59, 107, 541, 181, 71, 109, 257, 239, 163, 113, 409, 173, 557, 1787, 127, 757, 929, 1019, 3767, 271, 4217, 503, 937, 1669, 5171, 593, 367, 227, 1949, 223, 6197, 6737, 769, 1459, 499, 853, 463, 2689, 1693, 2957, 313, 619, 211, 571, 3307, 2341, 4057, 653, 281, 859, 13127, 4457, 941, 4789, 14621, 1009, 3079, 307, 16187, 1097, 739, 5849, 18671, 1283, 3907, 2203, 353, 1201, 1381, 467, 21317, 7207, 7309, 4447, 401, 7829, 359, 25097, 1373, 8807, 991, 5419, 461, 3163, 9839, 3319, 2039, 2063, 31307, 6481, 33521, 11299, 457, 11807, 587, 12457, 12589, 449, 857, 419, 39371, 13259, 13669, 13807, 569, 607, 887, 9397, 15809, 2543, 3251, 49667, 5569, 733, 3433, 3557, 2153, 2011, 18257, 547, 743, 1249, 56687, 19219, 1303, 19709, 59621, 691, 719, 20707, 62627, 4243, 64157, 21557, 7243, 773, 883, 1171, 67271, 911, 70457, 4733, 72077, 8069, 641, 4951, 25309, 5099, 811, 8623, 78737, 80447, 613, 27779, 83921, 1657, 17137, 28759, 1259, 1861, 1033, 1117, 18217, 6113, 1061, 92921, 6277, 31799, 761, 1297, 3673, 20089, 1493, 6911, 673, 106277, 7129, 797, 3733, 36307, 36529, 22051, 37199, 37649, 22861, 38329, 38557, 5059, 13313, 24103, 8081, 40639, 7213, 8269, 4673, 7591, 14419, 43499, 1321, 27127, 5051, 45707, 137867, 9241, 2297, 46957, 2777, 28477, 3181, 47969, 144671, 48479, 5879, 2897, 1597, 149297, 151637, 1621, 51859, 156371, 5821, 10531, 53189, 10799, 10853, 18269, 55079, 33211, 6211, 2971, 2269, 1487, 57557, 1709, 59239, 60089, 2551, 60659, 36739, 61519, 3253, 1741, 4159, 1733, 3391, 21673, 13063, 39367, 3877, 1571, 13421, 7523, 1447, 2411, 13723, 22973, 207671, 3023, 13967, 1021, 12541, 72307, 43759, 4327, 221621, 74189, 4967, 44893, 2591, 1237, 3853, 10009, 25793, 2027, 3121, 1667, 236021, 1549, 47791, 79979, 8923, 241907, 16193, 244877, 1607, 27763, 250871, 1049, 3709, 13523, 1151, 8387, 5869, 88379, 14009, 89069, 1987, 53857, 272417, 18301, 1153, 30853, 5507, 281921, 2281, 5021, 2887, 97919, 6343, 5867, 20021, 2621, 33613, 101207, 13249, 20389, 18121, 104549, 314771, 3631, 1409, 1499, 3613, 21589, 324977, 108707, 3457, 4793, 331871, 37003, 22279, 1427, 2207, 5743, 1193, 4549, 342347, 4241, 1291, 2767, 1361, 38693, 12049, 6151, 118457, 356567, 2659, 360167, 6361, 2347, 8111, 122069, 21613, 8219, 14843, 6553, 1279, 25147, 42323, 3323, 4421, 43013, 1523, 2687, 393377, 26309, 26393, 20903, 44269, 80191, 5701, 135349, 5431, 412457, 27583, 1301, 140939, 424121, 1451, 1613, 25411, 9629, 435947, 145757, 48733, 17597, 4759, 26113, 1567, 149759, 50069, 451967, 1783, 152909, 30763, 464171, 5351, 1831, 18731, 52183, 157007, 6317, 10559, 20719, 9371, 159769, 3571, 161159, 15641, 10837, 97813, 493277, 10993, 33073, 497507, 8753, 5903, 6709, 17449, 56383, 102061, 170579, 3001, 30271, 34403, 34499, 19273, 34981, 2053, 5689, 59273, 178307, 2137, 1559, 28463, 12149, 6301, 9011, 12281, 2081, 185707, 3229, 37441, 563117, 11071, 62903, 1997, 24877, 63743, 192749, 5333, 65269, 4177, 6947, 2371, 3371, 2099, 119953, 22271, 11821, 604427, 609107, 122761, 12097, 618521, 206699, 4021, 208279, 208807, 33053, 632777, 211457, 70663, 4397, 42611, 213589, 33809, 129439, 9403, 72269, 3769, 43577, 8737, 2273, 3851, 24631, 666671, 7901, 4051, 15107, 29629, 227707, 1699, 12101, 11719, 2243, 15439, 232699, 13721, 701447, 2473, 706487, 2089, 2797, 716621, 79813, 2087, 2857, 731957, 245129, 7759, 9851, 247999, 149491, 83243, 250307, 2647, 1867, 253789, 152623, 5437, 768371, 258469, 8933, 25127, 5783, 10433, 27043, 262007, 31583, 52757, 4481, 794921, 88523, 53233, 6959, 15727, 53831, 53951, 811067, 2677, 3209, 274579, 6619, 277007, 48991, 44123, 2719, 12203, 168769, 18793, 2939, 6037, 2803, 15031, 5279, 19163, 3389, 866057, 96643, 174331, 2833, 14869, 32561, 6089, 12823, 98519, 888557, 894227, 5857, 2357, 3719, 905621, 3191, 2851, 2287,

7. Distribution of the primes

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

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)
11010371.0000000.3000001.0000000.0000000.0000000.000000
21003410240.3400000.1000000.3400003.4000003.3333333.428571
31.000578824960.5780000.0820000.57800017.0000008.20000020.666666
410.0006.4685515.9170.6468000.0551000.64680011.1903116.71951211.929436
5100.00066.1684.26261.9060.6616800.0426200.66168010.2300567.73502710.462397
61.000.000667.69234.702632.9900.6676920.0347020.66769210.0908598.14218710.225019
710.000.0006.710.979293.8666.417.1130.6710980.0293870.67109810.0510108.46827310.137779
8100.000.00067.386.2402.548.08364.838.1570.6738620.0254810.67386210.0411948.67090110.103945
91.000.000.000676.002.83222.488.712653.514.1200.6760030.0224890.67600310.0317638.82573810.079160
1010.000.000.0006.776.995.812201.274.4276.575.721.3850.6777000.0201270.67770010.0251008.95002110.062096


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)
123121.5000000.5000001.0000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666672.0000001.500000
388261.0000000.2500000.7500001.6000001.0000002.000000
416144100.8750000.2500000.6250001.7500002.0000001.666667
532247170.7500000.2187500.5312501.7142861.7500001.700000
664298210.4531250.1250000.3281251.2083331.1428571.235294
71284713340.3671880.1015620.2656251.6206901.6250001.619048
825611625910.4531250.0976560.3554692.4680851.9230772.676471
9512271442270.5292970.0859380.4433592.3362071.7600002.494505
101.024592825100.5781250.0800780.4980472.1845021.8636362.246696
112.0481.2501381.1120.6103520.0673830.5429692.1114861.6829272.180392
124.0962.5832522.3310.6306150.0615230.5690922.0664001.8260872.096223
138.1925.2714724.7990.6434330.0576170.5858152.0406501.8730162.058773
1416.38410.6598449.8150.6505740.0515140.5990602.0221971.7881362.045218
1532.76821.5211.57719.9440.6567690.0481260.6086432.0190451.8684832.031992
1665.53643.2642.90340.3610.6601560.0442960.6158602.0103151.8408372.023716
17131.07286.8555.44281.4130.6626510.0415190.6211322.0075581.8746122.017121
18262.144174.29310.174164.1190.6648750.0388110.6260642.0067121.8695332.015882
19524.288349.28419.112330.1720.6662060.0364530.6297532.0040051.8785142.011784
201.048.576700.14136.237663.9040.6677060.0345580.6331482.0045031.8960342.010782
212.097.1521.402.49068.7261.333.7640.6687590.0327710.6359882.0031541.8965702.008971
224.194.3042.809.296130.8722.678.4240.6697880.0312020.6385862.0030771.9042582.008169
238.388.6085.627.788249.2985.378.4900.6708850.0297190.6411662.0032731.9048992.008080
2416.777.21611.270.458476.54810.793.9100.6717720.0284040.6433672.0026441.9115602.006866
2533.554.43222.570.478911.80321.658.6750.6726530.0271740.6454792.0026231.9133502.006564
2667.108.86445.193.1381.749.95743.443.1810.6734300.0260760.6473542.0023121.9192272.005810
27134.217.72890.487.1413.363.03487.124.1070.6741820.0250570.6491252.0022321.9217812.005472
28268.435.456181.154.1206.470.191174.683.9290.6748520.0241030.6507482.0019871.9239152.005001
29536.870.912362.641.22712.472.405350.168.8220.6754720.0232320.6522402.0018381.9276722.004585
301.073.741.824725.915.38424.059.864701.855.5200.6760610.0224070.6536542.0017451.9290482.004334
312.147.483.6481.453.005.67046.478.9871.406.526.6830.6766090.0216430.6549652.0016191.9318062.004012
324.294.967.2962.908.197.04789.910.7822.818.286.2650.6771170.0209340.6561832.0015041.9344392.003721
338.589.934.5925.820.515.105174.101.2325.646.413.8730.6775970.0202680.6573292.0014171.9363782.003492
3417.179.869.18411.648.825.574337.463.44611.311.362.1280.6780510.0196430.6584082.0013391.9383172.003283


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
382110020
4164310121
5327511231
6648611331
712813663532
8256256176865
95124463611121110
101.0248267421232018
112.048138613035383530
124.096252624464666062
138.1924726464123123115111
1416.3848446836216214209205
1532.7681.57761.569404388389396
1665.5362.90362.895741740709713
17131.0725.44265.4341.3611.3701.3471.364
18262.14410.174610.1662.5472.5352.5302.562
19524.28819.112619.1044.8354.7494.7304.798
201.048.57636.237636.2299.0969.0008.9989.143
212.097.15268.726668.71817.32017.03117.16617.209
224.194.304130.8726130.86432.84732.53332.79532.697
238.388.608249.2986249.29062.39262.18062.41862.308
2416.777.216476.5486476.540119.211119.080119.268118.989
2533.554.432911.8036911.795228.121227.981227.695228.006
2667.108.8641.749.95761.749.949437.231437.115437.489438.122
27134.217.7283.363.03463.363.026840.571841.621840.409840.433
28268.435.4566.470.19166.470.1831.617.1651.619.5801.617.3181.616.128
29536.870.91212.472.405612.472.3973.117.4913.119.4083.118.9193.116.587
301.073.741.82424.059.864624.059.8566.013.2296.018.0666.015.5896.012.980
312.147.483.64846.478.987646.478.97911.619.36511.622.95711.619.77111.616.894
324.294.967.29689.910.782689.910.77422.475.73522.478.10822.478.60222.478.337
338.589.934.592174.101.2326174.101.22443.521.10543.522.29443.527.02243.530.811
3417.179.869.184337.463.4466337.463.43884.359.43584.360.37184.372.82584.370.815


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
243021110
386233210
41610273232
532174124445
664217134575
712834132086119
825691494122222522
95122271279953546555
101.024510275234115128140127
112.0481.112584527273286281272
124.0962.3311.2041.126580590574587
138.1924.7992.5202.2781.2001.2181.1891.192
1416.3849.8155.1794.6352.4332.4742.4932.415
1532.76819.94410.4769.4674.8995.0105.0235.012
1665.53640.36121.10219.2589.96810.14210.12810.123
17131.07281.41342.34939.06320.22720.43720.36020.389
18262.144164.11985.06779.05140.89141.24541.06440.919
19524.288330.172170.885159.28682.35882.66782.51682.631
201.048.576663.904342.805321.098166.014166.276165.902165.712
212.097.1521.333.764687.124646.639333.608333.541333.056333.559
224.194.3042.678.4241.378.5581.299.865669.888669.993668.848669.695
238.388.6085.378.4902.762.9982.615.4911.345.1121.345.1551.343.8271.344.396
2416.777.21610.793.9105.539.2295.254.6802.700.2232.699.5952.696.7552.697.337
2533.554.43221.658.67511.101.58210.557.0925.417.1875.415.8015.411.7175.413.970
2667.108.86443.443.18122.246.43921.196.74110.859.25310.861.12210.859.23810.863.568
27134.217.72887.124.10744.564.10242.560.00421.781.93721.778.69821.782.63721.780.835
28268.435.456174.683.92989.268.38085.415.54843.675.42543.670.72143.668.03843.669.745
29536.870.912350.168.822178.793.466171.375.35587.547.48387.544.64187.529.88187.546.817
301.073.741.824701.855.520358.081.273343.774.246175.465.072175.474.037175.458.715175.457.696
312.147.483.6481.406.526.683717.054.602689.472.080351.629.310351.626.992351.659.272351.611.109
324.294.967.2962.818.286.2651.435.769.4941.382.516.770704.576.439704.582.672704.578.253704.548.901
338.589.934.5925.646.413.8732.874.700.9792.771.712.8931.411.626.7061.411.604.5851.411.608.9581.411.573.624
3417.179.869.18411.311.362.1285.755.407.9155.555.954.2122.827.880.2762.827.812.1842.827.851.0822.827.818.586


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 3, 17, 229, 101, 1, 89, 19, 193, 643, 47, 1, 823, 293, 311, 197, 23, 1, 1129, 1,
Found in Database : 5, 3, 17, 229, 101, 89, 19, 193, 643, 47, 823, 293, 311, 197, 23, 1129, 251, 431, 443, 29, 31, 1453, 167, 61, 103, 521, 1579, 59, 107, 541, 181, 71,
Found in Database : 3, 5, 17, 19, 23, 29, 31, 47, 59, 61, 71, 89, 101, 103, 107, 109, 113, 127,