Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:36:18
Deutsch
20.Apr 2024

Polynom = x^2+7

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) = 7 = 7
f(1) = 1 = 1
f(2) = 11 = 11
f(3) = 1 = 1
f(4) = 23 = 23
f(5) = 1 = 1
f(6) = 43 = 43
f(7) = 7 = 7
f(8) = 71 = 71
f(9) = 11 = 11
f(10) = 107 = 107
f(11) = 1 = 1
f(12) = 151 = 151
f(13) = 11 = 11
f(14) = 203 = 7*29
f(15) = 29 = 29
f(16) = 263 = 263
f(17) = 37 = 37
f(18) = 331 = 331
f(19) = 23 = 23
f(20) = 407 = 11*37
f(21) = 7 = 7
f(22) = 491 = 491
f(23) = 67 = 67
f(24) = 583 = 11*53
f(25) = 79 = 79
f(26) = 683 = 683
f(27) = 23 = 23
f(28) = 791 = 7*113
f(29) = 53 = 53
f(30) = 907 = 907
f(31) = 121 = 11*11
f(32) = 1031 = 1031
f(33) = 137 = 137
f(34) = 1163 = 1163
f(35) = 77 = 7*11
f(36) = 1303 = 1303
f(37) = 43 = 43
f(38) = 1451 = 1451
f(39) = 191 = 191
f(40) = 1607 = 1607
f(41) = 211 = 211
f(42) = 1771 = 7*11*23
f(43) = 29 = 29
f(44) = 1943 = 29*67
f(45) = 127 = 127
f(46) = 2123 = 11*193
f(47) = 277 = 277
f(48) = 2311 = 2311
f(49) = 301 = 7*43
f(50) = 2507 = 23*109
f(51) = 163 = 163
f(52) = 2711 = 2711
f(53) = 11 = 11
f(54) = 2923 = 37*79
f(55) = 379 = 379
f(56) = 3143 = 7*449
f(57) = 407 = 11*37
f(58) = 3371 = 3371
f(59) = 109 = 109
f(60) = 3607 = 3607
f(61) = 233 = 233
f(62) = 3851 = 3851
f(63) = 497 = 7*71
f(64) = 4103 = 11*373
f(65) = 529 = 23*23
f(66) = 4363 = 4363
f(67) = 281 = 281
f(68) = 4631 = 11*421
f(69) = 149 = 149
f(70) = 4907 = 7*701
f(71) = 631 = 631
f(72) = 5191 = 29*179
f(73) = 667 = 23*29
f(74) = 5483 = 5483
f(75) = 11 = 11
f(76) = 5783 = 5783
f(77) = 371 = 7*53
f(78) = 6091 = 6091
f(79) = 781 = 11*71
f(80) = 6407 = 43*149
f(81) = 821 = 821
f(82) = 6731 = 53*127
f(83) = 431 = 431
f(84) = 7063 = 7*1009
f(85) = 113 = 113
f(86) = 7403 = 11*673
f(87) = 947 = 947
f(88) = 7751 = 23*337
f(89) = 991 = 991
f(90) = 8107 = 11*11*67
f(91) = 259 = 7*37
f(92) = 8471 = 43*197
f(93) = 541 = 541
f(94) = 8843 = 37*239
f(95) = 1129 = 1129
f(96) = 9223 = 23*401
f(97) = 1177 = 11*107
f(98) = 9611 = 7*1373
f(99) = 613 = 613
f(100) = 10007 = 10007

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+7

f(0)=7
f(1)=1
f(2)=11
f(3)=1
f(4)=23
f(5)=1
f(6)=43
f(7)=1
f(8)=71
f(9)=1
f(10)=107
f(11)=1
f(12)=151
f(13)=1
f(14)=29
f(15)=1
f(16)=263
f(17)=37
f(18)=331
f(19)=1
f(20)=1
f(21)=1
f(22)=491
f(23)=67
f(24)=53
f(25)=79
f(26)=683
f(27)=1
f(28)=113
f(29)=1
f(30)=907
f(31)=1
f(32)=1031
f(33)=137
f(34)=1163
f(35)=1
f(36)=1303
f(37)=1
f(38)=1451
f(39)=191
f(40)=1607
f(41)=211
f(42)=1
f(43)=1
f(44)=1
f(45)=127
f(46)=193
f(47)=277
f(48)=2311
f(49)=1
f(50)=109
f(51)=163
f(52)=2711
f(53)=1
f(54)=1
f(55)=379
f(56)=449
f(57)=1
f(58)=3371
f(59)=1
f(60)=3607
f(61)=233
f(62)=3851
f(63)=1
f(64)=373
f(65)=1
f(66)=4363
f(67)=281
f(68)=421
f(69)=149
f(70)=701
f(71)=631
f(72)=179
f(73)=1
f(74)=5483
f(75)=1
f(76)=5783
f(77)=1
f(78)=6091
f(79)=1
f(80)=1
f(81)=821
f(82)=1
f(83)=431
f(84)=1009
f(85)=1
f(86)=673
f(87)=947
f(88)=337
f(89)=991
f(90)=1
f(91)=1
f(92)=197
f(93)=541
f(94)=239
f(95)=1129
f(96)=401
f(97)=1
f(98)=1373
f(99)=613

b) Substitution of the polynom
The polynom f(x)=x^2+7 could be written as f(y)= y^2+7 with x=y+0

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+0
f'(x)>2x-1 with x > 3

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

7, 1, 11, 1, 23, 1, 43, 1, 71, 1, 107, 1, 151, 1, 29, 1, 263, 37, 331, 1, 1, 1, 491, 67, 53, 79, 683, 1, 113, 1, 907, 1, 1031, 137, 1163, 1, 1303, 1, 1451, 191, 1607, 211, 1, 1, 1, 127, 193, 277, 2311, 1, 109, 163, 2711, 1, 1, 379, 449, 1, 3371, 1, 3607, 233, 3851, 1, 373, 1, 4363, 281, 421, 149, 701, 631, 179, 1, 5483, 1, 5783, 1, 6091, 1, 1, 821, 1, 431, 1009, 1, 673, 947, 337, 991, 1, 1, 197, 541, 239, 1129, 401, 1, 1373, 613, 10007, 1, 359, 1327, 1, 1, 11243, 1, 1061, 743, 12107, 1, 1, 1597, 13003, 827, 13463, 1, 13931, 1, 14407, 1831, 14891, 1, 15383, 977, 2269, 2017, 443, 2081, 1, 1, 17431, 1, 1, 1, 18503, 2347, 19051, 1, 2801, 1, 877, 2557, 20743, 1, 21323, 1, 21911, 347, 317, 2851, 1, 2927, 3389, 751, 2213, 1, 24971, 1, 883, 463, 26251, 1, 26903, 1, 641, 1, 1, 3571, 1, 457, 1, 1871, 2753, 547, 30983, 3917, 1, 2003, 1409, 1, 4733, 1, 33863, 389, 34603, 1093, 1, 1, 36107, 4561, 36871, 4657, 37643, 2377, 499, 1213, 1, 4951, 3637, 5051, 1103, 1, 1, 1, 42443, 487, 43271, 1, 6301, 1, 569, 709, 1, 5779, 46663, 1, 1, 1499, 48407, 1, 4481, 6217, 1, 6329, 2221, 3221, 51991, 1, 1, 953, 53831, 617, 2381, 863, 1051, 3511, 8093, 1, 5237, 1, 1583, 3691, 5413, 1, 2087, 1, 61511, 1, 62507, 1, 1, 4001, 571, 739, 65543, 1, 66571, 599, 67607, 2129, 1, 8647, 1621, 8779, 919, 557, 659, 4523, 72907, 9181, 3217, 1, 75083, 1, 1, 1, 77291, 1, 1, 9871, 79531, 2503, 7333, 5077, 1, 1471, 7541, 1, 1, 1, 1201, 2683, 1, 1, 87623, 11027, 88811, 1, 90007, 809, 1, 1, 3187, 1, 8513, 1, 13553, 1, 8737, 1, 1453, 1, 653, 1, 2699, 1, 4397, 12721, 102407, 1171, 14813, 6521, 1, 3301, 4621, 13367, 9781, 1933, 108907, 1, 911, 1, 3847, 14029, 1, 14197, 2657, 1, 1, 1, 2207, 1, 118343, 14879, 119723, 1, 1, 1, 1, 15401, 123911, 1, 11393, 7877, 126743, 1, 1913, 16111, 129607, 1481, 4519, 1, 823, 757, 133963, 1, 135431, 17021, 1733, 1229, 1, 1087, 139883, 17579, 12853, 1, 1, 1, 144407, 1, 145931, 1667, 1, 2647, 1367, 1, 150551, 4729, 4111, 1, 1, 1, 1283, 1, 156823, 9851, 14401, 2843, 3019, 20101, 161611, 10151, 163223, 1, 23549, 20707, 166471, 1901, 7309, 5279, 169751, 1523, 171403, 21529, 15733, 21737, 1, 10973, 1, 1, 178091, 22367, 1, 1, 1429, 1, 183191, 11503, 1033, 2111, 967, 1019, 1, 11827, 4421, 1, 1, 24091, 193607, 1, 17761, 6133, 1439, 12377, 2969, 24977, 1, 1, 6983, 12713, 204311, 1, 206123, 3697, 9041, 26107, 209771, 1, 19237, 1, 30493, 1, 1, 1, 217163, 1, 219031, 1, 220907, 2521, 222791, 27967, 224683, 1, 32369, 14221, 7879, 1, 2039, 28921, 21121, 2083, 1, 7351, 1, 1289, 238151, 1, 34301, 3767, 3613, 1381, 244043, 1, 1, 1, 6703, 1, 250007, 1, 10957, 31627, 3299, 1, 4831, 1, 1, 16193, 1, 4663, 262151, 1, 1, 1, 1787, 8353, 38333, 3061, 270407, 33931, 6337, 2137, 274583, 1, 25153, 1, 3529, 34981, 25537, 17623, 40433, 1, 1493, 1, 9907, 1, 7823, 1297, 1789, 1663, 1117, 36857, 295943, 1, 42589, 18701, 1187, 9419, 302507, 37951, 27701, 1, 5791, 4813, 13441, 19391, 311371, 1, 1, 39341, 315851, 1801, 318103, 1, 11047, 5741, 322631, 40471, 29537, 1, 1, 20521, 1, 1, 4673, 41617, 4229, 1, 5021, 1, 338731, 42487, 341063, 3889, 1, 1, 49393, 21683, 2741, 43661, 1, 1, 1, 1, 1, 5569, 357611, 44851, 360007, 1, 2251, 1, 3347, 22877, 367243, 1, 8597, 1, 372107, 23333, 1, 11743, 34273, 47279, 1, 2069, 34721, 5987, 384407, 24103, 386891, 1, 1, 1, 5849, 24571, 1, 1, 56701, 1, 3733, 50087, 1, 12601, 3343, 3623, 1747, 1, 1619, 51361, 412171, 25841, 1, 13001, 11279, 1, 18257, 1423, 3739, 1, 1, 1, 427723, 53629, 430343, 1, 5623, 27143, 8219, 6827, 39841, 2389, 440903, 1, 443563, 13903, 446231, 2543, 448907, 2447, 64513, 5147, 2153, 28477, 3067, 14323, 459691, 8233, 1, 1999, 1, 1, 42533, 29327, 1, 58997, 473351, 59341, 476107, 2713, 478871, 1, 1, 1, 2459, 60727, 487211, 15269, 70001, 30713, 1, 1, 4547, 62129, 1, 4463, 501271, 1, 17383, 2179, 1, 1, 1, 1997, 512663, 1, 1, 64621, 14011, 9283, 1, 1, 47653, 1, 2731, 66067, 6883, 66431, 532907, 16699, 23297, 33581, 538763, 1, 6857, 1579, 544651, 1, 1, 17159, 78653, 1, 553543, 69379, 50593, 8719, 559511, 5009, 51137, 70501, 565511, 70877, 568523, 1549, 81649, 1, 1, 1, 1, 6581, 1723, 1, 3581, 1, 11071, 1, 1, 2549, 84701, 1, 54181, 1, 1, 75079, 2143, 10781, 26317, 1, 14149, 1, 611531, 6967, 1, 77029, 26861, 38711, 3469, 1, 56737, 11173, 627271, 78607, 1, 19751, 633623, 1, 3137, 79801, 640007, 1, 1, 1, 646423, 1, 649643, 1, 652871, 3557, 1759, 1, 8563, 1, 4447, 1, 5503, 83437, 3467, 1, 1873, 2633, 6199, 1, 1, 1, 3361, 1, 685591, 42953, 688907, 2333, 30097, 12391, 1709, 43577, 698903, 21893, 63841, 87991, 100801, 88411, 1, 1, 1, 4057, 6689, 1, 10733, 8191, 1, 45263, 1, 11369, 2423, 1, 2297, 91807, 1, 23059, 1, 6619, 3109, 93097, 746503, 93529, 1, 4271, 2909, 23599, 32909, 1, 14347, 95267, 763883, 1, 6791, 1, 1, 96581, 3931, 97021, 10103, 48731, 26947, 1, 785003, 98347, 1, 1, 792107, 24809, 2293, 1, 1, 100129, 114689, 2339, 2011, 50513, 73637, 1, 1, 14561, 74293, 2767, 1, 6427, 22283, 1, 1, 9431, 831751, 3593, 28807, 1, 1, 1877, 5581, 1, 846407, 106031, 1, 1, 5303, 1, 1, 1, 861191, 107881, 16319, 1, 7687, 2473, 6869, 109279, 876103, 1, 125693, 1, 20549, 55343, 1, 3833, 81013, 1, 894923, 2437, 81701, 1, 902507, 113051, 3011, 1, 2027, 2591, 913943, 57241, 917771, 1, 1, 1, 40237, 1, 929303, 29101, 12119, 1, 937031, 117371, 3719, 1, 32579, 1, 6367, 1, 952583, 10847, 18047, 1, 137201, 1, 1, 1, 968263, 5273, 13693, 4349, 88741, 1, 980107, 122761, 1, 1, 1, 1, 992023, 31063, 996011, 1,

6. Sequence of the polynom (only primes)

7, 11, 23, 43, 71, 107, 151, 29, 263, 37, 331, 491, 67, 53, 79, 683, 113, 907, 1031, 137, 1163, 1303, 1451, 191, 1607, 211, 127, 193, 277, 2311, 109, 163, 2711, 379, 449, 3371, 3607, 233, 3851, 373, 4363, 281, 421, 149, 701, 631, 179, 5483, 5783, 6091, 821, 431, 1009, 673, 947, 337, 991, 197, 541, 239, 1129, 401, 1373, 613, 10007, 359, 1327, 11243, 1061, 743, 12107, 1597, 13003, 827, 13463, 13931, 14407, 1831, 14891, 15383, 977, 2269, 2017, 443, 2081, 17431, 18503, 2347, 19051, 2801, 877, 2557, 20743, 21323, 21911, 347, 317, 2851, 2927, 3389, 751, 2213, 24971, 883, 463, 26251, 26903, 641, 3571, 457, 1871, 2753, 547, 30983, 3917, 2003, 1409, 4733, 33863, 389, 34603, 1093, 36107, 4561, 36871, 4657, 37643, 2377, 499, 1213, 4951, 3637, 5051, 1103, 42443, 487, 43271, 6301, 569, 709, 5779, 46663, 1499, 48407, 4481, 6217, 6329, 2221, 3221, 51991, 953, 53831, 617, 2381, 863, 1051, 3511, 8093, 5237, 1583, 3691, 5413, 2087, 61511, 62507, 4001, 571, 739, 65543, 66571, 599, 67607, 2129, 8647, 1621, 8779, 919, 557, 659, 4523, 72907, 9181, 3217, 75083, 77291, 9871, 79531, 2503, 7333, 5077, 1471, 7541, 1201, 2683, 87623, 11027, 88811, 90007, 809, 3187, 8513, 13553, 8737, 1453, 653, 2699, 4397, 12721, 102407, 1171, 14813, 6521, 3301, 4621, 13367, 9781, 1933, 108907, 911, 3847, 14029, 14197, 2657, 2207, 118343, 14879, 119723, 15401, 123911, 11393, 7877, 126743, 1913, 16111, 129607, 1481, 4519, 823, 757, 133963, 135431, 17021, 1733, 1229, 1087, 139883, 17579, 12853, 144407, 145931, 1667, 2647, 1367, 150551, 4729, 4111, 1283, 156823, 9851, 14401, 2843, 3019, 20101, 161611, 10151, 163223, 23549, 20707, 166471, 1901, 7309, 5279, 169751, 1523, 171403, 21529, 15733, 21737, 10973, 178091, 22367, 1429, 183191, 11503, 1033, 2111, 967, 1019, 11827, 4421, 24091, 193607, 17761, 6133, 1439, 12377, 2969, 24977, 6983, 12713, 204311, 206123, 3697, 9041, 26107, 209771, 19237, 30493, 217163, 219031, 220907, 2521, 222791, 27967, 224683, 32369, 14221, 7879, 2039, 28921, 21121, 2083, 7351, 1289, 238151, 34301, 3767, 3613, 1381, 244043, 6703, 250007, 10957, 31627, 3299, 4831, 16193, 4663, 262151, 1787, 8353, 38333, 3061, 270407, 33931, 6337, 2137, 274583, 25153, 3529, 34981, 25537, 17623, 40433, 1493, 9907, 7823, 1297, 1789, 1663, 1117, 36857, 295943, 42589, 18701, 1187, 9419, 302507, 37951, 27701, 5791, 4813, 13441, 19391, 311371, 39341, 315851, 1801, 318103, 11047, 5741, 322631, 40471, 29537, 20521, 4673, 41617, 4229, 5021, 338731, 42487, 341063, 3889, 49393, 21683, 2741, 43661, 5569, 357611, 44851, 360007, 2251, 3347, 22877, 367243, 8597, 372107, 23333, 11743, 34273, 47279, 2069, 34721, 5987, 384407, 24103, 386891, 5849, 24571, 56701, 3733, 50087, 12601, 3343, 3623, 1747, 1619, 51361, 412171, 25841, 13001, 11279, 18257, 1423, 3739, 427723, 53629, 430343, 5623, 27143, 8219, 6827, 39841, 2389, 440903, 443563, 13903, 446231, 2543, 448907, 2447, 64513, 5147, 2153, 28477, 3067, 14323, 459691, 8233, 1999, 42533, 29327, 58997, 473351, 59341, 476107, 2713, 478871, 2459, 60727, 487211, 15269, 70001, 30713, 4547, 62129, 4463, 501271, 17383, 2179, 1997, 512663, 64621, 14011, 9283, 47653, 2731, 66067, 6883, 66431, 532907, 16699, 23297, 33581, 538763, 6857, 1579, 544651, 17159, 78653, 553543, 69379, 50593, 8719, 559511, 5009, 51137, 70501, 565511, 70877, 568523, 1549, 81649, 6581, 1723, 3581, 11071, 2549, 84701, 54181, 75079, 2143, 10781, 26317, 14149, 611531, 6967, 77029, 26861, 38711, 3469, 56737, 11173, 627271, 78607, 19751, 633623, 3137, 79801, 640007, 646423, 649643, 652871, 3557, 1759, 8563, 4447, 5503, 83437, 3467, 1873, 2633, 6199, 3361, 685591, 42953, 688907, 2333, 30097, 12391, 1709, 43577, 698903, 21893, 63841, 87991, 100801, 88411, 4057, 6689, 10733, 8191, 45263, 11369, 2423, 2297, 91807, 23059, 6619, 3109, 93097, 746503, 93529, 4271, 2909, 23599, 32909, 14347, 95267, 763883, 6791, 96581, 3931, 97021, 10103, 48731, 26947, 785003, 98347, 792107, 24809, 2293, 100129, 114689, 2339, 2011, 50513, 73637, 14561, 74293, 2767, 6427, 22283, 9431, 831751, 3593, 28807, 1877, 5581, 846407, 106031, 5303, 861191, 107881, 16319, 7687, 2473, 6869, 109279, 876103, 125693, 20549, 55343, 3833, 81013, 894923, 2437, 81701, 902507, 113051, 3011, 2027, 2591, 913943, 57241, 917771, 40237, 929303, 29101, 12119, 937031, 117371, 3719, 32579, 6367, 952583, 10847, 18047, 137201, 968263, 5273, 13693, 4349, 88741, 980107, 122761, 992023, 31063, 996011,

7. Distribution of the primes

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

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)
1106600.6000000.6000000.6000000.0000000.0000000.000000
21006548170.6500000.4800000.65000010.8333338.000000inf
31.0006703693010.6700000.3690000.67000010.3076937.68750017.705883
410.0006.8242.6944.1300.6824000.2694000.68240010.1850757.30081313.720930
5100.00068.46720.51347.9540.6846700.2051300.68467010.0332657.61432811.611138
61.000.000685.939164.773521.1660.6859390.1647730.68593910.0185358.03261410.868040
710.000.0006.869.0351.380.1075.488.9280.6869030.1380110.68690310.0140618.37580810.532015
8100.000.00068.751.92511.871.07656.880.8490.6875190.1187110.68751910.0089658.60156210.362834
91.000.000.000688.059.671104.180.631583.879.0400.6880600.1041810.68806010.0078598.77600610.264950
1010.000.000.0006.885.009.841928.440.4305.956.569.4110.6885010.0928440.68850110.0064148.91183410.201718


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
243300.7500000.7500000.0000001.5000001.500000-nan
385500.6250000.6250000.0000001.6666671.666667-nan
4169810.5625000.5000000.0625001.8000001.600000inf
532191630.5937500.5000000.0937502.1111112.0000003.000000
664403370.6250000.5156250.1093752.1052632.0625002.333333
71288463210.6562500.4921880.1640622.1000001.9090913.000000
8256169116530.6601560.4531250.2070312.0119051.8412702.523809
95123392081310.6621090.4062500.2558592.0059171.7931032.471698
101.0246873803070.6708980.3710940.2998052.0265491.8269232.343511
112.0481.3866896970.6767580.3364260.3403322.0174671.8131582.270358
124.0962.7891.2441.5450.6809080.3037110.3771972.0122651.8055152.216643
138.1925.5782.2613.3170.6809080.2760010.4049072.0000001.8175242.146925
1416.38411.1624.1277.0350.6812740.2518920.4293822.0010761.8252992.120892
1532.76822.3817.63714.7440.6830140.2330630.4499512.0051071.8504972.095807
1665.53644.86714.07630.7910.6846160.2147830.4698332.0046911.8431322.088375
17131.07289.70926.17563.5340.6844250.1996990.4847261.9994431.8595482.063395
18262.144179.62848.757130.8710.6852260.1859930.4992332.0023411.8627322.059858
19524.288359.53991.289268.2500.6857660.1741200.5116462.0015751.8723262.049728
201.048.576719.222172.083547.1390.6859040.1641110.5217922.0004011.8850352.039661
212.097.1521.439.181325.3641.113.8170.6862550.1551460.5311092.0010251.8907392.035711
224.194.3042.879.859617.0022.262.8570.6866120.1471050.5395072.0010401.8963442.031624
238.388.6085.761.5911.172.6304.588.9610.6868350.1397880.5470472.0006501.9005292.027950
2416.777.21611.527.2702.233.0809.294.1900.6870790.1331020.5539772.0007101.9043352.025337
2533.554.43223.060.1694.265.62718.794.5420.6872470.1271260.5601212.0004881.9101992.022182
2667.108.86446.132.6278.162.38037.970.2470.6874300.1216290.5658012.0005331.9135242.020281
27134.217.72892.287.41815.654.35976.633.0590.6875950.1166340.5709612.0004801.9178672.018239
28268.435.456184.620.63930.066.355154.554.2840.6877650.1120060.5757602.0004961.9206382.016810
29536.870.912369.324.28257.844.290311.479.9920.6879200.1077430.5801772.0004501.9238872.015344
301.073.741.824738.812.244111.444.489627.367.7550.6880730.1037910.5842822.0004431.9266292.014151
312.147.483.6481.477.930.950215.011.6271.262.919.3230.6882150.1001230.5880932.0004151.9293162.013045
324.294.967.2962.956.435.154415.340.2172.541.094.9370.6883490.0967040.5916452.0003881.9317102.012080
338.589.934.5925.913.966.529803.276.7185.110.689.8110.6884760.0935140.5949632.0003711.9340212.011216
3417.179.869.18411.829.978.2341.555.292.32210.274.685.9120.6885950.0905300.5980652.0003461.9361852.010430
3534.359.738.36823.663.886.4623.014.365.55620.649.520.9060.6887100.0877300.6009802.0003321.9381342.009747
3668.719.476.73647.335.288.4055.847.820.75741.487.467.6480.6888190.0850970.6037222.0003181.9399842.009125


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
122110101
243120102
385230203
4168350305
53216880817
664331617215214
7128632934625725
8256116546214431346
95122089411426742583
101.0243801732075312550152
112.04868931037910324687253
124.0961.244570674177461162444
138.1922.2611.0211.240317820306818
1416.3844.1271.8612.2665731.5035561.495
1532.7687.6373.4274.2101.0712.7921.0372.737
1665.53614.0766.3117.7651.9245.1481.8825.122
17131.07226.17511.83514.3403.5409.5363.4959.604
18262.14448.75721.98526.7726.47117.8276.60917.850
19524.28891.28940.98250.30712.05733.47912.23133.522
201.048.576172.08377.36994.71422.63963.19322.86963.382
212.097.152325.364146.403178.96142.738119.63643.127119.863
224.194.304617.002277.381339.62181.057227.37581.261227.309
238.388.6081.172.630526.710645.920153.512432.719153.931432.468
2416.777.2162.233.0801.002.7471.230.333292.537824.067292.329824.147
2533.554.4324.265.6271.914.4822.351.145557.3291.575.148557.9561.575.194
2667.108.8648.162.3803.659.5754.502.8051.064.8573.017.0331.064.7483.015.742
27134.217.72815.654.3597.016.4868.637.8732.039.0935.788.9392.037.3475.788.980
28268.435.45630.066.35513.470.37316.595.9823.908.74711.126.6003.905.84311.125.165
29536.870.91257.844.29025.908.47631.935.8147.508.97021.413.2197.505.97121.416.130
301.073.741.824111.444.48949.903.95361.540.53614.442.20541.278.86914.444.64341.278.772
312.147.483.648215.011.62796.256.994118.754.63327.827.56479.671.06827.835.91979.677.076
324.294.967.296415.340.217185.900.172229.440.04553.693.901153.966.46253.705.784153.974.070
338.589.934.592803.276.718359.443.768443.832.950103.738.984297.881.161103.747.621297.908.952
3417.179.869.1841.555.292.322695.809.150859.483.172200.649.105576.964.857200.663.432577.014.928
3534.359.738.3683.014.365.5561.348.282.4341.666.083.122388.503.1001.118.633.067388.547.0061.118.682.383
3668.719.476.7365.847.820.7572.615.173.3203.232.647.437753.020.0132.170.824.114753.055.0332.170.921.597


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
120000000
240000000
380000000
4161010010
5323031020
6647343040
71282181372102
8256532132158237
9512131626935204927
101.024307153154815410567
112.048697344353198147211141
124.0961.545754791436333458318
138.1923.3171.6691.648919708966724
1416.3847.0353.5503.4851.9231.5242.0201.568
1532.76814.7447.4847.2603.9583.3524.0963.338
1665.53630.79115.54015.2518.2967.0738.4127.010
17131.07263.53432.05931.47517.17214.77117.03414.557
18262.144130.87165.98264.88934.87730.55635.01630.422
19524.288268.250134.918133.33271.29962.79271.30462.855
201.048.576547.139275.021272.118145.106128.758144.641128.634
212.097.1521.113.817559.402554.415293.605262.976293.626263.610
224.194.3042.262.8571.136.5961.126.261594.236537.238594.051537.332
238.388.6084.588.9612.305.1342.283.8271.201.7401.092.5401.201.9661.092.715
2416.777.2169.294.1904.668.7444.625.4462.427.7892.218.3882.428.8092.219.204
2533.554.43218.794.5429.438.6499.355.8934.899.6044.498.2464.900.1274.496.565
2667.108.86437.970.24719.059.08618.911.1619.874.5429.108.0899.878.4499.109.167
27134.217.72876.633.05938.463.83538.169.22419.891.40818.422.13019.895.89718.423.624
28268.435.456154.554.28477.549.66877.004.61640.041.79437.229.60940.052.62337.230.258
29536.870.912311.479.992156.266.970155.213.02280.573.49975.160.05180.584.39675.162.046
301.073.741.824627.367.755314.686.914312.680.841162.051.943151.621.222162.071.860151.622.730
312.147.483.6481.262.919.323633.397.465629.521.858325.774.867305.665.800325.804.209305.674.447
324.294.967.2962.541.094.9371.274.302.5021.266.792.435654.655.396615.868.134654.716.467615.854.940
338.589.934.5925.110.689.8112.562.606.9202.548.082.8911.315.163.0711.240.161.6741.315.259.8851.240.105.181
3417.179.869.18410.274.685.9125.151.407.9315.123.277.9812.641.290.6342.496.046.0262.641.352.4992.495.996.753
3534.359.738.36820.649.520.90610.352.007.70410.297.513.2025.303.043.1335.021.664.3625.303.134.6875.021.678.724
3668.719.476.73641.487.467.64820.796.531.97120.690.935.67710.644.593.06210.098.939.65310.644.945.04010.098.989.893


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 1, 11, 1, 23, 1, 43, 1, 71, 1, 107, 1, 151, 1, 29, 1, 263, 37, 331, 1,
Found in Database : 7, 11, 23, 43, 71, 107, 151, 29, 263, 37, 331, 491, 67, 53, 79, 683, 113, 907, 1031, 137, 1163, 1303, 1451, 191,
Found in Database : 7, 11, 23, 29, 37, 43, 53, 67, 71, 79, 107, 109, 113, 127, 137, 149,