Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:07:30
Deutsch
19.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) = 3 = 3
f(2) = 3 = 3
f(3) = 1 = 1
f(4) = 9 = 3*3
f(5) = 9 = 3*3
f(6) = 29 = 29
f(7) = 21 = 3*7
f(8) = 57 = 3*19
f(9) = 37 = 37
f(10) = 93 = 3*31
f(11) = 57 = 3*19
f(12) = 137 = 137
f(13) = 81 = 3*3*3*3
f(14) = 189 = 3*3*3*7
f(15) = 109 = 109
f(16) = 249 = 3*83
f(17) = 141 = 3*47
f(18) = 317 = 317
f(19) = 177 = 3*59
f(20) = 393 = 3*131
f(21) = 217 = 7*31
f(22) = 477 = 3*3*53
f(23) = 261 = 3*3*29
f(24) = 569 = 569
f(25) = 309 = 3*103
f(26) = 669 = 3*223
f(27) = 361 = 19*19
f(28) = 777 = 3*7*37
f(29) = 417 = 3*139
f(30) = 893 = 19*47
f(31) = 477 = 3*3*53
f(32) = 1017 = 3*3*113
f(33) = 541 = 541
f(34) = 1149 = 3*383
f(35) = 609 = 3*7*29
f(36) = 1289 = 1289
f(37) = 681 = 3*227
f(38) = 1437 = 3*479
f(39) = 757 = 757
f(40) = 1593 = 3*3*3*59
f(41) = 837 = 3*3*3*31
f(42) = 1757 = 7*251
f(43) = 921 = 3*307
f(44) = 1929 = 3*643
f(45) = 1009 = 1009
f(46) = 2109 = 3*19*37
f(47) = 1101 = 3*367
f(48) = 2297 = 2297
f(49) = 1197 = 3*3*7*19
f(50) = 2493 = 3*3*277
f(51) = 1297 = 1297
f(52) = 2697 = 3*29*31
f(53) = 1401 = 3*467
f(54) = 2909 = 2909
f(55) = 1509 = 3*503
f(56) = 3129 = 3*7*149
f(57) = 1621 = 1621
f(58) = 3357 = 3*3*373
f(59) = 1737 = 3*3*193
f(60) = 3593 = 3593
f(61) = 1857 = 3*619
f(62) = 3837 = 3*1279
f(63) = 1981 = 7*283
f(64) = 4089 = 3*29*47
f(65) = 2109 = 3*19*37
f(66) = 4349 = 4349
f(67) = 2241 = 3*3*3*83
f(68) = 4617 = 3*3*3*3*3*19
f(69) = 2377 = 2377
f(70) = 4893 = 3*7*233
f(71) = 2517 = 3*839
f(72) = 5177 = 31*167
f(73) = 2661 = 3*887
f(74) = 5469 = 3*1823
f(75) = 2809 = 53*53
f(76) = 5769 = 3*3*641
f(77) = 2961 = 3*3*7*47
f(78) = 6077 = 59*103
f(79) = 3117 = 3*1039
f(80) = 6393 = 3*2131
f(81) = 3277 = 29*113
f(82) = 6717 = 3*2239
f(83) = 3441 = 3*31*37
f(84) = 7049 = 7*19*53
f(85) = 3609 = 3*3*401
f(86) = 7389 = 3*3*821
f(87) = 3781 = 19*199
f(88) = 7737 = 3*2579
f(89) = 3957 = 3*1319
f(90) = 8093 = 8093
f(91) = 4137 = 3*7*197
f(92) = 8457 = 3*2819
f(93) = 4321 = 29*149
f(94) = 8829 = 3*3*3*3*109
f(95) = 4509 = 3*3*3*167
f(96) = 9209 = 9209
f(97) = 4701 = 3*1567
f(98) = 9597 = 3*7*457
f(99) = 4897 = 59*83
f(100) = 9993 = 3*3331

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)=3
f(2)=1
f(3)=1
f(4)=1
f(5)=1
f(6)=29
f(7)=1
f(8)=19
f(9)=37
f(10)=31
f(11)=1
f(12)=137
f(13)=1
f(14)=1
f(15)=109
f(16)=83
f(17)=47
f(18)=317
f(19)=59
f(20)=131
f(21)=1
f(22)=53
f(23)=1
f(24)=569
f(25)=103
f(26)=223
f(27)=1
f(28)=1
f(29)=139
f(30)=1
f(31)=1
f(32)=113
f(33)=541
f(34)=383
f(35)=1
f(36)=1289
f(37)=227
f(38)=479
f(39)=757
f(40)=1
f(41)=1
f(42)=251
f(43)=307
f(44)=643
f(45)=1009
f(46)=1
f(47)=367
f(48)=2297
f(49)=1
f(50)=277
f(51)=1297
f(52)=1
f(53)=467
f(54)=2909
f(55)=503
f(56)=149
f(57)=1621
f(58)=373
f(59)=193
f(60)=3593
f(61)=619
f(62)=1279
f(63)=283
f(64)=1
f(65)=1
f(66)=4349
f(67)=1
f(68)=1
f(69)=2377
f(70)=233
f(71)=839
f(72)=167
f(73)=887
f(74)=1823
f(75)=1
f(76)=641
f(77)=1
f(78)=1
f(79)=1039
f(80)=2131
f(81)=1
f(82)=2239
f(83)=1
f(84)=1
f(85)=401
f(86)=821
f(87)=199
f(88)=2579
f(89)=1319
f(90)=8093
f(91)=197
f(92)=2819
f(93)=1
f(94)=1
f(95)=1
f(96)=9209
f(97)=1567
f(98)=457
f(99)=1

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, 3, 1, 1, 1, 1, 29, 1, 19, 37, 31, 1, 137, 1, 1, 109, 83, 47, 317, 59, 131, 1, 53, 1, 569, 103, 223, 1, 1, 139, 1, 1, 113, 541, 383, 1, 1289, 227, 479, 757, 1, 1, 251, 307, 643, 1009, 1, 367, 2297, 1, 277, 1297, 1, 467, 2909, 503, 149, 1621, 373, 193, 3593, 619, 1279, 283, 1, 1, 4349, 1, 1, 2377, 233, 839, 167, 887, 1823, 1, 641, 1, 1, 1039, 2131, 1, 2239, 1, 1, 401, 821, 199, 2579, 1319, 8093, 197, 2819, 1, 1, 1, 9209, 1567, 457, 1, 3331, 1699, 281, 1, 1201, 787, 1, 1907, 11657, 1979, 1, 1, 1, 709, 419, 2203, 4483, 6841, 4639, 337, 389, 271, 1, 7561, 1, 1, 2267, 2687, 1, 8317, 1877, 953, 17417, 421, 1, 9109, 6163, 1, 19037, 1, 311, 523, 6719, 3407, 1091, 1, 7103, 1543, 811, 1, 1, 1, 7699, 11701, 1129, 4003, 24329, 1, 1, 12637, 449, 617, 26237, 1, 8963, 439, 3061, 1549, 1, 4759, 9631, 1, 9859, 4987, 30269, 1, 1, 15661, 10559, 1, 1117, 1, 1, 16741, 3761, 1901, 34589, 5827, 11779, 2551, 1, 6079, 36857, 2069, 1, 19009, 1, 1, 2063, 6599, 13331, 1063, 1511, 1, 41609, 1, 14143, 691, 14419, 1, 6299, 2473, 4993, 613, 15263, 7703, 46649, 1, 1, 23977, 1, 2713, 49277, 8287, 2389, 25309, 587, 1, 51977, 971, 653, 1, 17939, 1, 1033, 9203, 977, 28081, 1, 1, 57593, 9679, 1, 557, 19843, 1429, 60509, 3389, 6833, 1, 563, 10499, 1, 10667, 21503, 1, 809, 1223, 1, 1597, 22531, 34057, 1, 11527, 1, 1, 1123, 1229, 647, 1, 72893, 12239, 24659, 5323, 1, 4201, 1291, 673, 25759, 38917, 3733, 13159, 607, 1483, 1, 40609, 1, 1, 1, 1, 28031, 42337, 9473, 1, 12347, 14503, 1, 44101, 29599, 1, 2903, 719, 10133, 1, 30803, 1, 93629, 1, 4517, 47737, 3559, 1, 1, 1, 1, 1, 1, 16747, 101117, 5653, 1, 51517, 4937, 17387, 2837, 1, 35423, 1, 11953, 859, 108893, 1, 36739, 55441, 1, 1, 16127, 701, 4231, 57457, 727, 19379, 1, 2801, 39443, 59509, 1, 6689, 1459, 1, 1, 1987, 41299, 1093, 1, 7001, 14081, 9103, 42719, 1, 129593, 1, 1409, 65881, 1, 2467, 133949, 22447, 45139, 3583, 45631, 1, 7283, 1, 15541, 70309, 47123, 23687, 20411, 1, 48131, 72577, 1, 1, 147449, 3529, 49663, 1, 1, 25219, 152093, 1, 1, 1, 877, 26003, 1, 26267, 1427, 1, 1, 8933, 3049, 27067, 54403, 82009, 1, 1453, 166457, 9293, 983, 84457, 1951, 1, 1, 28703, 1559, 1, 1, 3251, 1, 1, 59359, 1, 1933, 30103, 9551, 1447, 20353, 1, 61631, 1, 3163, 31247, 8969, 2557, 21121, 1, 191837, 32119, 1373, 1, 65119, 32707, 6359, 1, 1, 99901, 1, 33599, 202493, 1, 68099, 1, 22901, 1, 1, 34807, 2411, 105337, 1, 35419, 30491, 11909, 1259, 108109, 72383, 1913, 219017, 5237, 2539, 110917, 1, 1381, 224669, 1213, 10789, 113761, 76159, 38239, 230393, 12853, 1, 1, 1, 1, 1, 1, 79379, 119557, 1, 1, 242057, 40507, 81343, 122509, 82003, 5881, 247997, 1, 1, 125497, 4421, 1, 1, 2237, 2753, 128521, 1, 1, 1307, 6217, 1481, 131581, 1061, 44203, 9181, 1, 4259, 134677, 1, 2381, 272477, 45587, 4817, 19687, 10247, 1, 9613, 46639, 1, 140977, 13477, 1, 6067, 15901, 1, 4651, 96479, 6917, 1, 48779, 97919, 7759, 1, 1, 1151, 1, 3229, 150697, 1709, 50599, 5749, 1, 1, 1, 103043, 1783, 1, 2741, 1, 2969, 1847, 17609, 8597, 1, 106783, 22963, 3469, 53959, 324893, 1, 36353, 1, 1, 55103, 331769, 55487, 5861, 5407, 4153, 1, 338717, 1531, 113683, 1231, 3947, 57427, 49391, 19273, 38677, 174637, 116819, 1, 7507, 8429, 1, 1, 39733, 1, 18947, 1627, 17257, 6269, 1, 1, 367229, 6823, 13691, 1, 4001, 62219, 374537, 62627, 2371, 6521, 1, 21149, 381917, 3361, 3463, 192817, 128959, 9241, 389369, 21701, 43541, 196561, 2797, 1, 1, 66359, 4591, 200341, 14887, 1, 404489, 9661, 1, 1873, 136531, 1, 412157, 1, 1, 208009, 1, 69767, 5059, 70199, 140831, 30271, 1, 23689, 22511, 71503, 143443, 1, 1, 72379, 435593, 1, 16231, 1, 1, 10529, 3191, 1399, 2521, 2053, 49877, 25013, 2081, 1, 151423, 1, 8017, 76387, 459677, 3659, 1, 231877, 1, 77747, 2351, 78203, 22409, 1, 1, 1, 16417, 79579, 1, 34303, 4339, 1, 4703, 1, 54133, 244297, 23333, 81899, 16993, 2657, 165203, 248509, 55381, 3967, 501257, 1, 1487, 1, 4567, 1, 3833, 9467, 6329, 1, 1, 2971, 9781, 12377, 3697, 8431, 1, 29201, 527069, 1493, 25237, 265717, 9349, 1, 1, 1571, 1931, 1, 180563, 90527, 1, 91019, 1, 1, 1, 10223, 553529, 92503, 1801, 279001, 1, 1, 562493, 31333, 3307, 283501, 6113, 95003, 81647, 95507, 191519, 2549, 2213, 32173, 1867, 1, 3671, 9439, 1, 98047, 1, 1, 3137, 15643, 198659, 1879, 599069, 100103, 200723, 1, 1, 33713, 608393, 1, 4337, 306541, 29269, 3313, 1, 1811, 68993, 10733, 10949, 14897, 627257, 1, 210143, 1, 1, 1, 90971, 1, 1, 2153, 214399, 107467, 1733, 1, 1, 5519, 217619, 5741, 4789, 109619, 31397, 1, 1, 36901, 1, 2099, 7691, 47911, 224131, 112339, 1, 1, 25147, 17911, 1, 3677, 36083, 2437, 229631, 1789, 76913, 5507, 5077, 4007, 232963, 350281, 1, 117319, 100799, 39293, 2129, 355321, 12497, 2017, 8623, 1, 239699, 3499, 26759, 13411, 725897, 121267, 34729, 365509, 244243, 1, 23747, 40993, 2221, 52951, 1, 1, 25741, 124703, 1, 375841, 11959, 41953, 14281, 1, 2243, 381061, 254623, 18229, 1, 14243, 1, 1, 258131, 1, 5849, 1, 260483, 20611, 87221, 1, 788537, 1, 264031, 396937, 1, 4583, 4057, 44501, 12743, 1, 1, 134699, 809993, 7121, 2633, 58243, 1, 1, 4253, 1, 1, 13327, 1, 138319, 2939, 46309, 92821, 1, 7559, 20021, 3779, 140759, 1, 424117, 3257, 1, 121967, 2417, 285823, 429661, 287059, 1, 5179, 2293, 1, 1, 1, 145703, 7753, 1, 41897, 23203, 3167, 49193, 46703, 148207, 2137, 1, 298303, 1, 1, 50033, 1, 1, 1, 4091, 910109, 152003, 304643, 9743, 1, 1, 1, 8101, 1, 1, 1, 155203, 1, 51949, 104113, 1, 6673, 1, 944777, 22541, 316223, 1, 1997, 2791, 956477, 159739, 1, 481177, 10369, 161047, 16411, 1, 36007, 1, 325379, 163019, 26489, 163679, 11311, 493021, 15683, 55001, 1, 165667, 331999, 26263,

6. Sequence of the polynom (only primes)

7, 3, 29, 19, 37, 31, 137, 109, 83, 47, 317, 59, 131, 53, 569, 103, 223, 139, 113, 541, 383, 1289, 227, 479, 757, 251, 307, 643, 1009, 367, 2297, 277, 1297, 467, 2909, 503, 149, 1621, 373, 193, 3593, 619, 1279, 283, 4349, 2377, 233, 839, 167, 887, 1823, 641, 1039, 2131, 2239, 401, 821, 199, 2579, 1319, 8093, 197, 2819, 9209, 1567, 457, 3331, 1699, 281, 1201, 787, 1907, 11657, 1979, 709, 419, 2203, 4483, 6841, 4639, 337, 389, 271, 7561, 2267, 2687, 8317, 1877, 953, 17417, 421, 9109, 6163, 19037, 311, 523, 6719, 3407, 1091, 7103, 1543, 811, 7699, 11701, 1129, 4003, 24329, 12637, 449, 617, 26237, 8963, 439, 3061, 1549, 4759, 9631, 9859, 4987, 30269, 15661, 10559, 1117, 16741, 3761, 1901, 34589, 5827, 11779, 2551, 6079, 36857, 2069, 19009, 2063, 6599, 13331, 1063, 1511, 41609, 14143, 691, 14419, 6299, 2473, 4993, 613, 15263, 7703, 46649, 23977, 2713, 49277, 8287, 2389, 25309, 587, 51977, 971, 653, 17939, 1033, 9203, 977, 28081, 57593, 9679, 557, 19843, 1429, 60509, 3389, 6833, 563, 10499, 10667, 21503, 809, 1223, 1597, 22531, 34057, 11527, 1123, 1229, 647, 72893, 12239, 24659, 5323, 4201, 1291, 673, 25759, 38917, 3733, 13159, 607, 1483, 40609, 28031, 42337, 9473, 12347, 14503, 44101, 29599, 2903, 719, 10133, 30803, 93629, 4517, 47737, 3559, 16747, 101117, 5653, 51517, 4937, 17387, 2837, 35423, 11953, 859, 108893, 36739, 55441, 16127, 701, 4231, 57457, 727, 19379, 2801, 39443, 59509, 6689, 1459, 1987, 41299, 1093, 7001, 14081, 9103, 42719, 129593, 1409, 65881, 2467, 133949, 22447, 45139, 3583, 45631, 7283, 15541, 70309, 47123, 23687, 20411, 48131, 72577, 147449, 3529, 49663, 25219, 152093, 877, 26003, 26267, 1427, 8933, 3049, 27067, 54403, 82009, 1453, 166457, 9293, 983, 84457, 1951, 28703, 1559, 3251, 59359, 1933, 30103, 9551, 1447, 20353, 61631, 3163, 31247, 8969, 2557, 21121, 191837, 32119, 1373, 65119, 32707, 6359, 99901, 33599, 202493, 68099, 22901, 34807, 2411, 105337, 35419, 30491, 11909, 1259, 108109, 72383, 1913, 219017, 5237, 2539, 110917, 1381, 224669, 1213, 10789, 113761, 76159, 38239, 230393, 12853, 79379, 119557, 242057, 40507, 81343, 122509, 82003, 5881, 247997, 125497, 4421, 2237, 2753, 128521, 1307, 6217, 1481, 131581, 1061, 44203, 9181, 4259, 134677, 2381, 272477, 45587, 4817, 19687, 10247, 9613, 46639, 140977, 13477, 6067, 15901, 4651, 96479, 6917, 48779, 97919, 7759, 1151, 3229, 150697, 1709, 50599, 5749, 103043, 1783, 2741, 2969, 1847, 17609, 8597, 106783, 22963, 3469, 53959, 324893, 36353, 55103, 331769, 55487, 5861, 5407, 4153, 338717, 1531, 113683, 1231, 3947, 57427, 49391, 19273, 38677, 174637, 116819, 7507, 8429, 39733, 18947, 1627, 17257, 6269, 367229, 6823, 13691, 4001, 62219, 374537, 62627, 2371, 6521, 21149, 381917, 3361, 3463, 192817, 128959, 9241, 389369, 21701, 43541, 196561, 2797, 66359, 4591, 200341, 14887, 404489, 9661, 1873, 136531, 412157, 208009, 69767, 5059, 70199, 140831, 30271, 23689, 22511, 71503, 143443, 72379, 435593, 16231, 10529, 3191, 1399, 2521, 2053, 49877, 25013, 2081, 151423, 8017, 76387, 459677, 3659, 231877, 77747, 2351, 78203, 22409, 16417, 79579, 34303, 4339, 4703, 54133, 244297, 23333, 81899, 16993, 2657, 165203, 248509, 55381, 3967, 501257, 1487, 4567, 3833, 9467, 6329, 2971, 9781, 12377, 3697, 8431, 29201, 527069, 1493, 25237, 265717, 9349, 1571, 1931, 180563, 90527, 91019, 10223, 553529, 92503, 1801, 279001, 562493, 31333, 3307, 283501, 6113, 95003, 81647, 95507, 191519, 2549, 2213, 32173, 1867, 3671, 9439, 98047, 3137, 15643, 198659, 1879, 599069, 100103, 200723, 33713, 608393, 4337, 306541, 29269, 3313, 1811, 68993, 10733, 10949, 14897, 627257, 210143, 90971, 2153, 214399, 107467, 1733, 5519, 217619, 5741, 4789, 109619, 31397, 36901, 2099, 7691, 47911, 224131, 112339, 25147, 17911, 3677, 36083, 2437, 229631, 1789, 76913, 5507, 5077, 4007, 232963, 350281, 117319, 100799, 39293, 2129, 355321, 12497, 2017, 8623, 239699, 3499, 26759, 13411, 725897, 121267, 34729, 365509, 244243, 23747, 40993, 2221, 52951, 25741, 124703, 375841, 11959, 41953, 14281, 2243, 381061, 254623, 18229, 14243, 258131, 5849, 260483, 20611, 87221, 788537, 264031, 396937, 4583, 4057, 44501, 12743, 134699, 809993, 7121, 2633, 58243, 4253, 13327, 138319, 2939, 46309, 92821, 7559, 20021, 3779, 140759, 424117, 3257, 121967, 2417, 285823, 429661, 287059, 5179, 2293, 145703, 7753, 41897, 23203, 3167, 49193, 46703, 148207, 2137, 298303, 50033, 4091, 910109, 152003, 304643, 9743, 8101, 155203, 51949, 104113, 6673, 944777, 22541, 316223, 1997, 2791, 956477, 159739, 481177, 10369, 161047, 16411, 36007, 325379, 163019, 26489, 163679, 11311, 493021, 15683, 55001, 165667, 331999, 26263,

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)
1106420.6000000.4000000.6000000.0000000.0000000.000000
21006721460.6700000.2100000.67000011.1666675.25000023.000000
31.0006981385600.6980000.1380000.69800010.4179116.57142912.173913
410.0007.0149356.0790.7014000.0935000.70140010.0487116.77536210.855357
5100.00069.8107.41862.3920.6981000.0741800.6981009.9529517.93369010.263530
61.000.000696.85460.394636.4600.6968540.0603940.6968549.9821528.14154710.200987
710.000.0006.960.488509.2986.451.1900.6960490.0509300.6960499.9884458.43292410.136049
8100.000.00069.546.6254.409.56865.137.0570.6954660.0440960.6954669.9916318.65813010.096906
91.000.000.000695.034.56638.856.626656.177.9400.6950350.0388570.6950359.9937938.81188910.073804
1010.000.000.0006.947.138.834347.408.6856.599.730.1490.6947140.0347410.6947149.9953868.94078410.057837


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
242200.5000000.5000000.0000001.0000001.000000-nan
384310.5000000.3750000.1250002.0000001.500000inf
4169630.5625000.3750000.1875002.2500002.0000003.000000
532198110.5937500.2500000.3437502.1111111.3333333.666667
6644417270.6875000.2656250.4218752.3157892.1250002.454545
71288624620.6718750.1875000.4843751.9545451.4117652.296296
8256178471310.6953120.1835940.5117192.0697671.9583332.112903
9512349872620.6816410.1699220.5117191.9606741.8510642.000000
101.0247141415730.6972660.1376950.5595702.0458451.6206902.187023
112.0481.4352501.1850.7006840.1220700.5786132.0098041.7730502.068063
124.0962.8594462.4130.6979980.1088870.5891111.9923341.7840002.036287
138.1925.7457944.9510.7012940.0969240.6043702.0094441.7802692.051803
1416.38411.4681.4729.9960.6999510.0898440.6101071.9961711.8539042.018986
1532.76822.9072.73420.1730.6990660.0834350.6156311.9974711.8573372.018107
1665.53645.7645.06840.6960.6983030.0773320.6209721.9978171.8536942.017350
17131.07291.4859.49681.9890.6979750.0724490.6255261.9990601.8737172.014670
18262.144182.88117.694165.1870.6976360.0674970.6301381.9990271.8633112.014746
19524.288365.53833.416332.1220.6972080.0637360.6334721.9987751.8885502.010582
201.048.576730.76363.098667.6650.6969100.0601750.6367351.9991441.8882572.010300
212.097.1521.460.854119.4211.341.4330.6965890.0569440.6396451.9990801.8926272.009141
224.194.3042.920.954226.7702.694.1840.6964100.0540660.6423441.9994841.8989122.008437
238.388.6085.839.711432.0855.407.6260.6961480.0515090.6446391.9992481.9053892.007148
2416.777.21611.675.911825.85610.850.0550.6959390.0492250.6467141.9993991.9113282.006436
2533.554.43223.345.1561.580.68621.764.4700.6957400.0471080.6486321.9994291.9139972.005932
2667.108.86446.678.5003.029.89443.648.6060.6955640.0451490.6504151.9994941.9168222.005498
27134.217.72893.335.6535.818.73587.516.9180.6954050.0433530.6520521.9995431.9204422.005033
28268.435.456186.632.49611.192.895175.439.6010.6952600.0416970.6535631.9995841.9235962.004636
29536.870.912373.197.01421.556.494351.640.5200.6951340.0401520.6549811.9996361.9259092.004339
301.073.741.824746.275.55841.569.639704.705.9190.6950230.0387150.6563091.9996831.9284042.004052
312.147.483.6481.492.331.19180.284.6451.412.046.5460.6949210.0373850.6575351.9997051.9313292.003739
324.294.967.2962.984.234.582155.247.2902.828.987.2920.6948210.0361460.6586751.9997131.9337112.003466
338.589.934.5925.967.701.262300.516.6145.667.184.6480.6947320.0349850.6597471.9997431.9357282.003256
3417.179.869.18411.934.015.600582.343.85611.351.671.7440.6946510.0338970.6607541.9997681.9378092.003053
3534.359.738.36823.865.486.3871.129.597.69922.735.888.6880.6945770.0328760.6617011.9997871.9397432.002867
3668.719.476.73647.726.357.9952.193.058.42145.533.299.5740.6945100.0319130.6625971.9998071.9414512.002706


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
122100101
242100101
383110111
4166321131
5328342141
66417887181
7128241112121101
8256472125221231
9512874541421431
101.0241417367681711
112.04825013211711811301
124.09644623820721612281
138.19279442636740213901
1416.3841.47276370873317371
1532.7682.7341.4011.3321.35511.3771
1665.5365.0682.6072.4602.52512.5411
17131.0729.4964.8324.6634.76014.7341
18262.14417.6948.9738.7208.89318.7991
19524.28833.41616.92316.49216.702116.7121
201.048.57663.09831.95331.14431.658131.4381
212.097.152119.42160.37459.04659.783159.6361
224.194.304226.770114.642112.127113.2941113.4741
238.388.608432.085218.473213.611215.8621216.2211
2416.777.216825.856417.958407.897412.9861412.8681
2533.554.4321.580.686799.338781.347790.5131790.1711
2667.108.8643.029.8941.530.6001.499.2931.515.04211.514.8501
27134.217.7285.818.7352.938.1332.880.6012.909.85612.908.8771
28268.435.45611.192.8955.649.0885.543.8065.597.43415.595.4591
29536.870.91221.556.49410.875.63910.680.85410.777.965110.778.5271
301.073.741.82441.569.63920.965.61420.604.02420.784.674120.784.9631
312.147.483.64880.284.64540.478.41539.806.22940.142.002140.142.6411
324.294.967.296155.247.29078.260.05276.987.23777.619.459177.627.8291
338.589.934.592300.516.614151.457.041149.059.572150.250.2521150.266.3601
3417.179.869.184582.343.856293.435.610288.908.245291.157.8991291.185.9551
3534.359.738.3681.129.597.699569.069.238560.528.460564.795.5181564.802.1791
3668.719.476.7362.193.058.4211.104.583.5921.088.474.8281.096.520.96911.096.537.4501


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
381100100
4163210201
53211561514
66427141321249
7128623032924821
8256131646721472142
951226213213041894785
101.024573284289102181112178
112.0481.185589596224374226361
124.0962.4131.1881.225475717498723
138.1924.9512.4532.4989981.4581.0301.465
1416.3849.9964.9765.0202.0642.8702.1132.949
1532.76820.17310.00910.1644.2975.7624.3535.761
1665.53640.69620.25020.4468.79111.4838.92311.499
17131.07281.98940.95041.03918.01122.87718.15222.949
18262.144165.18782.62882.55936.67445.84136.74445.928
19524.288332.122165.751166.37174.53691.64474.24791.695
201.048.576667.665333.589334.076150.673183.126150.739183.127
212.097.1521.341.433670.079671.354304.855365.833304.869365.876
224.194.3042.694.1841.346.4381.347.746615.676731.198615.942731.368
238.388.6085.407.6262.702.8472.704.7791.241.5251.462.0781.241.6551.462.368
2416.777.21610.850.0555.425.0615.424.9942.503.4302.922.7432.500.8182.923.064
2533.554.43221.764.47010.886.09310.878.3775.037.3845.844.5755.038.8445.843.667
2667.108.86443.648.60621.825.69921.822.90710.141.48611.685.02510.141.73611.680.359
27134.217.72887.516.91843.764.92543.751.99320.401.51823.359.19620.400.79123.355.413
28268.435.456175.439.60187.730.94387.708.65841.013.83646.702.22641.022.97746.700.562
29536.870.912351.640.520175.842.298175.798.22282.440.49893.377.70582.437.38193.384.936
301.073.741.824704.705.919352.376.532352.329.387165.626.411186.729.675165.625.365186.724.468
312.147.483.6481.412.046.546706.085.486705.961.060332.651.647373.369.627332.664.922373.360.350
324.294.967.2962.828.987.2921.414.613.1061.414.374.186667.923.945746.569.624667.914.637746.579.086
338.589.934.5925.667.184.6482.833.806.6252.833.378.0231.340.641.3541.492.911.4771.340.667.8981.492.963.919
3417.179.869.18411.351.671.7445.676.263.7405.675.408.0042.690.447.0182.985.371.9682.690.419.3632.985.433.395
3534.359.738.36822.735.888.68811.368.684.94811.367.203.7405.397.986.7475.969.880.1205.398.019.0875.970.002.734
3668.719.476.73645.533.299.57422.768.050.73422.765.248.84010.828.285.06811.938.294.22610.828.375.19311.938.345.087


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 3, 1, 1, 1, 1, 29, 1, 19, 37, 31, 1, 137, 1, 1, 109, 83, 47, 317, 59,
Found in Database : 7, 3, 29, 19, 37, 31, 137, 109, 83, 47, 317, 59, 131, 53, 569, 103, 223, 139, 113, 541, 383, 1289, 227, 479, 757,
Found in Database : 3, 7, 19, 29, 31, 37, 47, 53, 59, 83, 103, 109, 113, 131, 137, 139, 149,