Inhaltsverzeichnis

Development of
Algorithmic Constructions

22:33:11
Deutsch
19.Apr 2024

Polynom = x^2-80x-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) = 3 = 3
f(2) = 269 = 269
f(3) = 43 = 43
f(4) = 417 = 3*139
f(5) = 61 = 61
f(6) = 557 = 557
f(7) = 39 = 3*13
f(8) = 689 = 13*53
f(9) = 47 = 47
f(10) = 813 = 3*271
f(11) = 109 = 109
f(12) = 929 = 929
f(13) = 123 = 3*41
f(14) = 1037 = 17*61
f(15) = 17 = 17
f(16) = 1137 = 3*379
f(17) = 37 = 37
f(18) = 1229 = 1229
f(19) = 159 = 3*53
f(20) = 1313 = 13*101
f(21) = 169 = 13*13
f(22) = 1389 = 3*463
f(23) = 89 = 89
f(24) = 1457 = 31*47
f(25) = 93 = 3*31
f(26) = 1517 = 37*41
f(27) = 193 = 193
f(28) = 1569 = 3*523
f(29) = 199 = 199
f(30) = 1613 = 1613
f(31) = 51 = 3*17
f(32) = 1649 = 17*97
f(33) = 13 = 13
f(34) = 1677 = 3*13*43
f(35) = 211 = 211
f(36) = 1697 = 1697
f(37) = 213 = 3*71
f(38) = 1709 = 1709
f(39) = 107 = 107
f(40) = 1713 = 3*571
f(41) = 107 = 107
f(42) = 1709 = 1709
f(43) = 213 = 3*71
f(44) = 1697 = 1697
f(45) = 211 = 211
f(46) = 1677 = 3*13*43
f(47) = 13 = 13
f(48) = 1649 = 17*97
f(49) = 51 = 3*17
f(50) = 1613 = 1613
f(51) = 199 = 199
f(52) = 1569 = 3*523
f(53) = 193 = 193
f(54) = 1517 = 37*41
f(55) = 93 = 3*31
f(56) = 1457 = 31*47
f(57) = 89 = 89
f(58) = 1389 = 3*463
f(59) = 169 = 13*13
f(60) = 1313 = 13*101
f(61) = 159 = 3*53
f(62) = 1229 = 1229
f(63) = 37 = 37
f(64) = 1137 = 3*379
f(65) = 17 = 17
f(66) = 1037 = 17*61
f(67) = 123 = 3*41
f(68) = 929 = 929
f(69) = 109 = 109
f(70) = 813 = 3*271
f(71) = 47 = 47
f(72) = 689 = 13*53
f(73) = 39 = 3*13
f(74) = 557 = 557
f(75) = 61 = 61
f(76) = 417 = 3*139
f(77) = 43 = 43
f(78) = 269 = 269
f(79) = 3 = 3
f(80) = 113 = 113
f(81) = 1 = 1
f(82) = 51 = 3*17
f(83) = 17 = 17
f(84) = 223 = 223
f(85) = 39 = 3*13
f(86) = 403 = 13*31
f(87) = 31 = 31
f(88) = 591 = 3*197
f(89) = 43 = 43
f(90) = 787 = 787
f(91) = 111 = 3*37
f(92) = 991 = 991
f(93) = 137 = 137
f(94) = 1203 = 3*401
f(95) = 41 = 41
f(96) = 1423 = 1423
f(97) = 3 = 3
f(98) = 1651 = 13*127
f(99) = 221 = 13*17
f(100) = 1887 = 3*17*37

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

f(0)=113
f(1)=3
f(2)=269
f(3)=43
f(4)=139
f(5)=61
f(6)=557
f(7)=13
f(8)=53
f(9)=47
f(10)=271
f(11)=109
f(12)=929
f(13)=41
f(14)=17
f(15)=1
f(16)=379
f(17)=37
f(18)=1229
f(19)=1
f(20)=101
f(21)=1
f(22)=463
f(23)=89
f(24)=31
f(25)=1
f(26)=1
f(27)=193
f(28)=523
f(29)=199
f(30)=1613
f(31)=1
f(32)=97
f(33)=1
f(34)=1
f(35)=211
f(36)=1697
f(37)=71
f(38)=1709
f(39)=107
f(40)=571
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)=223
f(85)=1
f(86)=1
f(87)=1
f(88)=197
f(89)=1
f(90)=787
f(91)=1
f(92)=991
f(93)=137
f(94)=401
f(95)=1
f(96)=1423
f(97)=1
f(98)=127
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-80x-113 could be written as f(y)= y^2-1713 with x=y+40

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
f'(x)>2x-81 with x > 41

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, 3, 269, 43, 139, 61, 557, 13, 53, 47, 271, 109, 929, 41, 17, 1, 379, 37, 1229, 1, 101, 1, 463, 89, 31, 1, 1, 193, 523, 199, 1613, 1, 97, 1, 1, 211, 1697, 71, 1709, 107, 571, 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, 223, 1, 1, 1, 197, 1, 787, 1, 991, 137, 401, 1, 1423, 1, 127, 1, 1, 251, 2131, 1, 2383, 157, 881, 347, 1, 1, 3187, 1, 1, 1, 1, 163, 239, 1, 1, 283, 1, 1, 5011, 647, 1, 1, 5683, 1, 1, 1, 2129, 821, 1, 1, 419, 457, 1, 1, 607, 337, 8287, 1061, 2897, 1, 9103, 1, 1, 1217, 1, 1, 1, 1, 10831, 691, 3761, 1439, 11743, 499, 12211, 389, 4229, 1, 13171, 1, 1051, 1, 4721, 1, 863, 311, 15187, 1931, 5237, 1997, 439, 1, 1291, 1, 1, 1, 577, 757, 18451, 1171, 373, 1, 19603, 829, 331, 1, 1, 659, 21391, 1, 22003, 2789, 7541, 1, 23251, 491, 23887, 1, 1, 1, 25183, 1063, 601, 409, 8837, 839, 877, 1, 593, 3527, 9521, 1, 2251, 617, 1, 1, 1, 3881, 1, 1, 32143, 1, 1, 4157, 1, 1, 1, 1, 11717, 2221, 35923, 1, 1, 4637, 12497, 1, 38287, 1, 1, 4937, 1, 5039, 1, 857, 1123, 1, 1, 5351, 2543, 1, 3391, 1, 1, 709, 751, 1, 46687, 1, 1, 3001, 48463, 1019, 49363, 479, 1289, 1, 3011, 1, 1, 1, 17681, 6689, 1459, 2269, 1, 3463, 1433, 1, 1, 2389, 1091, 1, 1153, 1, 59791, 1, 683, 1, 1, 599, 4831, 1319, 63823, 4021, 21617, 8171, 1607, 2767, 66931, 1, 1, 2141, 1, 1, 70111, 8831, 1, 4483, 72271, 1, 73363, 9239, 24821, 9377, 75571, 1, 1, 1, 701, 1, 887, 3313, 1511, 1, 27077, 5113, 82387, 3457, 6427, 809, 911, 1, 85903, 1, 1, 1, 29429, 1, 89491, 1877, 90703, 1, 2357, 1, 93151, 3907, 2551, 2969, 1, 1, 1, 1, 98143, 12347, 2549, 1, 941, 2111, 953, 1, 34421, 1, 3373, 1, 105871, 3329, 35729, 1, 1, 4549, 109843, 6907, 37061, 6991, 2617, 1, 1867, 14321, 937, 3623, 8971, 1, 1, 1, 2341, 883, 1, 2531, 1721, 7681, 41201, 1, 1, 1, 1, 1987, 907, 4019, 1, 5419, 130783, 967, 2593, 8311, 133711, 2801, 10399, 1307, 45557, 1, 138163, 1447, 139663, 1097, 47057, 1, 1471, 1, 1, 1, 1, 9157, 147283, 1, 4801, 18701, 50129, 1181, 1, 1, 153523, 19289, 1, 1499, 156691, 1, 9311, 1, 1, 1, 161503, 6763, 1039, 1, 54917, 1, 12799, 6967, 1487, 21107, 1, 10657, 10079, 1, 5581, 1, 58229, 1, 13567, 1, 1, 5591, 59921, 1, 2039, 1, 4951, 11503, 61637, 1, 10979, 1, 1, 1, 63377, 1, 1, 1, 983, 24317, 65141, 1, 197203, 4127, 15307, 1, 1, 1483, 202591, 1, 4349, 1, 1297, 6473, 5623, 8707, 209887, 2027, 1, 13291, 1559, 1, 215443, 1, 4261, 27281, 219187, 2293, 221071, 3469, 5717, 2153, 224863, 1, 5531, 1, 2459, 1, 230611, 9649, 13679, 1, 1663, 1, 1399, 2473, 1069, 29921, 1, 1, 3413, 1, 244303, 15331, 1549, 30911, 1, 1, 14723, 7853, 2273, 1979, 6203, 10639, 1, 1, 2003, 1, 1, 1, 1, 32939, 1, 1, 15683, 1, 1933, 8429, 2099, 1, 272863, 1, 1627, 1327, 92357, 17383, 279187, 11677, 7603, 1, 1, 1, 1, 1493, 287731, 2777, 7433, 1, 9421, 1, 294223, 18457, 98801, 1, 6353, 12487, 300787, 1, 1, 1, 1277, 12763, 307423, 38567, 103217, 19423, 7607, 6521, 5927, 1, 1, 1, 1, 3331, 320911, 1, 6337, 1, 1201, 1, 1, 1, 1, 1, 1, 1, 7121, 41981, 112337, 1321, 5563, 3547, 1, 2521, 2797, 43151, 3571, 1, 1, 21871, 117041, 1, 8221, 14779, 355891, 11159, 119429, 1, 1, 1, 1, 1, 1, 22921, 1, 7691, 370387, 46451, 124277, 46757, 375283, 1, 1, 1, 9749, 47681, 22511, 1, 385171, 24151, 129221, 1, 3863, 1, 1861, 1, 10133, 1, 2903, 1, 400243, 1619, 1, 2971, 1, 1, 4583, 1, 1, 1, 31771, 1, 415603, 3257, 139397, 13109, 1, 1, 11443, 53087, 8353, 1571, 32971, 1, 431251, 1, 144629, 54401, 436531, 4561, 439183, 6883, 4751, 1787, 8387, 1429, 1, 1, 8821, 28201, 9629, 18913, 455263, 57077, 152657, 7177, 12451, 4813, 1, 1, 155381, 58439, 468883, 1, 27743, 1, 158129, 59471, 1901, 1, 11161, 1, 12377, 1, 15661, 20287, 488287, 61211, 163697, 30781, 3889, 1, 1, 1, 12809, 4817, 9479, 1, 505231, 1, 169361, 63689, 510943, 1, 4547, 32203, 1, 1, 2351, 1, 12743, 1523, 4733, 1, 17041, 1, 1, 1, 178037, 66947, 1, 1, 11489, 1, 1, 4003, 1, 22807, 548851, 8599, 1, 17291, 554803, 1783, 1, 69911, 1747, 1, 13751, 11777, 15319, 71039, 11173, 4201, 9391, 1, 1, 1, 192977, 1, 581983, 1, 585043, 1, 1, 1, 2089, 24697, 594271, 1, 1, 4679, 600463, 6271, 8501, 75641, 4703, 76031, 1609, 1, 1, 1, 15797, 5939, 6131, 25867, 1, 1, 1913, 1, 1, 26263, 631903, 79187, 1, 3061, 1, 13331, 641491, 80387, 1, 80789, 15803, 1, 38303, 20399, 1, 1907, 50587, 2113, 2633, 1, 4177, 41611, 7499, 1, 5281, 2711, 7247, 1, 39839, 1, 4027, 1, 1, 85691, 14621, 1, 690511, 43261, 5641, 86939, 3539, 1, 53887, 1, 234629, 1, 41603, 1, 710623, 1, 238001, 1, 3217, 1, 4591, 6947, 1, 2927, 16921, 1, 1823, 1, 14401, 5413, 737887, 30817, 15773, 46441, 1, 1, 17401, 31249, 751711, 1777, 1811, 11827, 758671, 1, 20599, 1, 15013, 1, 59167, 16061, 1, 1, 258737, 3137, 25153, 32563, 783283, 24533, 6397, 1, 1, 2539, 46703, 5851, 265841, 49957, 801103, 1, 1, 100811, 269429, 1, 21943, 1, 62731, 25541, 1993, 1, 1, 1, 48611, 1, 1, 51991, 26893, 1, 1, 8069, 280337, 26339, 11897, 4409, 16007, 106277, 6043, 106739, 1, 1, 3037, 1, 22133, 108131, 2069, 1, 870643, 13633, 1, 1, 878131, 1, 20509, 1, 22709, 1, 1, 1, 28813, 1, 8081, 112361, 14767, 9403, 1, 3541, 302801, 8753, 1, 1, 7213, 57373,

6. Sequence of the polynom (only primes)

113, 3, 269, 43, 139, 61, 557, 13, 53, 47, 271, 109, 929, 41, 17, 379, 37, 1229, 101, 463, 89, 31, 193, 523, 199, 1613, 97, 211, 1697, 71, 1709, 107, 571, 223, 197, 787, 991, 137, 401, 1423, 127, 251, 2131, 2383, 157, 881, 347, 3187, 163, 239, 283, 5011, 647, 5683, 2129, 821, 419, 457, 607, 337, 8287, 1061, 2897, 9103, 1217, 10831, 691, 3761, 1439, 11743, 499, 12211, 389, 4229, 13171, 1051, 4721, 863, 311, 15187, 1931, 5237, 1997, 439, 1291, 577, 757, 18451, 1171, 373, 19603, 829, 331, 659, 21391, 22003, 2789, 7541, 23251, 491, 23887, 25183, 1063, 601, 409, 8837, 839, 877, 593, 3527, 9521, 2251, 617, 3881, 32143, 4157, 11717, 2221, 35923, 4637, 12497, 38287, 4937, 5039, 857, 1123, 5351, 2543, 3391, 709, 751, 46687, 3001, 48463, 1019, 49363, 479, 1289, 3011, 17681, 6689, 1459, 2269, 3463, 1433, 2389, 1091, 1153, 59791, 683, 599, 4831, 1319, 63823, 4021, 21617, 8171, 1607, 2767, 66931, 2141, 70111, 8831, 4483, 72271, 73363, 9239, 24821, 9377, 75571, 701, 887, 3313, 1511, 27077, 5113, 82387, 3457, 6427, 809, 911, 85903, 29429, 89491, 1877, 90703, 2357, 93151, 3907, 2551, 2969, 98143, 12347, 2549, 941, 2111, 953, 34421, 3373, 105871, 3329, 35729, 4549, 109843, 6907, 37061, 6991, 2617, 1867, 14321, 937, 3623, 8971, 2341, 883, 2531, 1721, 7681, 41201, 1987, 907, 4019, 5419, 130783, 967, 2593, 8311, 133711, 2801, 10399, 1307, 45557, 138163, 1447, 139663, 1097, 47057, 1471, 9157, 147283, 4801, 18701, 50129, 1181, 153523, 19289, 1499, 156691, 9311, 161503, 6763, 1039, 54917, 12799, 6967, 1487, 21107, 10657, 10079, 5581, 58229, 13567, 5591, 59921, 2039, 4951, 11503, 61637, 10979, 63377, 983, 24317, 65141, 197203, 4127, 15307, 1483, 202591, 4349, 1297, 6473, 5623, 8707, 209887, 2027, 13291, 1559, 215443, 4261, 27281, 219187, 2293, 221071, 3469, 5717, 2153, 224863, 5531, 2459, 230611, 9649, 13679, 1663, 1399, 2473, 1069, 29921, 3413, 244303, 15331, 1549, 30911, 14723, 7853, 2273, 1979, 6203, 10639, 2003, 32939, 15683, 1933, 8429, 2099, 272863, 1627, 1327, 92357, 17383, 279187, 11677, 7603, 1493, 287731, 2777, 7433, 9421, 294223, 18457, 98801, 6353, 12487, 300787, 1277, 12763, 307423, 38567, 103217, 19423, 7607, 6521, 5927, 3331, 320911, 6337, 1201, 7121, 41981, 112337, 1321, 5563, 3547, 2521, 2797, 43151, 3571, 21871, 117041, 8221, 14779, 355891, 11159, 119429, 22921, 7691, 370387, 46451, 124277, 46757, 375283, 9749, 47681, 22511, 385171, 24151, 129221, 3863, 1861, 10133, 2903, 400243, 1619, 2971, 4583, 31771, 415603, 3257, 139397, 13109, 11443, 53087, 8353, 1571, 32971, 431251, 144629, 54401, 436531, 4561, 439183, 6883, 4751, 1787, 8387, 1429, 8821, 28201, 9629, 18913, 455263, 57077, 152657, 7177, 12451, 4813, 155381, 58439, 468883, 27743, 158129, 59471, 1901, 11161, 12377, 15661, 20287, 488287, 61211, 163697, 30781, 3889, 12809, 4817, 9479, 505231, 169361, 63689, 510943, 4547, 32203, 2351, 12743, 1523, 4733, 17041, 178037, 66947, 11489, 4003, 22807, 548851, 8599, 17291, 554803, 1783, 69911, 1747, 13751, 11777, 15319, 71039, 11173, 4201, 9391, 192977, 581983, 585043, 2089, 24697, 594271, 4679, 600463, 6271, 8501, 75641, 4703, 76031, 1609, 15797, 5939, 6131, 25867, 1913, 26263, 631903, 79187, 3061, 13331, 641491, 80387, 80789, 15803, 38303, 20399, 1907, 50587, 2113, 2633, 4177, 41611, 7499, 5281, 2711, 7247, 39839, 4027, 85691, 14621, 690511, 43261, 5641, 86939, 3539, 53887, 234629, 41603, 710623, 238001, 3217, 4591, 6947, 2927, 16921, 1823, 14401, 5413, 737887, 30817, 15773, 46441, 17401, 31249, 751711, 1777, 1811, 11827, 758671, 20599, 15013, 59167, 16061, 258737, 3137, 25153, 32563, 783283, 24533, 6397, 2539, 46703, 5851, 265841, 49957, 801103, 100811, 269429, 21943, 62731, 25541, 1993, 48611, 51991, 26893, 8069, 280337, 26339, 11897, 4409, 16007, 106277, 6043, 106739, 3037, 22133, 108131, 2069, 870643, 13633, 878131, 20509, 22709, 28813, 8081, 112361, 14767, 9403, 3541, 302801, 8753, 7213, 57373,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-80x-113 and
the reducible primes which appear as divisor for the first time
p | x^2-80x-113 and p < x^2-80x-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)
11010371.0000000.3000001.0000000.0000000.0000000.000000
21003512230.3500000.1200000.3500003.5000004.0000003.285714
31.0005841074770.5840000.1070000.58400016.6857158.91666720.739130
410.0006.4508385.6120.6450000.0838000.64500011.0445207.83177611.765199
5100.00066.0466.55359.4930.6604600.0655300.66046010.2396907.81980910.601033
61.000.000665.94153.995611.9460.6659410.0539950.66594110.0829888.23973810.286016
710.000.0006.700.190456.9986.243.1920.6700190.0457000.67001910.0612368.46371010.202194
8100.000.00067.293.4983.964.14163.329.3570.6729350.0396410.67293510.0435218.67430710.143746
91.000.000.000675.202.41934.967.111640.235.3080.6752020.0349670.67520210.0336958.82085510.109613
1010.000.000.0006.770.031.257312.965.6166.457.065.6410.6770030.0312970.67700310.0266698.95028510.085457


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
245231.2500000.5000000.7500001.6666671.0000003.000000
388351.0000000.3750000.6250001.6000001.5000001.666667
416144100.8750000.2500000.6250001.7500001.3333332.000000
532246180.7500000.1875000.5625001.7142861.5000001.800000
664298210.4531250.1250000.3281251.2083331.3333331.166667
71284617290.3593750.1328120.2265621.5862072.1250001.380952
825611834840.4609380.1328120.3281252.5652172.0000002.896552
9512281662150.5488280.1289060.4199222.3813561.9411762.559524
101.0245991084910.5849610.1054690.4794922.1316731.6363642.283721
112.0481.2552101.0450.6127930.1025390.5102542.0951591.9444442.128309
124.0962.5863772.2090.6313480.0920410.5393072.0605581.7952382.113876
138.1925.2697124.5570.6431880.0869140.5562742.0375101.8885942.062924
1416.38410.6461.2929.3540.6497800.0788570.5709232.0204971.8146072.052666
1532.76821.4572.37019.0870.6548160.0723270.5824892.0154991.8343652.040517
1665.53643.1694.48238.6870.6587070.0683900.5903172.0118841.8911392.026877
17131.07286.5828.37278.2100.6605680.0638730.5966952.0056521.8679162.021609
18262.144173.73815.804157.9340.6627580.0602870.6024702.0066291.8877212.019358
19524.288348.37429.860318.5140.6644710.0569530.6075172.0051691.8893952.016754
201.048.576698.31456.364641.9500.6659640.0537530.6122112.0044951.8876092.015453
212.097.1521.399.528106.7511.292.7770.6673470.0509030.6164442.0041531.8939572.013828
224.194.3042.804.208203.2832.600.9250.6685750.0484660.6201092.0036811.9042732.011890
238.388.6085.617.888387.9165.229.9720.6697040.0462430.6234612.0033781.9082562.010812
2416.777.21611.253.611741.67610.511.9350.6707670.0442070.6265602.0031751.9119502.009941
2533.554.43222.536.5901.420.39521.116.1950.6716430.0423310.6293122.0026101.9151152.008783
2667.108.86445.130.0562.722.70242.407.3540.6724900.0405710.6319192.0025241.9168632.008286
27134.217.72890.364.7595.231.27985.133.4800.6732700.0389760.6342942.0023191.9213562.007517
28268.435.456180.921.99510.061.563170.860.4320.6739870.0374820.6365052.0021301.9233472.006971
29536.870.912362.199.45519.387.085342.812.3700.6746490.0361110.6385382.0019651.9268462.006388
301.073.741.824725.062.38037.408.196687.654.1840.6752670.0348390.6404282.0018321.9295422.005920
312.147.483.6481.451.364.57272.275.4861.379.089.0860.6758440.0336560.6421882.0017101.9320762.005498
324.294.967.2962.905.054.424139.810.5232.765.243.9010.6763860.0325520.6438342.0016021.9344112.005124
338.589.934.5925.814.489.426270.712.5815.543.776.8450.6768960.0315150.6453812.0015081.9362822.004806
3417.179.869.18411.637.199.241524.716.24311.112.482.9980.6773740.0305430.6468322.0014141.9382782.004497


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
122021010
242021010
383031020
4164042020
5326062040
6648083050
712817983554
825634268313513
951266588327531
101.0241081008347553
112.04821020283975105
124.096377369831835186
138.192712704833555349
1416.3841.2921.284836385646
1532.7682.3702.362831.18051.182
1665.5364.4824.474832.24852.226
17131.0728.3728.364834.20854.156
18262.14415.80415.796837.94057.856
19524.28829.86029.8528314.932514.920
201.048.57656.36456.3568328.153528.203
212.097.152106.751106.7438353.240553.503
224.194.304203.283203.27583101.5365101.739
238.388.608387.916387.90883193.9085194.000
2416.777.216741.676741.66883370.8265370.842
2533.554.4321.420.3951.420.38783710.0655710.322
2667.108.8642.722.7022.722.694831.361.57351.361.121
27134.217.7285.231.2795.231.271832.615.89952.615.372
28268.435.45610.061.56310.061.555835.030.82855.030.727
29536.870.91219.387.08519.387.077839.694.65459.692.423
301.073.741.82437.408.19637.408.1888318.705.079518.703.109
312.147.483.64872.275.48672.275.4788336.140.849536.134.629
324.294.967.296139.810.523139.810.5158369.907.633569.902.882
338.589.934.592270.712.581270.712.57383135.359.2605135.353.313
3417.179.869.184524.716.243524.716.23583262.345.6925262.370.543


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
121000100
243200300
385310320
41610631432
532181254554
664211464854
712829151361166
825684354822222317
95122159212257515453
101.024491210280132119124116
112.0481.045462582264263280238
124.0962.2099811.227566537585521
138.1924.5572.0352.5211.1841.0971.2221.054
1416.3849.3544.1805.1732.4542.2442.4812.175
1532.76819.0878.65110.4354.9364.5765.0334.542
1665.53638.68717.70520.9819.9819.25710.0799.370
17131.07278.21036.19842.01120.17018.76920.38418.887
18262.144157.93473.73184.20240.71938.06640.85738.292
19524.288318.514149.523168.99082.24476.84782.31877.105
201.048.576641.950302.117339.832165.244155.494165.475155.737
212.097.1521.292.777611.134681.642332.908313.967332.286313.616
224.194.3042.600.9251.232.7861.368.138667.685632.744667.143633.353
238.388.6085.229.9722.486.0842.743.8871.340.0031.274.6101.340.1571.275.202
2416.777.21610.511.9355.012.7375.499.1972.689.9642.564.7652.691.4732.565.733
2533.554.43221.116.19510.094.55211.021.6425.399.2425.157.0295.398.8105.161.114
2667.108.86442.407.35420.313.40322.093.95010.833.78010.367.14410.834.31410.372.116
27134.217.72885.133.48040.855.61144.277.86821.728.95120.833.89221.734.95820.835.679
28268.435.456170.860.43282.142.36488.718.06743.571.52541.851.70343.580.56341.856.641
29536.870.912342.812.370165.075.278177.737.09187.350.09984.034.77987.376.03784.051.455
301.073.741.824687.654.184331.628.997356.025.186175.092.719168.706.934175.131.167168.723.364
312.147.483.6481.379.089.086665.978.522713.110.563350.934.338338.578.593350.964.230338.611.925
324.294.967.2962.765.243.9011.337.056.5031.428.187.397703.208.459679.366.138703.273.662679.395.642
338.589.934.5925.543.776.8452.683.717.3622.860.059.4821.409.014.0661.362.798.9031.409.097.7651.362.866.111
3417.179.869.18411.112.482.9985.385.509.2115.726.973.7862.822.861.7422.733.309.7592.822.925.1922.733.386.305


8. Check for existing Integer Sequences by OEIS

Found in Database : 113, 3, 269, 43, 139, 61, 557, 13, 53, 47, 271, 109, 929, 41, 17, 1, 379, 37, 1229, 1,
Found in Database : 113, 3, 269, 43, 139, 61, 557, 13, 53, 47, 271, 109, 929, 41, 17, 379, 37, 1229, 101, 463, 89, 31, 193, 523, 199, 1613, 97, 211, 1697, 71, 1709, 107,
Found in Database : 3, 13, 17, 31, 37, 41, 43, 47, 53, 61, 71, 89, 97, 101, 107, 109, 113, 127, 137, 139,