Inhaltsverzeichnis

Development of
Algorithmic Constructions

18:00:04
Deutsch
16.Apr 2024

Polynom = x^2-156x+131

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) = 131 = 131
f(1) = 3 = 3
f(2) = 177 = 3*59
f(3) = 41 = 41
f(4) = 477 = 3*3*53
f(5) = 39 = 3*13
f(6) = 769 = 769
f(7) = 57 = 3*19
f(8) = 1053 = 3*3*3*3*13
f(9) = 149 = 149
f(10) = 1329 = 3*443
f(11) = 183 = 3*61
f(12) = 1597 = 1597
f(13) = 27 = 3*3*3
f(14) = 1857 = 3*619
f(15) = 31 = 31
f(16) = 2109 = 3*19*37
f(17) = 279 = 3*3*31
f(18) = 2353 = 13*181
f(19) = 309 = 3*103
f(20) = 2589 = 3*863
f(21) = 169 = 13*13
f(22) = 2817 = 3*3*313
f(23) = 183 = 3*61
f(24) = 3037 = 3037
f(25) = 393 = 3*131
f(26) = 3249 = 3*3*19*19
f(27) = 419 = 419
f(28) = 3453 = 3*1151
f(29) = 111 = 3*37
f(30) = 3649 = 41*89
f(31) = 117 = 3*3*13
f(32) = 3837 = 3*1279
f(33) = 491 = 491
f(34) = 4017 = 3*13*103
f(35) = 513 = 3*3*3*19
f(36) = 4189 = 59*71
f(37) = 267 = 3*89
f(38) = 4353 = 3*1451
f(39) = 277 = 277
f(40) = 4509 = 3*3*3*167
f(41) = 573 = 3*191
f(42) = 4657 = 4657
f(43) = 591 = 3*197
f(44) = 4797 = 3*3*13*41
f(45) = 19 = 19
f(46) = 4929 = 3*31*53
f(47) = 39 = 3*13
f(48) = 5053 = 31*163
f(49) = 639 = 3*3*71
f(50) = 5169 = 3*1723
f(51) = 653 = 653
f(52) = 5277 = 3*1759
f(53) = 333 = 3*3*37
f(54) = 5377 = 19*283
f(55) = 339 = 3*113
f(56) = 5469 = 3*1823
f(57) = 689 = 13*53
f(58) = 5553 = 3*3*617
f(59) = 699 = 3*233
f(60) = 5629 = 13*433
f(61) = 177 = 3*59
f(62) = 5697 = 3*3*3*211
f(63) = 179 = 179
f(64) = 5757 = 3*19*101
f(65) = 723 = 3*241
f(66) = 5809 = 37*157
f(67) = 729 = 3*3*3*3*3*3
f(68) = 5853 = 3*1951
f(69) = 367 = 367
f(70) = 5889 = 3*13*151
f(71) = 369 = 3*3*41
f(72) = 5917 = 61*97
f(73) = 741 = 3*13*19
f(74) = 5937 = 3*1979
f(75) = 743 = 743
f(76) = 5949 = 3*3*661
f(77) = 93 = 3*31
f(78) = 5953 = 5953
f(79) = 93 = 3*31
f(80) = 5949 = 3*3*661
f(81) = 743 = 743
f(82) = 5937 = 3*1979
f(83) = 741 = 3*13*19
f(84) = 5917 = 61*97
f(85) = 369 = 3*3*41
f(86) = 5889 = 3*13*151
f(87) = 367 = 367
f(88) = 5853 = 3*1951
f(89) = 729 = 3*3*3*3*3*3
f(90) = 5809 = 37*157
f(91) = 723 = 3*241
f(92) = 5757 = 3*19*101
f(93) = 179 = 179
f(94) = 5697 = 3*3*3*211
f(95) = 177 = 3*59
f(96) = 5629 = 13*433
f(97) = 699 = 3*233
f(98) = 5553 = 3*3*617
f(99) = 689 = 13*53
f(100) = 5469 = 3*1823

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-156x+131

f(0)=131
f(1)=3
f(2)=59
f(3)=41
f(4)=53
f(5)=13
f(6)=769
f(7)=19
f(8)=1
f(9)=149
f(10)=443
f(11)=61
f(12)=1597
f(13)=1
f(14)=619
f(15)=31
f(16)=37
f(17)=1
f(18)=181
f(19)=103
f(20)=863
f(21)=1
f(22)=313
f(23)=1
f(24)=3037
f(25)=1
f(26)=1
f(27)=419
f(28)=1151
f(29)=1
f(30)=89
f(31)=1
f(32)=1279
f(33)=491
f(34)=1
f(35)=1
f(36)=71
f(37)=1
f(38)=1451
f(39)=277
f(40)=167
f(41)=191
f(42)=4657
f(43)=197
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=163
f(49)=1
f(50)=1723
f(51)=653
f(52)=1759
f(53)=1
f(54)=283
f(55)=113
f(56)=1823
f(57)=1
f(58)=617
f(59)=233
f(60)=433
f(61)=1
f(62)=211
f(63)=179
f(64)=101
f(65)=241
f(66)=157
f(67)=1
f(68)=1951
f(69)=367
f(70)=151
f(71)=1
f(72)=97
f(73)=1
f(74)=1979
f(75)=743
f(76)=661
f(77)=1
f(78)=5953
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=1
f(90)=1
f(91)=1
f(92)=1
f(93)=1
f(94)=1
f(95)=1
f(96)=1
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-156x+131 could be written as f(y)= y^2-5953 with x=y+78

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-78
f'(x)>2x-157 with x > 77

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

131, 3, 59, 41, 53, 13, 769, 19, 1, 149, 443, 61, 1597, 1, 619, 31, 37, 1, 181, 103, 863, 1, 313, 1, 3037, 1, 1, 419, 1151, 1, 89, 1, 1279, 491, 1, 1, 71, 1, 1451, 277, 167, 191, 4657, 197, 1, 1, 1, 1, 163, 1, 1723, 653, 1759, 1, 283, 113, 1823, 1, 617, 233, 433, 1, 211, 179, 101, 241, 157, 1, 1951, 367, 151, 1, 97, 1, 1979, 743, 661, 1, 5953, 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, 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, 1103, 1, 1, 1, 199, 1, 1, 1, 1, 337, 1, 1, 251, 1, 1217, 1, 1, 1, 4451, 1, 1621, 317, 587, 229, 5711, 1, 683, 1, 1, 1, 7043, 1, 1, 967, 2657, 1, 8447, 1, 1, 1, 349, 1, 9923, 1, 1, 1, 1, 467, 11471, 1, 4001, 1, 1, 1, 1, 557, 4549, 1741, 1579, 1, 14783, 1, 569, 1, 409, 677, 16547, 1, 5717, 1091, 1, 1, 593, 1, 6337, 1, 1, 1, 1, 859, 1, 2659, 379, 457, 22271, 1, 7649, 1, 7877, 1, 1871, 1, 439, 1, 953, 1087, 499, 1117, 3019, 1721, 1, 1, 28643, 1, 1, 1, 773, 1, 30911, 1, 1, 1, 3607, 1, 811, 701, 1, 2153, 11617, 1, 1877, 1, 12161, 1153, 12437, 1, 1031, 1607, 1, 1, 1, 839, 1, 857, 1, 1, 14149, 1787, 43331, 1, 14741, 1, 1, 1, 1, 1, 15649, 2963, 1, 1, 1319, 2053, 5527, 6277, 1, 1, 51647, 1, 1, 6637, 1, 751, 54563, 1, 18517, 1, 1, 2377, 1, 1, 1, 1, 19861, 1, 60611, 1, 20549, 1, 20897, 1, 63743, 1, 21601, 8167, 563, 2767, 66947, 1, 7559, 2143, 23041, 2903, 70223, 983, 1, 4493, 1, 1, 73571, 3089, 673, 1, 1, 1, 76991, 1, 1, 757, 26437, 3329, 1, 1, 1, 1, 27617, 1, 84047, 3527, 1, 2683, 739, 907, 87683, 1, 1, 1, 1, 1, 1549, 1, 30881, 1, 1, 1, 5009, 1, 2473, 1, 10859, 4099, 99023, 4153, 1, 6311, 1783, 2131, 7919, 1439, 34757, 1009, 35201, 1, 1, 1, 36097, 1, 1, 4597, 3581, 1, 12487, 1, 2917, 1, 115151, 1609, 733, 1, 39317, 1, 119363, 5003, 1, 15187, 1, 1, 2027, 2591, 1, 15727, 42181, 5303, 6737, 1, 1, 1, 43649, 1, 1, 1, 44641, 1, 1, 2837, 919, 5737, 15383, 17401, 1, 1, 1993, 1, 47681, 17977, 48197, 1, 1447, 3061, 929, 9281, 1, 1, 2557, 1, 1303, 4789, 51349, 1613, 5021, 1, 1, 19759, 1, 1109, 12347, 3361, 54049, 1567, 18199, 1, 165443, 1, 2063, 1, 1, 1, 170447, 1, 1, 1, 4457, 1213, 175523, 7349, 59077, 1, 1, 1873, 1, 1, 1559, 1, 61381, 1, 881, 1297, 62549, 11783, 3323, 1, 4663, 1, 1, 1, 7213, 1019, 1163, 1, 22039, 24907, 66721, 1, 1, 1409, 1657, 1, 5273, 1, 207491, 1, 2251, 6571, 1, 8839, 3001, 1, 1, 1, 72277, 1, 218723, 1, 5657, 27697, 74177, 1, 11813, 1, 1237, 1, 25367, 1, 1, 4817, 25799, 1, 78049, 1, 236111, 1, 1301, 1, 80021, 1, 4567, 1, 81349, 30631, 1, 5147, 248063, 5189, 1, 31387, 4423, 1, 254147, 1, 6569, 4019, 1459, 1, 1747, 10889, 4603, 1, 29383, 5531, 1489, 11149, 9949, 2593, 1, 1, 1, 1, 2477, 34501, 92357, 3863, 279203, 5839, 1, 1, 2423, 1, 6967, 1, 1, 1, 96661, 1, 15377, 4073, 1663, 36931, 98849, 1, 1669, 6247, 7717, 1, 1, 1, 305411, 1, 34183, 9649, 1949, 12959, 1847, 1, 104801, 1, 105557, 2207, 1, 13337, 107077, 1, 1, 1, 3359, 1, 4051, 41161, 1, 1, 3739, 1, 5879, 21017, 112481, 4703, 1, 14207, 1, 10729, 1, 1, 18257, 14503, 1, 1, 1, 7351, 354047, 2467, 1, 1, 1, 1667, 27791, 1, 2957, 2851, 1, 15307, 2441, 1, 41227, 1, 1, 1, 375971, 1, 1249, 1531, 1, 1327, 1, 4007, 1, 48397, 43159, 1, 2341, 8171, 1, 24671, 132001, 16553, 398543, 1, 133697, 6287, 1, 1, 31247, 16979, 136261, 3943, 45707, 8597, 413951, 1, 1493, 2749, 4507, 17519, 11399, 1, 141461, 1, 10949, 1, 22613, 17957, 1399, 1, 1, 1, 7417, 18289, 1, 55201, 1, 1, 445631, 1, 149441, 56209, 1, 1, 12263, 1, 1, 1, 1, 1, 35531, 1, 17209, 14563, 155797, 1, 11467, 1, 157637, 1, 12197, 3313, 1, 1, 8443, 60331, 53783, 1, 1, 2543, 1, 7673, 1, 1583, 1, 6899, 1, 31223, 5387, 1, 16253, 1, 168901, 3343, 1, 5323, 39419, 1, 57259, 4969, 172741, 1, 8543, 1, 4721, 32843, 175649, 1, 529871, 1, 177601, 2087, 1, 1, 8831, 1, 1, 67891, 181537, 1, 547583, 1, 1, 1, 184517, 1, 9433, 5813, 1, 1, 62507, 1, 565583, 23629, 63179, 2741, 2141, 11941, 44207, 1, 192581, 1, 193601, 1, 5167, 3049, 2017, 73561, 1, 1, 1, 1, 2137, 37361, 199777, 25037, 5849, 8389, 2081, 18973, 1, 1, 14923, 1, 1, 2083, 68683, 12911, 2243, 1, 1, 78259, 209221, 1, 48527, 1, 211349, 1, 5741, 1, 640463, 1, 214561, 1, 71879, 1, 9157, 2089, 3821, 1997, 1, 6857, 12451, 2297, 1, 83101, 222149, 1, 1, 1, 17257, 1, 1, 1, 3221, 28387, 75883, 1, 228757, 3583, 689603, 9601, 7451, 6679, 7487, 1, 53819, 1, 2633, 1, 78487, 1, 2239, 7411, 1, 1, 1, 29927, 719951, 1, 5881, 45317, 242261, 5059, 1, 30497, 1, 91921, 81899, 1, 5653, 1933, 6359, 1, 1, 1, 2711, 5227, 251477, 1, 252641, 3517, 1, 31799, 254977, 1, 1, 1, 771971, 1, 1, 97159, 259681, 16267, 41189, 1, 262049, 98491, 20249, 10993, 11173, 1, 265621, 12479, 1, 33427, 1, 33577, 1, 50591, 270421, 1, 814883, 1, 1, 1, 1, 2861, 825791, 1, 1831, 7993, 92567, 1, 1, 17471, 93383, 1,

6. Sequence of the polynom (only primes)

131, 3, 59, 41, 53, 13, 769, 19, 149, 443, 61, 1597, 619, 31, 37, 181, 103, 863, 313, 3037, 419, 1151, 89, 1279, 491, 71, 1451, 277, 167, 191, 4657, 197, 163, 1723, 653, 1759, 283, 113, 1823, 617, 233, 433, 211, 179, 101, 241, 157, 1951, 367, 151, 97, 1979, 743, 661, 5953, 257, 1103, 199, 337, 251, 1217, 4451, 1621, 317, 587, 229, 5711, 683, 7043, 967, 2657, 8447, 349, 9923, 467, 11471, 4001, 557, 4549, 1741, 1579, 14783, 569, 409, 677, 16547, 5717, 1091, 593, 6337, 859, 2659, 379, 457, 22271, 7649, 7877, 1871, 439, 953, 1087, 499, 1117, 3019, 1721, 28643, 773, 30911, 3607, 811, 701, 2153, 11617, 1877, 12161, 1153, 12437, 1031, 1607, 839, 857, 14149, 1787, 43331, 14741, 15649, 2963, 1319, 2053, 5527, 6277, 51647, 6637, 751, 54563, 18517, 2377, 19861, 60611, 20549, 20897, 63743, 21601, 8167, 563, 2767, 66947, 7559, 2143, 23041, 2903, 70223, 983, 4493, 73571, 3089, 673, 76991, 757, 26437, 3329, 27617, 84047, 3527, 2683, 739, 907, 87683, 1549, 30881, 5009, 2473, 10859, 4099, 99023, 4153, 6311, 1783, 2131, 7919, 1439, 34757, 1009, 35201, 36097, 4597, 3581, 12487, 2917, 115151, 1609, 733, 39317, 119363, 5003, 15187, 2027, 2591, 15727, 42181, 5303, 6737, 43649, 44641, 2837, 919, 5737, 15383, 17401, 1993, 47681, 17977, 48197, 1447, 3061, 929, 9281, 2557, 1303, 4789, 51349, 1613, 5021, 19759, 1109, 12347, 3361, 54049, 1567, 18199, 165443, 2063, 170447, 4457, 1213, 175523, 7349, 59077, 1873, 1559, 61381, 881, 1297, 62549, 11783, 3323, 4663, 7213, 1019, 1163, 22039, 24907, 66721, 1409, 1657, 5273, 207491, 2251, 6571, 8839, 3001, 72277, 218723, 5657, 27697, 74177, 11813, 1237, 25367, 4817, 25799, 78049, 236111, 1301, 80021, 4567, 81349, 30631, 5147, 248063, 5189, 31387, 4423, 254147, 6569, 4019, 1459, 1747, 10889, 4603, 29383, 5531, 1489, 11149, 9949, 2593, 2477, 34501, 92357, 3863, 279203, 5839, 2423, 6967, 96661, 15377, 4073, 1663, 36931, 98849, 1669, 6247, 7717, 305411, 34183, 9649, 1949, 12959, 1847, 104801, 105557, 2207, 13337, 107077, 3359, 4051, 41161, 3739, 5879, 21017, 112481, 4703, 14207, 10729, 18257, 14503, 7351, 354047, 2467, 1667, 27791, 2957, 2851, 15307, 2441, 41227, 375971, 1249, 1531, 1327, 4007, 48397, 43159, 2341, 8171, 24671, 132001, 16553, 398543, 133697, 6287, 31247, 16979, 136261, 3943, 45707, 8597, 413951, 1493, 2749, 4507, 17519, 11399, 141461, 10949, 22613, 17957, 1399, 7417, 18289, 55201, 445631, 149441, 56209, 12263, 35531, 17209, 14563, 155797, 11467, 157637, 12197, 3313, 8443, 60331, 53783, 2543, 7673, 1583, 6899, 31223, 5387, 16253, 168901, 3343, 5323, 39419, 57259, 4969, 172741, 8543, 4721, 32843, 175649, 529871, 177601, 2087, 8831, 67891, 181537, 547583, 184517, 9433, 5813, 62507, 565583, 23629, 63179, 2741, 2141, 11941, 44207, 192581, 193601, 5167, 3049, 2017, 73561, 2137, 37361, 199777, 25037, 5849, 8389, 2081, 18973, 14923, 2083, 68683, 12911, 2243, 78259, 209221, 48527, 211349, 5741, 640463, 214561, 71879, 9157, 2089, 3821, 1997, 6857, 12451, 2297, 83101, 222149, 17257, 3221, 28387, 75883, 228757, 3583, 689603, 9601, 7451, 6679, 7487, 53819, 2633, 78487, 2239, 7411, 29927, 719951, 5881, 45317, 242261, 5059, 30497, 91921, 81899, 5653, 1933, 6359, 2711, 5227, 251477, 252641, 3517, 31799, 254977, 771971, 97159, 259681, 16267, 41189, 262049, 98491, 20249, 10993, 11173, 265621, 12479, 33427, 33577, 50591, 270421, 814883, 2861, 825791, 1831, 7993, 92567, 17471, 93383,

7. Distribution of the primes

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

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)
11010551.0000000.5000000.5000000.0000000.0000000.000000
21005217350.5200000.1700000.3500005.2000003.4000007.000000
31.0005021263760.5020000.1260000.3760009.6538467.41176510.742857
410.0006.0499815.0680.6049000.0981000.50680012.0498017.78571413.478724
5100.00063.3537.61655.7370.6335300.0761600.55737010.4733017.76350610.997829
61.000.000644.21861.145583.0730.6442180.0611450.58307310.1687068.02849310.461148
710.000.0006.518.127511.7926.006.3350.6518130.0511790.60063410.1178908.37013610.301171
8100.000.00065.715.5174.399.35461.316.1630.6571550.0439940.61316210.0819648.59598110.208582
91.000.000.000661.260.47838.606.295622.654.1830.6612600.0386060.62265410.0624718.77544710.154814
1010.000.000.0006.645.279.568343.992.8966.301.286.6720.6645280.0343990.63012910.0494138.91027910.120042


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
245321.2500000.7500000.5000001.6666671.5000002.000000
388441.0000000.5000000.5000001.6000001.3333332.000000
41615780.9375000.4375000.5000001.8750001.7500002.000000
532249150.7500000.2812500.4687501.6000001.2857141.875000
6644314290.6718750.2187500.4531251.7916671.5555561.933333
71285217350.4062500.1328120.2734381.2093021.2142861.206897
82568631550.3359380.1210940.2148441.6538461.8235291.571429
9512220681520.4296880.1328120.2968752.5581402.1935482.763636
101.0245171283890.5048830.1250000.3798832.3500001.8823532.559211
112.0481.1262358910.5498050.1147460.4350592.1779501.8359382.290488
124.0962.3734431.9300.5793460.1081540.4711912.1074601.8851062.166106
138.1924.9138174.0960.5997310.0997310.5000002.0703751.8442442.122280
1416.38410.0791.5318.5480.6151730.0934450.5217292.0514961.8739292.086914
1532.76820.4312.82917.6020.6235050.0863340.5371702.0270861.8478122.059195
1665.53641.3315.20636.1250.6306610.0794370.5512242.0229551.8402262.052324
17131.07283.2219.71873.5030.6349260.0741420.5607832.0135251.8666922.034685
18262.144167.34618.126149.2200.6383740.0691450.5692292.0108631.8651992.030121
19524.288336.44833.852302.5960.6417240.0645680.5771562.0104931.8675942.027852
201.048.576675.77263.775611.9970.6444660.0608210.5836462.0085481.8839362.022489
212.097.1521.356.723120.5651.236.1580.6469360.0574900.5894462.0076641.8904742.019876
224.194.3042.722.824228.6772.494.1470.6491720.0545210.5946512.0069121.8967112.017660
238.388.6085.463.203434.5815.028.6220.6512650.0518060.5994582.0064471.9004142.016169
2416.777.21610.957.838828.26110.129.5770.6531380.0493680.6037702.0057541.9058842.014384
2533.554.43221.971.5351.581.39620.390.1390.6548030.0471290.6076742.0050981.9092972.012931
2667.108.86444.045.3633.024.47741.020.8860.6563270.0450680.6112592.0046561.9125362.011800
27134.217.72888.279.8325.802.41082.477.4220.6577360.0432310.6145052.0042931.9184842.010620
28268.435.456176.912.08111.143.551165.768.5300.6590490.0415130.6175362.0039921.9205042.009866
29536.870.912354.468.86121.433.718333.035.1430.6602500.0399230.6203262.0036441.9234192.009037
301.073.741.824710.143.39241.299.344668.844.0480.6613730.0384630.6229102.0034011.9268402.008329
312.147.483.6481.422.538.85179.669.5531.342.869.2980.6624210.0370990.6253222.0031711.9290752.007746
324.294.967.2962.849.312.294153.891.4832.695.420.8110.6634070.0358310.6275772.0029771.9316222.007210
338.589.934.5925.706.567.095297.623.8495.408.943.2460.6643320.0346480.6296842.0027881.9339852.006716
3417.179.869.18411.428.004.016576.265.53810.851.738.4780.6651970.0335430.6316542.0026061.9362212.006258


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
122010200
243021200
384122200
4167332221
5329442331
66414673551
712817884553
8256311119411610
951268234410241024
101.024128487921461546
112.0482358614837763191
124.0964431572856715259165
138.192817289527114291107305
1416.3841.531552978212542195582
1532.7682.8291.0141.8143821.0383801.029
1665.5365.2061.8333.3726961.9147131.883
17131.0729.7183.4226.2951.3053.5801.3113.522
18262.14418.1266.40111.7242.3996.6962.4376.594
19524.28833.85211.87721.9744.47012.5014.48812.393
201.048.57663.77522.22341.5518.42123.4608.38523.509
212.097.152120.56541.90078.66415.91544.36415.82244.464
224.194.304228.67779.388149.28830.04784.34930.00384.278
238.388.608434.581150.660283.92056.916160.35156.948160.366
2416.777.216828.261286.487541.773108.321306.065108.201305.674
2533.554.4321.581.396546.4911.034.904206.741584.437206.489583.729
2667.108.8643.024.4771.044.0751.980.401394.3871.117.856394.1871.118.047
27134.217.7285.802.4101.998.9983.803.411755.1342.146.733755.4042.145.139
28268.435.45611.143.5513.835.6387.307.9121.448.4374.123.5591.448.6994.122.856
29536.870.91221.433.7187.369.58014.064.1372.782.1287.936.6402.782.3587.932.592
301.073.741.82441.299.34414.182.92927.116.4145.351.71915.298.1475.353.46715.296.011
312.147.483.64879.669.55327.335.01452.334.53810.310.93029.523.13210.312.23629.523.255
324.294.967.296153.891.48352.748.520101.142.96219.893.73357.051.19219.900.08557.046.473
338.589.934.592297.623.849101.916.940195.706.90838.429.049110.381.01038.442.960110.370.830
3417.179.869.184576.265.538197.164.426379.101.11174.340.177213.785.35474.350.448213.789.559


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
121010100
242020110
384220220
4168530440
53215962454
6642915146968
7128352015710810
825655253015151411
9512152747844254538
101.0243891842051097211395
112.048891419472258185247201
124.0961.9309201.010526420548436
138.1924.0961.9902.1061.0969281.142930
1416.3848.5484.1884.3602.2701.9722.3401.966
1532.76817.6028.6978.9054.6814.0584.7694.094
1665.53636.12517.84618.2799.5298.4349.7638.399
17131.07273.50336.23037.27319.40517.19519.59917.304
18262.144149.22073.74175.47939.37935.11439.65735.070
19524.288302.596149.559153.03779.57871.44280.13471.442
201.048.576611.997302.930309.067160.222145.486161.093145.196
212.097.1521.236.158611.895624.263323.661294.167324.336293.994
224.194.3042.494.1471.235.2641.258.883651.902595.679651.499595.067
238.388.6085.028.6222.491.4192.537.2031.310.2381.204.1231.310.4611.203.800
2416.777.21610.129.5775.022.6885.106.8892.635.0472.431.2142.632.5702.430.746
2533.554.43220.390.13910.113.59510.276.5445.291.6524.902.5415.292.7684.903.178
2667.108.86441.020.88620.352.09020.668.79610.627.7619.881.42710.627.2889.884.410
27134.217.72882.477.42240.936.19941.541.22321.330.01319.904.04121.336.71119.906.657
28268.435.456165.768.53082.306.74983.461.78142.805.46540.067.82942.821.85240.073.384
29536.870.912333.035.143165.412.693167.622.45085.892.60680.615.47585.905.73780.621.325
301.073.741.824668.844.048332.287.259336.556.789172.307.233162.106.394172.298.194162.132.227
312.147.483.6481.342.869.298667.322.276675.547.022345.562.952325.870.483345.534.258325.901.605
324.294.967.2962.695.420.8111.339.788.8831.355.631.928692.848.828654.823.008692.889.102654.859.873
338.589.934.5925.408.943.2462.689.109.1662.719.834.0801.388.984.1021.315.422.8701.389.066.2811.315.469.993
3417.179.869.18410.851.738.4785.396.062.5185.455.675.9602.784.093.6022.641.674.2812.784.279.9452.641.690.650


8. Check for existing Integer Sequences by OEIS

Found in Database : 131, 3, 59, 41, 53, 13, 769, 19, 1, 149, 443, 61, 1597, 1, 619, 31, 37, 1, 181, 103,
Found in Database : 131, 3, 59, 41, 53, 13, 769, 19, 149, 443, 61, 1597, 619, 31, 37, 181, 103, 863, 313, 3037, 419, 1151, 89, 1279, 491, 71, 1451, 277,
Found in Database : 3, 13, 19, 31, 37, 41, 53, 59, 61, 71, 89, 97, 101, 103, 113, 131, 149,