Inhaltsverzeichnis

Development of
Algorithmic Constructions

12:45:07
Deutsch
20.Apr 2024

Polynom = x^2-120x-113

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) = 113 = 113
f(1) = 29 = 29
f(2) = 349 = 349
f(3) = 29 = 29
f(4) = 577 = 577
f(5) = 43 = 43
f(6) = 797 = 797
f(7) = 113 = 113
f(8) = 1009 = 1009
f(9) = 139 = 139
f(10) = 1213 = 1213
f(11) = 41 = 41
f(12) = 1409 = 1409
f(13) = 47 = 47
f(14) = 1597 = 1597
f(15) = 211 = 211
f(16) = 1777 = 1777
f(17) = 233 = 233
f(18) = 1949 = 1949
f(19) = 127 = 127
f(20) = 2113 = 2113
f(21) = 137 = 137
f(22) = 2269 = 2269
f(23) = 293 = 293
f(24) = 2417 = 2417
f(25) = 311 = 311
f(26) = 2557 = 2557
f(27) = 41 = 41
f(28) = 2689 = 2689
f(29) = 43 = 43
f(30) = 2813 = 29*97
f(31) = 359 = 359
f(32) = 2929 = 29*101
f(33) = 373 = 373
f(34) = 3037 = 3037
f(35) = 193 = 193
f(36) = 3137 = 3137
f(37) = 199 = 199
f(38) = 3229 = 3229
f(39) = 409 = 409
f(40) = 3313 = 3313
f(41) = 419 = 419
f(42) = 3389 = 3389
f(43) = 107 = 107
f(44) = 3457 = 3457
f(45) = 109 = 109
f(46) = 3517 = 3517
f(47) = 443 = 443
f(48) = 3569 = 43*83
f(49) = 449 = 449
f(50) = 3613 = 3613
f(51) = 227 = 227
f(52) = 3649 = 41*89
f(53) = 229 = 229
f(54) = 3677 = 3677
f(55) = 461 = 461
f(56) = 3697 = 3697
f(57) = 463 = 463
f(58) = 3709 = 3709
f(59) = 29 = 29
f(60) = 3713 = 47*79
f(61) = 29 = 29
f(62) = 3709 = 3709
f(63) = 463 = 463
f(64) = 3697 = 3697
f(65) = 461 = 461
f(66) = 3677 = 3677
f(67) = 229 = 229
f(68) = 3649 = 41*89
f(69) = 227 = 227
f(70) = 3613 = 3613
f(71) = 449 = 449
f(72) = 3569 = 43*83
f(73) = 443 = 443
f(74) = 3517 = 3517
f(75) = 109 = 109
f(76) = 3457 = 3457
f(77) = 107 = 107
f(78) = 3389 = 3389
f(79) = 419 = 419
f(80) = 3313 = 3313
f(81) = 409 = 409
f(82) = 3229 = 3229
f(83) = 199 = 199
f(84) = 3137 = 3137
f(85) = 193 = 193
f(86) = 3037 = 3037
f(87) = 373 = 373
f(88) = 2929 = 29*101
f(89) = 359 = 359
f(90) = 2813 = 29*97
f(91) = 43 = 43
f(92) = 2689 = 2689
f(93) = 41 = 41
f(94) = 2557 = 2557
f(95) = 311 = 311
f(96) = 2417 = 2417
f(97) = 293 = 293
f(98) = 2269 = 2269
f(99) = 137 = 137
f(100) = 2113 = 2113

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-120x-113

f(0)=113
f(1)=29
f(2)=349
f(3)=1
f(4)=577
f(5)=43
f(6)=797
f(7)=1
f(8)=1009
f(9)=139
f(10)=1213
f(11)=41
f(12)=1409
f(13)=47
f(14)=1597
f(15)=211
f(16)=1777
f(17)=233
f(18)=1949
f(19)=127
f(20)=2113
f(21)=137
f(22)=2269
f(23)=293
f(24)=2417
f(25)=311
f(26)=2557
f(27)=1
f(28)=2689
f(29)=1
f(30)=97
f(31)=359
f(32)=101
f(33)=373
f(34)=3037
f(35)=193
f(36)=3137
f(37)=199
f(38)=3229
f(39)=409
f(40)=3313
f(41)=419
f(42)=3389
f(43)=107
f(44)=3457
f(45)=109
f(46)=3517
f(47)=443
f(48)=83
f(49)=449
f(50)=3613
f(51)=227
f(52)=89
f(53)=229
f(54)=3677
f(55)=461
f(56)=3697
f(57)=463
f(58)=3709
f(59)=1
f(60)=79
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)=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-120x-113 could be written as f(y)= y^2-3713 with x=y+60

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-60
f'(x)>2x-121 with x > 61

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

113, 29, 349, 1, 577, 43, 797, 1, 1009, 139, 1213, 41, 1409, 47, 1597, 211, 1777, 233, 1949, 127, 2113, 137, 2269, 293, 2417, 311, 2557, 1, 2689, 1, 97, 359, 101, 373, 3037, 193, 3137, 199, 3229, 409, 3313, 419, 3389, 107, 3457, 109, 3517, 443, 83, 449, 3613, 227, 89, 229, 3677, 461, 3697, 463, 3709, 1, 79, 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, 131, 1, 383, 1, 643, 1, 911, 1, 1187, 1, 1471, 1, 1, 239, 2063, 277, 2371, 1, 2687, 1, 3011, 397, 3343, 439, 1, 241, 1, 263, 1, 571, 4751, 617, 1, 1, 5503, 1, 1, 761, 6287, 811, 6691, 431, 7103, 457, 7523, 967, 7951, 1021, 8387, 269, 8831, 283, 9283, 1, 9743, 1, 10211, 653, 10687, 683, 11171, 1427, 1, 1489, 12163, 1, 12671, 1, 13187, 1, 13711, 1747, 14243, 907, 14783, 941, 15331, 1951, 15887, 1, 16451, 523, 587, 541, 607, 2237, 18191, 2311, 18787, 1193, 19391, 1231, 1, 2539, 503, 2617, 1, 337, 509, 347, 22531, 2857, 1, 2939, 1, 1511, 1, 1553, 1, 3191, 631, 1, 1, 1, 1, 863, 1, 3541, 28687, 3631, 29411, 1861, 701, 1907, 1, 3907, 673, 4001, 1, 1, 33151, 1, 33923, 4289, 34703, 1, 35491, 2243, 1, 2293, 1279, 1, 1307, 4789, 38723, 1223, 39551, 1249, 40387, 5101, 41231, 1, 42083, 2657, 42943, 2711, 1, 5531, 44687, 5641, 1, 719, 479, 733, 47363, 1, 48271, 6091, 487, 1, 50111, 1, 51043, 1, 1, 1, 1291, 1669, 53887, 1699, 54851, 6917, 55823, 7039, 1321, 3581, 57791, 3643, 58787, 7411, 59791, 7537, 1483, 1, 1, 1, 62851, 1, 2203, 1, 2239, 4091, 65983, 4157, 67043, 8447, 68111, 8581, 1609, 2179, 70271, 2213, 71363, 1, 1, 9127, 73571, 1, 74687, 4703, 1613, 9547, 76943, 9689, 691, 1229, 79231, 1, 80387, 1, 81551, 10267, 82723, 1, 83903, 5281, 85091, 10711, 86287, 10861, 87491, 2753, 829, 2791, 89923, 11317, 91151, 11471, 92387, 5813, 859, 1, 1, 11939, 1217, 12097, 3359, 1, 1, 1, 99971, 12577, 773, 12739, 102563, 6451, 1, 1, 1, 1, 2477, 13397, 107843, 3391, 2663, 3433, 1033, 13901, 881, 14071, 1039, 7121, 1381, 7207, 1, 1, 1319, 1, 118787, 1867, 1, 1889, 1, 15289, 2861, 15467, 1283, 7823, 125887, 1, 127331, 16007, 1447, 16189, 937, 4093, 131711, 4139, 133187, 16741, 983, 16927, 136163, 1, 1, 1, 4799, 17491, 1, 17681, 142211, 1117, 143743, 1129, 145283, 18257, 1, 18451, 148387, 9323, 1327, 9421, 151523, 1, 1, 19237, 154691, 1, 1, 4909, 3851, 1, 159503, 1, 161123, 1, 162751, 10223, 164387, 1, 166031, 20857, 167683, 2633, 169343, 2659, 1, 21481, 172687, 1, 1373, 1, 176063, 11057, 177763, 1, 179471, 22541, 1, 5689, 1811, 5743, 6367, 23189, 6427, 1, 1, 11813, 189887, 11923, 4457, 1, 193423, 1, 195203, 1, 196991, 1, 1451, 1, 200591, 1, 202403, 1, 1, 12821, 206051, 1, 1, 1, 1601, 1, 211583, 1, 1, 1, 1549, 27031, 4621, 13633, 219071, 13751, 2797, 27739, 222863, 1, 224771, 3527, 1, 3557, 228611, 28697, 5623, 1, 2801, 14591, 234431, 14713, 236387, 29671, 8219, 29917, 8287, 7541, 1, 7603, 244291, 30661, 6007, 30911, 248291, 15581, 5821, 1, 252323, 31667, 1, 1, 3089, 2011, 2287, 2027, 260483, 1, 262543, 1, 2473, 16603, 266687, 1, 268771, 1163, 1, 1, 3067, 8563, 6397, 8629, 2543, 34781, 279311, 1, 1, 17657, 283583, 17791, 285731, 35851, 287887, 1, 3259, 4549, 292223, 4583, 294403, 1, 296591, 1, 10303, 18743, 1, 1, 1571, 38039, 305423, 38317, 307651, 9649, 2843, 9719, 1, 39157, 6689, 39439, 7723, 19861, 318911, 1, 321187, 1, 323471, 40577, 1637, 1277, 328063, 1, 3271, 1429, 332687, 1439, 8171, 21011, 337343, 21157, 2593, 1, 1621, 42901, 8009, 10799, 346751, 1, 2749, 43789, 351503, 44087, 353891, 22193, 356287, 22343, 358691, 44987, 1871, 45289, 363523, 1, 12619, 5737, 12703, 1, 3823, 46507, 8681, 1, 375743, 23561, 3347, 47431, 1913, 47741, 383171, 1, 385663, 1, 388163, 48677, 390671, 48991, 393187, 1, 5009, 1, 3943, 49939, 1663, 1733, 403331, 1, 1, 3181, 1709, 51217, 2957, 51539, 3019, 25931, 10151, 1, 418787, 52511, 5077, 52837, 424003, 13291, 1831, 1, 9133, 1, 431887, 54151, 1, 27241, 10663, 27407, 1, 55147, 15259, 1, 445187, 6977, 1973, 7019, 450563, 56489, 1, 56827, 2161, 1, 2003, 28753, 461411, 57847, 464143, 58189, 1, 14633, 469631, 1, 2081, 59221, 475151, 59567, 2087, 1, 1787, 1, 483491, 60611, 1, 60961, 1, 1, 5527, 1, 494723, 62017, 497551, 1, 1, 1, 503231, 31541, 506083, 63439, 508943, 1, 511811, 1, 5783, 1, 517571, 64877, 1, 65239, 18047, 32801, 526271, 32983, 12907, 1, 4973, 66697, 1, 1, 1901, 8429, 4787, 67801, 543887, 68171, 2347, 1, 1, 34457, 1, 1, 5099, 69661, 558787, 17509, 11953, 1, 2039, 2441, 1627, 71167, 570851, 1, 573887, 35963, 13417, 72307, 579983, 72689, 5449, 4567, 586111, 4591, 589187, 1801, 1, 1, 595363, 37307, 598463, 37501, 5519, 75391, 5987, 75781, 20959, 1, 21067, 19141, 14281, 1877, 617231, 77351, 7853, 38873, 2609, 1, 626723, 78539, 629903, 1, 633091, 1, 636287, 9967, 639491, 1, 1, 1873, 6659, 40471, 649151, 1, 2707, 2819, 15991, 2833, 658883, 20641, 662143, 20743, 8017, 1, 668687, 83791, 671971, 42101, 675263, 42307, 678563, 85027, 16631, 1987, 1789, 2683, 688511, 1, 691843, 86689, 6883, 87107, 698531, 1, 24203, 43973, 1, 1, 6271, 88789, 15149, 22303, 1, 22409, 1, 1, 2143, 2207, 725603, 1, 729023, 1, 1, 91771, 1, 1, 739331, 11579, 742783, 11633, 746243, 93497, 749711, 1, 753187, 1, 17597, 1, 760163, 95239, 763663, 1, 2917, 24029, 2221, 1, 8699, 96997, 777743, 1, 781283, 1, 784831, 1, 788387, 2297, 791951, 2111, 19403, 6229, 799103, 6257, 1, 1, 27803, 1, 809891, 1, 813503, 50957, 817123, 102367, 2963, 1, 20107, 25819, 1, 25933, 831683, 2423, 2851, 1, 3119, 52553, 6151, 52783, 6089, 1, 850063, 1, 853763, 1, 857471, 1, 6781, 107881, 864911, 108347, 20201, 1, 872383, 1, 876131, 109751,

6. Sequence of the polynom (only primes)

113, 29, 349, 577, 43, 797, 1009, 139, 1213, 41, 1409, 47, 1597, 211, 1777, 233, 1949, 127, 2113, 137, 2269, 293, 2417, 311, 2557, 2689, 97, 359, 101, 373, 3037, 193, 3137, 199, 3229, 409, 3313, 419, 3389, 107, 3457, 109, 3517, 443, 83, 449, 3613, 227, 89, 229, 3677, 461, 3697, 463, 3709, 79, 131, 383, 643, 911, 1187, 1471, 239, 2063, 277, 2371, 2687, 3011, 397, 3343, 439, 241, 263, 571, 4751, 617, 5503, 761, 6287, 811, 6691, 431, 7103, 457, 7523, 967, 7951, 1021, 8387, 269, 8831, 283, 9283, 9743, 10211, 653, 10687, 683, 11171, 1427, 1489, 12163, 12671, 13187, 13711, 1747, 14243, 907, 14783, 941, 15331, 1951, 15887, 16451, 523, 587, 541, 607, 2237, 18191, 2311, 18787, 1193, 19391, 1231, 2539, 503, 2617, 337, 509, 347, 22531, 2857, 2939, 1511, 1553, 3191, 631, 863, 3541, 28687, 3631, 29411, 1861, 701, 1907, 3907, 673, 4001, 33151, 33923, 4289, 34703, 35491, 2243, 2293, 1279, 1307, 4789, 38723, 1223, 39551, 1249, 40387, 5101, 41231, 42083, 2657, 42943, 2711, 5531, 44687, 5641, 719, 479, 733, 47363, 48271, 6091, 487, 50111, 51043, 1291, 1669, 53887, 1699, 54851, 6917, 55823, 7039, 1321, 3581, 57791, 3643, 58787, 7411, 59791, 7537, 1483, 62851, 2203, 2239, 4091, 65983, 4157, 67043, 8447, 68111, 8581, 1609, 2179, 70271, 2213, 71363, 9127, 73571, 74687, 4703, 1613, 9547, 76943, 9689, 691, 1229, 79231, 80387, 81551, 10267, 82723, 83903, 5281, 85091, 10711, 86287, 10861, 87491, 2753, 829, 2791, 89923, 11317, 91151, 11471, 92387, 5813, 859, 11939, 1217, 12097, 3359, 99971, 12577, 773, 12739, 102563, 6451, 2477, 13397, 107843, 3391, 2663, 3433, 1033, 13901, 881, 14071, 1039, 7121, 1381, 7207, 1319, 118787, 1867, 1889, 15289, 2861, 15467, 1283, 7823, 125887, 127331, 16007, 1447, 16189, 937, 4093, 131711, 4139, 133187, 16741, 983, 16927, 136163, 4799, 17491, 17681, 142211, 1117, 143743, 1129, 145283, 18257, 18451, 148387, 9323, 1327, 9421, 151523, 19237, 154691, 4909, 3851, 159503, 161123, 162751, 10223, 164387, 166031, 20857, 167683, 2633, 169343, 2659, 21481, 172687, 1373, 176063, 11057, 177763, 179471, 22541, 5689, 1811, 5743, 6367, 23189, 6427, 11813, 189887, 11923, 4457, 193423, 195203, 196991, 1451, 200591, 202403, 12821, 206051, 1601, 211583, 1549, 27031, 4621, 13633, 219071, 13751, 2797, 27739, 222863, 224771, 3527, 3557, 228611, 28697, 5623, 2801, 14591, 234431, 14713, 236387, 29671, 8219, 29917, 8287, 7541, 7603, 244291, 30661, 6007, 30911, 248291, 15581, 5821, 252323, 31667, 3089, 2011, 2287, 2027, 260483, 262543, 2473, 16603, 266687, 268771, 1163, 3067, 8563, 6397, 8629, 2543, 34781, 279311, 17657, 283583, 17791, 285731, 35851, 287887, 3259, 4549, 292223, 4583, 294403, 296591, 10303, 18743, 1571, 38039, 305423, 38317, 307651, 9649, 2843, 9719, 39157, 6689, 39439, 7723, 19861, 318911, 321187, 323471, 40577, 1637, 1277, 328063, 3271, 1429, 332687, 1439, 8171, 21011, 337343, 21157, 2593, 1621, 42901, 8009, 10799, 346751, 2749, 43789, 351503, 44087, 353891, 22193, 356287, 22343, 358691, 44987, 1871, 45289, 363523, 12619, 5737, 12703, 3823, 46507, 8681, 375743, 23561, 3347, 47431, 1913, 47741, 383171, 385663, 388163, 48677, 390671, 48991, 393187, 5009, 3943, 49939, 1663, 1733, 403331, 3181, 1709, 51217, 2957, 51539, 3019, 25931, 10151, 418787, 52511, 5077, 52837, 424003, 13291, 1831, 9133, 431887, 54151, 27241, 10663, 27407, 55147, 15259, 445187, 6977, 1973, 7019, 450563, 56489, 56827, 2161, 2003, 28753, 461411, 57847, 464143, 58189, 14633, 469631, 2081, 59221, 475151, 59567, 2087, 1787, 483491, 60611, 60961, 5527, 494723, 62017, 497551, 503231, 31541, 506083, 63439, 508943, 511811, 5783, 517571, 64877, 65239, 18047, 32801, 526271, 32983, 12907, 4973, 66697, 1901, 8429, 4787, 67801, 543887, 68171, 2347, 34457, 5099, 69661, 558787, 17509, 11953, 2039, 2441, 1627, 71167, 570851, 573887, 35963, 13417, 72307, 579983, 72689, 5449, 4567, 586111, 4591, 589187, 1801, 595363, 37307, 598463, 37501, 5519, 75391, 5987, 75781, 20959, 21067, 19141, 14281, 1877, 617231, 77351, 7853, 38873, 2609, 626723, 78539, 629903, 633091, 636287, 9967, 639491, 1873, 6659, 40471, 649151, 2707, 2819, 15991, 2833, 658883, 20641, 662143, 20743, 8017, 668687, 83791, 671971, 42101, 675263, 42307, 678563, 85027, 16631, 1987, 1789, 2683, 688511, 691843, 86689, 6883, 87107, 698531, 24203, 43973, 6271, 88789, 15149, 22303, 22409, 2143, 2207, 725603, 729023, 91771, 739331, 11579, 742783, 11633, 746243, 93497, 749711, 753187, 17597, 760163, 95239, 763663, 2917, 24029, 2221, 8699, 96997, 777743, 781283, 784831, 788387, 2297, 791951, 2111, 19403, 6229, 799103, 6257, 27803, 809891, 813503, 50957, 817123, 102367, 2963, 20107, 25819, 25933, 831683, 2423, 2851, 3119, 52553, 6151, 52783, 6089, 850063, 853763, 857471, 6781, 107881, 864911, 108347, 20201, 872383, 876131, 109751,

7. Distribution of the primes

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

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)
1109630.9000000.6000000.9000000.0000000.0000000.000000
21005426280.5400000.2600000.5400006.0000004.3333339.333333
31.0006992494500.6990000.2490000.69900012.9444459.57692316.071428
410.0007.2301.8715.3590.7230000.1871000.72300010.3433487.51405611.908889
5100.00072.28814.53357.7550.7228800.1453300.7228809.9983417.76750410.777197
61.000.000718.049119.231598.8180.7180490.1192310.7180499.9331708.20415610.368245
710.000.0007.143.6361.006.8986.136.7380.7143640.1006900.7143649.9486758.44493510.248085
8100.000.00071.157.3518.718.97762.438.3740.7115740.0871900.7115749.9609438.65924510.174522
91.000.000.000709.391.76376.950.719632.441.0440.7093920.0769510.7093929.9693388.82565910.129044
1010.000.000.0007.076.485.527688.730.4376.387.755.0900.7076490.0688730.7076499.9754278.95027910.100160


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
244311.0000000.7500000.2500001.3333331.5000001.000000
387520.8750000.6250000.2500001.7500001.6666672.000000
41615960.9375000.5625000.3750002.1428571.8000003.000000
5322915140.9062500.4687500.4375001.9333331.6666672.333333
6645426280.8437500.4062500.4375001.8620691.7333332.000000
71285729280.4453120.2265620.2187501.0555561.1153851.000000
825614368750.5585940.2656250.2929692.5087722.3448282.678571
95123331371960.6503910.2675780.3828122.3286712.0147062.613333
101.0247172544630.7001950.2480470.4521482.1531531.8540152.362245
112.0481.4684809880.7167970.2343750.4824222.0474201.8897642.133909
124.0962.9528642.0880.7207030.2109380.5097662.0108991.8000002.113360
138.1925.9051.5694.3360.7208250.1915280.5292972.0003391.8159722.076628
1416.38411.8822.9218.9610.7252200.1782840.5469362.0121931.8616952.066651
1532.76823.7935.38118.4120.7261050.1642150.5618902.0024411.8421772.054681
1665.53647.4679.98037.4870.7242890.1522830.5720061.9949991.8546742.036009
17131.07294.67418.62276.0520.7223050.1420750.5802311.9945221.8659322.028757
18262.144188.86135.059153.8020.7204480.1337390.5867081.9948561.8826662.022327
19524.288377.00866.057310.9510.7190860.1259940.5930921.9962191.8841672.021762
201.048.576752.719124.533628.1860.7178490.1187640.5990851.9965601.8852352.020209
212.097.1521.503.001236.0871.266.9140.7166870.1125750.6041121.9967621.8957792.016782
224.194.3043.001.232448.8692.552.3630.7155490.1070190.6085311.9968261.9012862.014630
238.388.6085.994.728854.8085.139.9200.7146270.1019010.6127261.9974221.9043602.013789
2416.777.21611.973.6901.631.85310.341.8370.7136880.0972660.6164221.9973701.9090292.012062
2533.554.43223.918.4253.123.76420.794.6610.7128250.0930950.6197291.9975821.9142432.010732
2667.108.86447.782.1365.991.36841.790.7680.7120090.0892780.6227311.9977131.9179962.009687
27134.217.72895.462.40911.506.29983.956.1100.7112500.0857290.6255221.9978681.9204792.008963
28268.435.456190.742.61522.142.586168.600.0290.7105720.0824880.6280841.9980911.9243882.008193
29536.870.912381.142.85442.667.698338.475.1560.7099340.0794750.6304591.9982051.9269522.007563
301.073.741.824761.638.15882.325.447679.312.7110.7093310.0766720.6326591.9983011.9294562.006979
312.147.483.6481.522.053.322159.064.3281.362.988.9940.7087610.0740700.6346911.9983941.9321402.006424
324.294.967.2963.041.873.419307.660.6152.734.212.8040.7082410.0716330.6366091.9985331.9341902.006042
338.589.934.5926.079.541.995595.735.0485.483.806.9470.7077520.0693530.6383991.9986181.9363382.005625
3417.179.869.18412.151.178.2781.154.711.92010.996.466.3580.7072920.0672130.6400791.9987001.9382982.005261


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
122111010
243212010
385323020
4169635040
532151058070
66426188120140
7128291910121142
825668343412191423
9512137558212541457
101.024254881661211114117
112.0484801623181221714237
124.0968642925721241914419
138.1921.5695331.0361277314770
1416.3842.9219791.942121.441141.454
1532.7685.3811.7833.598122.686142.669
1665.5369.9803.3156.665124.977144.977
17131.07218.6226.20412.418129.279149.317
18262.14435.05911.70823.3511217.4861417.547
19524.28866.05722.04144.0161232.9391433.092
201.048.576124.53341.52983.0041262.1331462.374
212.097.152236.08778.819157.26812117.90914118.152
224.194.304448.869149.762299.10712224.53014224.313
238.388.608854.808285.249569.55912427.54414427.238
2416.777.2161.631.853544.4071.087.44612815.82214816.005
2533.554.4323.123.7641.042.6252.081.139121.561.701141.562.037
2667.108.8645.991.3681.999.2133.992.155122.995.512142.995.830
27134.217.72811.506.2993.836.3357.669.964125.752.788145.753.485
28268.435.45622.142.5867.383.49614.759.0901211.073.1121411.069.448
29536.870.91242.667.69814.225.67328.442.0251221.335.0131421.332.659
301.073.741.82482.325.44727.442.60954.882.8381241.163.0851441.162.336
312.147.483.648159.064.32853.018.809106.045.5191279.533.0021479.531.300
324.294.967.296307.660.615102.555.556205.105.05912153.829.99814153.830.591
338.589.934.592595.735.048198.584.619397.150.42912297.873.02414297.861.998
3417.179.869.1841.154.711.920384.912.088769.799.83212577.355.16514577.356.729


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
241010010
382110110
4166331311
53214594334
6642813157777
71282813157777
825675393618191820
95121961069046505149
101.024463250213108116116123
112.048988529459222245254267
124.0962.0881.089999499518516555
138.1924.3362.2702.0661.0561.0971.0651.118
1416.3848.9614.7334.2282.1972.2472.2222.295
1532.76818.4129.6298.7834.4854.6944.5714.662
1665.53637.48719.54017.9479.1739.4839.2829.549
17131.07276.05239.56736.48518.73719.28518.83119.199
18262.144153.80279.68774.11537.90938.78738.09539.011
19524.288310.951160.209150.74276.94078.42276.72878.861
201.048.576628.186322.684305.502155.361158.726155.235158.864
212.097.1521.266.914649.777617.137313.293319.735313.568320.318
224.194.3042.552.3631.308.0111.244.352631.378644.640632.104644.241
238.388.6085.139.9202.631.6832.508.2371.272.9011.296.8901.274.2511.295.878
2416.777.21610.341.8375.289.7135.052.1242.562.1832.609.1262.563.3342.607.194
2533.554.43220.794.66110.626.34310.168.3185.154.0535.243.8305.155.0955.241.683
2667.108.86441.790.76821.330.61120.460.15710.365.57510.531.19010.362.97710.531.026
27134.217.72883.956.11042.807.14541.148.96520.826.62521.153.69120.829.41921.146.375
28268.435.456168.600.02985.898.91782.701.11241.835.80442.460.10741.844.67142.459.447
29536.870.912338.475.156172.320.375166.154.78184.021.22185.209.28984.031.85785.212.789
301.073.741.824679.312.711345.596.238333.716.473168.674.533170.971.477168.687.492170.979.209
312.147.483.6481.362.988.994692.971.330670.017.664338.524.656342.953.907338.546.191342.964.240
324.294.967.2962.734.212.8041.389.250.6031.344.962.201679.277.944687.812.631679.302.241687.819.988
338.589.934.5925.483.806.9472.784.708.8952.699.098.0521.362.707.1811.379.175.3861.362.745.2641.379.179.116
3417.179.869.18410.996.466.3585.581.043.5815.415.422.7772.733.152.5972.765.035.3342.733.274.4162.765.004.011


8. Check for existing Integer Sequences by OEIS

Found in Database : 113, 29, 349, 1, 577, 43, 797, 1, 1009, 139, 1213, 41, 1409, 47, 1597, 211, 1777, 233, 1949, 127,
Found in Database : 113, 29, 349, 577, 43, 797, 1009, 139, 1213, 41, 1409, 47, 1597, 211, 1777, 233, 1949, 127, 2113, 137, 2269, 293, 2417, 311, 2557, 2689, 97, 359, 101, 373, 3037, 193, 3137, 199, 3229, 409,
Found in Database : 29, 41, 43, 47, 79, 83, 89, 97, 101, 107, 109, 113, 127, 131, 137, 139,