Inhaltsverzeichnis

Development of
Algorithmic Constructions

04:35:54
Deutsch
20.Apr 2024

Polynom = x^2+79

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) = 79 = 79
f(1) = 5 = 5
f(2) = 83 = 83
f(3) = 11 = 11
f(4) = 95 = 5*19
f(5) = 13 = 13
f(6) = 115 = 5*23
f(7) = 1 = 1
f(8) = 143 = 11*13
f(9) = 5 = 5
f(10) = 179 = 179
f(11) = 25 = 5*5
f(12) = 223 = 223
f(13) = 31 = 31
f(14) = 275 = 5*5*11
f(15) = 19 = 19
f(16) = 335 = 5*67
f(17) = 23 = 23
f(18) = 403 = 13*31
f(19) = 55 = 5*11
f(20) = 479 = 479
f(21) = 65 = 5*13
f(22) = 563 = 563
f(23) = 19 = 19
f(24) = 655 = 5*131
f(25) = 11 = 11
f(26) = 755 = 5*151
f(27) = 101 = 101
f(28) = 863 = 863
f(29) = 115 = 5*23
f(30) = 979 = 11*89
f(31) = 65 = 5*13
f(32) = 1103 = 1103
f(33) = 73 = 73
f(34) = 1235 = 5*13*19
f(35) = 163 = 163
f(36) = 1375 = 5*5*5*11
f(37) = 181 = 181
f(38) = 1523 = 1523
f(39) = 25 = 5*5
f(40) = 1679 = 23*73
f(41) = 55 = 5*11
f(42) = 1843 = 19*97
f(43) = 241 = 241
f(44) = 2015 = 5*13*31
f(45) = 263 = 263
f(46) = 2195 = 5*439
f(47) = 143 = 11*13
f(48) = 2383 = 2383
f(49) = 155 = 5*31
f(50) = 2579 = 2579
f(51) = 335 = 5*67
f(52) = 2783 = 11*11*23
f(53) = 361 = 19*19
f(54) = 2995 = 5*599
f(55) = 97 = 97
f(56) = 3215 = 5*643
f(57) = 13 = 13
f(58) = 3443 = 11*313
f(59) = 445 = 5*89
f(60) = 3679 = 13*283
f(61) = 475 = 5*5*19
f(62) = 3923 = 3923
f(63) = 253 = 11*23
f(64) = 4175 = 5*5*167
f(65) = 269 = 269
f(66) = 4435 = 5*887
f(67) = 571 = 571
f(68) = 4703 = 4703
f(69) = 605 = 5*11*11
f(70) = 4979 = 13*383
f(71) = 5 = 5
f(72) = 5263 = 19*277
f(73) = 169 = 13*13
f(74) = 5555 = 5*11*101
f(75) = 713 = 23*31
f(76) = 5855 = 5*1171
f(77) = 751 = 751
f(78) = 6163 = 6163
f(79) = 395 = 5*79
f(80) = 6479 = 11*19*31
f(81) = 415 = 5*83
f(82) = 6803 = 6803
f(83) = 871 = 13*67
f(84) = 7135 = 5*1427
f(85) = 913 = 11*83
f(86) = 7475 = 5*5*13*23
f(87) = 239 = 239
f(88) = 7823 = 7823
f(89) = 125 = 5*5*5
f(90) = 8179 = 8179
f(91) = 1045 = 5*11*19
f(92) = 8543 = 8543
f(93) = 1091 = 1091
f(94) = 8915 = 5*1783
f(95) = 569 = 569
f(96) = 9295 = 5*11*13*13
f(97) = 593 = 593
f(98) = 9683 = 23*421
f(99) = 1235 = 5*13*19
f(100) = 10079 = 10079

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

f(0)=79
f(1)=5
f(2)=83
f(3)=11
f(4)=19
f(5)=13
f(6)=23
f(7)=1
f(8)=1
f(9)=1
f(10)=179
f(11)=1
f(12)=223
f(13)=31
f(14)=1
f(15)=1
f(16)=67
f(17)=1
f(18)=1
f(19)=1
f(20)=479
f(21)=1
f(22)=563
f(23)=1
f(24)=131
f(25)=1
f(26)=151
f(27)=101
f(28)=863
f(29)=1
f(30)=89
f(31)=1
f(32)=1103
f(33)=73
f(34)=1
f(35)=163
f(36)=1
f(37)=181
f(38)=1523
f(39)=1
f(40)=1
f(41)=1
f(42)=97
f(43)=241
f(44)=1
f(45)=263
f(46)=439
f(47)=1
f(48)=2383
f(49)=1
f(50)=2579
f(51)=1
f(52)=1
f(53)=1
f(54)=599
f(55)=1
f(56)=643
f(57)=1
f(58)=313
f(59)=1
f(60)=283
f(61)=1
f(62)=3923
f(63)=1
f(64)=167
f(65)=269
f(66)=887
f(67)=571
f(68)=4703
f(69)=1
f(70)=383
f(71)=1
f(72)=277
f(73)=1
f(74)=1
f(75)=1
f(76)=1171
f(77)=751
f(78)=6163
f(79)=1
f(80)=1
f(81)=1
f(82)=6803
f(83)=1
f(84)=1427
f(85)=1
f(86)=1
f(87)=239
f(88)=7823
f(89)=1
f(90)=8179
f(91)=1
f(92)=8543
f(93)=1091
f(94)=1783
f(95)=569
f(96)=1
f(97)=593
f(98)=421
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+79 could be written as f(y)= y^2+79 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 > 9

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

79, 5, 83, 11, 19, 13, 23, 1, 1, 1, 179, 1, 223, 31, 1, 1, 67, 1, 1, 1, 479, 1, 563, 1, 131, 1, 151, 101, 863, 1, 89, 1, 1103, 73, 1, 163, 1, 181, 1523, 1, 1, 1, 97, 241, 1, 263, 439, 1, 2383, 1, 2579, 1, 1, 1, 599, 1, 643, 1, 313, 1, 283, 1, 3923, 1, 167, 269, 887, 571, 4703, 1, 383, 1, 277, 1, 1, 1, 1171, 751, 6163, 1, 1, 1, 6803, 1, 1427, 1, 1, 239, 7823, 1, 8179, 1, 8543, 1091, 1783, 569, 1, 593, 421, 1, 10079, 257, 953, 1, 2179, 347, 1, 1, 11743, 1, 641, 1, 971, 1, 523, 1663, 2707, 1721, 1, 1, 14479, 1, 1151, 1901, 281, 1, 3191, 1013, 1, 1, 16979, 431, 761, 2221, 3607, 1, 743, 1, 1471, 1, 1789, 499, 653, 1283, 1, 1319, 389, 2711, 1, 557, 337, 1, 1, 367, 4759, 1, 1, 1, 317, 1, 25679, 1, 2393, 3331, 1, 3413, 5527, 1, 1, 1, 28979, 733, 29663, 1, 467, 1, 6211, 1, 1381, 1, 32479, 821, 33203, 1049, 617, 1, 1, 1, 35423, 1, 1, 457, 36943, 2333, 397, 433, 7699, 4861, 1, 1, 3083, 1, 40883, 1, 1, 1, 773, 2683, 487, 547, 44179, 1, 4093, 1, 1, 1447, 719, 1, 1, 1201, 48479, 1223, 49363, 1, 1, 3169, 787, 6451, 4733, 1, 1709, 1, 2837, 1699, 997, 1, 1, 1, 1, 1, 57679, 727, 1, 1, 11923, 683, 12119, 1, 61583, 1, 5689, 1, 1, 8011, 12919, 1, 1193, 4133, 66643, 1, 67679, 1, 3617, 541, 2791, 1, 1, 811, 5531, 1811, 1, 919, 6733, 4663, 15031, 9463, 1, 9601, 1, 1, 78479, 1, 3461, 911, 1, 10163, 1, 5153, 83023, 1, 84179, 1, 2753, 1, 1, 1361, 17539, 1, 88883, 2237, 1, 2267, 91283, 5743, 1423, 1, 18743, 907, 1, 2389, 96179, 1, 97423, 1, 3947, 12413, 1, 967, 101203, 1, 7883, 1289, 9433, 1, 21011, 1, 1, 1, 1, 677, 1, 2741, 1511, 1, 1, 7019, 4519, 7103, 1, 1, 115679, 2909, 117043, 1, 2153, 1861, 1, 15061, 1, 1, 122579, 1, 123983, 7793, 809, 1433, 1951, 839, 1, 1, 11789, 1, 5701, 16481, 5303, 877, 2437, 8423, 757, 1, 136979, 1, 10651, 17401, 1217, 4397, 1489, 1, 142963, 3593, 144479, 3631, 1021, 9173, 1553, 1, 1, 18731, 13693, 1, 4909, 1, 153743, 1, 31063, 1, 31379, 857, 1, 1, 160079, 2011, 161683, 1069, 2969, 1, 32983, 5179, 1, 1, 15289, 1, 169823, 1, 1, 1, 1117, 1, 2609, 4391, 7673, 1, 9377, 2797, 2767, 5647, 3301, 1, 183263, 4603, 1907, 1, 1543, 1, 1, 23663, 7607, 1, 1, 1, 193679, 1, 195443, 1, 39443, 24763, 39799, 1, 18253, 2521, 15583, 5087, 1, 1, 1, 1, 41603, 6529, 941, 1, 1, 1063, 213523, 1031, 1723, 1229, 1889, 27271, 219103, 5501, 20089, 1, 222863, 1, 1, 1, 1, 1237, 1, 1, 230479, 1, 1, 1, 46867, 1, 1, 1, 238223, 1, 12641, 6029, 22013, 30391, 48823, 15319, 1, 15443, 1187, 1, 1, 6277, 19391, 1, 1, 1993, 1, 32141, 258143, 1, 260179, 1, 1, 16453, 1, 2551, 53267, 1759, 268403, 1, 1, 1697, 272563, 1487, 1, 1, 55351, 1, 1129, 3499, 280979, 1, 2803, 35521, 57047, 1, 1, 4507, 22271, 1453, 1, 1, 26713, 18433, 1, 1, 2593, 1, 2293, 7537, 302579, 1, 4549, 1, 4723, 2027, 61843, 38791, 1231, 3907, 313679, 1, 1, 39631, 1, 1, 3373, 1, 1, 1, 324979, 1, 327263, 41051, 3469, 1879, 2141, 1601, 2213, 1, 1, 1, 338803, 1, 68227, 1, 1249, 1, 345823, 1, 26783, 1, 15241, 1, 70583, 44263, 71059, 4051, 357683, 2243, 1, 1, 1, 1, 1, 45763, 5651, 1, 33613, 4637, 372179, 1867, 19717, 4271, 15083, 1, 5839, 1, 382003, 1, 384479, 9643, 386963, 1277, 1, 24419, 1, 2137, 1, 1, 1, 1, 1, 1, 80407, 4583, 16183, 1, 1, 1, 1, 1, 1669, 51691, 82963, 4001, 7589, 3271, 1, 2633, 1, 10597, 38653, 1, 1, 2063, 86083, 1, 33311, 10859, 435679, 1, 5281, 1, 1, 6911, 1, 55621, 3121, 1, 1747, 1, 451663, 1, 1, 56963, 91411, 57301, 459763, 1, 1, 1, 5227, 58321, 1, 5333, 1, 1, 24917, 1, 1, 11939, 478943, 60041, 7411, 1, 1, 1, 487283, 1, 15809, 1, 492883, 30893, 99139, 31069, 1, 1, 501343, 12569, 38783, 1, 46093, 15889, 4079, 63913, 102547, 64271, 2467, 1, 39883, 1, 521363, 1, 104851, 65713, 1, 16519, 530063, 1, 23173, 1, 3209, 5167, 1, 33769, 1667, 1787, 544723, 2731, 49789, 13729, 1, 8627, 1, 1, 8563, 69761, 559583, 1, 562579, 1, 565583, 1, 113719, 71263, 1, 2311, 574643, 1, 1, 1, 1, 1, 1, 3181, 1, 3343, 589903, 7393, 8123, 1, 3527, 6791, 119831, 1, 5237, 18869, 5003, 15173, 3733, 1, 611603, 2017, 11177, 2963, 4943, 77431, 1, 1, 7901, 3911, 1979, 1, 6637, 1, 126739, 79411, 48991, 1, 58189, 1, 33857, 80611, 1, 81013, 11813, 10177, 652943, 4091, 5009, 1, 659423, 4349, 2039, 41519, 133187, 3793, 6899, 1, 10037, 1, 2671, 21169, 1, 2659, 136471, 6577, 1, 17183, 688979, 1, 1, 3943, 1, 1, 1, 6737, 702323, 1, 2857, 4421, 709043, 1, 12953, 3881, 143159, 44843, 719183, 9011, 1, 1, 725983, 6997, 145879, 1, 146563, 1, 736243, 1, 8311, 1, 743123, 3581, 29863, 46769, 1, 93971, 1, 1, 39841, 2371, 1, 23819, 152791, 95713, 11807, 8741, 40577, 1, 1, 1, 7703, 8861, 156307, 1, 1, 1, 71693, 1, 792179, 1, 61211, 1, 14533, 50069, 160579, 2647, 806483, 1, 810079, 20297, 62591, 1, 1, 1, 164183, 102841, 43397, 1, 75289, 1, 26833, 52103, 1, 1, 1, 3391, 4987, 5279, 9511, 1, 12689, 106501, 1, 106963, 7457, 1, 1, 10789, 864979, 1, 1, 108821, 174487, 1, 1, 1, 1, 4409, 2099, 1, 4903, 1, 13711, 55819, 9421, 112111, 1, 1, 902579, 5653, 906383, 1, 1, 114013, 182803, 8807, 917843, 11497, 3643, 2309, 925523, 115931, 1, 1, 186647, 1, 1, 5869, 72383, 2143, 41081, 6229, 6121, 59419, 17321, 59663, 1997, 1, 73883, 24061, 1, 1, 10193, 15161, 38891, 11071, 2459, 1, 980179, 12277, 51797, 1, 2381, 5381, 15263, 1, 1, 3119,

6. Sequence of the polynom (only primes)

79, 5, 83, 11, 19, 13, 23, 179, 223, 31, 67, 479, 563, 131, 151, 101, 863, 89, 1103, 73, 163, 181, 1523, 97, 241, 263, 439, 2383, 2579, 599, 643, 313, 283, 3923, 167, 269, 887, 571, 4703, 383, 277, 1171, 751, 6163, 6803, 1427, 239, 7823, 8179, 8543, 1091, 1783, 569, 593, 421, 10079, 257, 953, 2179, 347, 11743, 641, 971, 523, 1663, 2707, 1721, 14479, 1151, 1901, 281, 3191, 1013, 16979, 431, 761, 2221, 3607, 743, 1471, 1789, 499, 653, 1283, 1319, 389, 2711, 557, 337, 367, 4759, 317, 25679, 2393, 3331, 3413, 5527, 28979, 733, 29663, 467, 6211, 1381, 32479, 821, 33203, 1049, 617, 35423, 457, 36943, 2333, 397, 433, 7699, 4861, 3083, 40883, 773, 2683, 487, 547, 44179, 4093, 1447, 719, 1201, 48479, 1223, 49363, 3169, 787, 6451, 4733, 1709, 2837, 1699, 997, 57679, 727, 11923, 683, 12119, 61583, 5689, 8011, 12919, 1193, 4133, 66643, 67679, 3617, 541, 2791, 811, 5531, 1811, 919, 6733, 4663, 15031, 9463, 9601, 78479, 3461, 911, 10163, 5153, 83023, 84179, 2753, 1361, 17539, 88883, 2237, 2267, 91283, 5743, 1423, 18743, 907, 2389, 96179, 97423, 3947, 12413, 967, 101203, 7883, 1289, 9433, 21011, 677, 2741, 1511, 7019, 4519, 7103, 115679, 2909, 117043, 2153, 1861, 15061, 122579, 123983, 7793, 809, 1433, 1951, 839, 11789, 5701, 16481, 5303, 877, 2437, 8423, 757, 136979, 10651, 17401, 1217, 4397, 1489, 142963, 3593, 144479, 3631, 1021, 9173, 1553, 18731, 13693, 4909, 153743, 31063, 31379, 857, 160079, 2011, 161683, 1069, 2969, 32983, 5179, 15289, 169823, 1117, 2609, 4391, 7673, 9377, 2797, 2767, 5647, 3301, 183263, 4603, 1907, 1543, 23663, 7607, 193679, 195443, 39443, 24763, 39799, 18253, 2521, 15583, 5087, 41603, 6529, 941, 1063, 213523, 1031, 1723, 1229, 1889, 27271, 219103, 5501, 20089, 222863, 1237, 230479, 46867, 238223, 12641, 6029, 22013, 30391, 48823, 15319, 15443, 1187, 6277, 19391, 1993, 32141, 258143, 260179, 16453, 2551, 53267, 1759, 268403, 1697, 272563, 1487, 55351, 1129, 3499, 280979, 2803, 35521, 57047, 4507, 22271, 1453, 26713, 18433, 2593, 2293, 7537, 302579, 4549, 4723, 2027, 61843, 38791, 1231, 3907, 313679, 39631, 3373, 324979, 327263, 41051, 3469, 1879, 2141, 1601, 2213, 338803, 68227, 1249, 345823, 26783, 15241, 70583, 44263, 71059, 4051, 357683, 2243, 45763, 5651, 33613, 4637, 372179, 1867, 19717, 4271, 15083, 5839, 382003, 384479, 9643, 386963, 1277, 24419, 2137, 80407, 4583, 16183, 1669, 51691, 82963, 4001, 7589, 3271, 2633, 10597, 38653, 2063, 86083, 33311, 10859, 435679, 5281, 6911, 55621, 3121, 1747, 451663, 56963, 91411, 57301, 459763, 5227, 58321, 5333, 24917, 11939, 478943, 60041, 7411, 487283, 15809, 492883, 30893, 99139, 31069, 501343, 12569, 38783, 46093, 15889, 4079, 63913, 102547, 64271, 2467, 39883, 521363, 104851, 65713, 16519, 530063, 23173, 3209, 5167, 33769, 1667, 1787, 544723, 2731, 49789, 13729, 8627, 8563, 69761, 559583, 562579, 565583, 113719, 71263, 2311, 574643, 3181, 3343, 589903, 7393, 8123, 3527, 6791, 119831, 5237, 18869, 5003, 15173, 3733, 611603, 2017, 11177, 2963, 4943, 77431, 7901, 3911, 1979, 6637, 126739, 79411, 48991, 58189, 33857, 80611, 81013, 11813, 10177, 652943, 4091, 5009, 659423, 4349, 2039, 41519, 133187, 3793, 6899, 10037, 2671, 21169, 2659, 136471, 6577, 17183, 688979, 3943, 6737, 702323, 2857, 4421, 709043, 12953, 3881, 143159, 44843, 719183, 9011, 725983, 6997, 145879, 146563, 736243, 8311, 743123, 3581, 29863, 46769, 93971, 39841, 2371, 23819, 152791, 95713, 11807, 8741, 40577, 7703, 8861, 156307, 71693, 792179, 61211, 14533, 50069, 160579, 2647, 806483, 810079, 20297, 62591, 164183, 102841, 43397, 75289, 26833, 52103, 3391, 4987, 5279, 9511, 12689, 106501, 106963, 7457, 10789, 864979, 108821, 174487, 4409, 2099, 4903, 13711, 55819, 9421, 112111, 902579, 5653, 906383, 114013, 182803, 8807, 917843, 11497, 3643, 2309, 925523, 115931, 186647, 5869, 72383, 2143, 41081, 6229, 6121, 59419, 17321, 59663, 1997, 73883, 24061, 10193, 15161, 38891, 11071, 2459, 980179, 12277, 51797, 2381, 5381, 15263, 3119,

7. Distribution of the primes

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

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)
1108620.8000000.6000000.8000000.0000000.0000000.000000
21005636200.5600000.3600000.5600007.0000006.00000010.000000
31.0006102413690.6100000.2410000.61000010.8928586.69444518.450001
410.0006.3281.6574.6710.6328000.1657000.63280010.3737716.87551912.658537
5100.00064.75212.43552.3170.6475200.1243500.64752010.2326177.50452611.200385
61.000.000655.343100.100555.2430.6553430.1001000.65534310.1208158.04985910.613051
710.000.0006.609.936838.4125.771.5240.6609940.0838410.66099410.0862248.37574410.394591
8100.000.00066.510.0747.216.17159.293.9030.6651010.0721620.66510110.0621368.60695110.273526
91.000.000.000668.234.49863.345.429604.889.0690.6682340.0633450.66823410.0471178.77826010.201539
1010.000.000.0006.707.575.513564.452.9226.143.122.5910.6707580.0564450.67075810.0377578.91071310.155784


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)
123301.5000001.5000000.0000000.0000000.0000000.000000
245411.2500001.0000000.2500001.6666671.333333inf
387520.8750000.6250000.2500001.4000001.2500002.000000
41611830.6875000.5000000.1875001.5714291.6000001.500000
532191360.5937500.4062500.1875001.7272731.6250002.000000
6643522130.5468750.3437500.2031251.8421051.6923082.166667
71287343300.5703120.3359380.2343752.0857141.9545452.307692
825614873750.5781250.2851560.2929692.0273971.6976742.500000
95123041371670.5937500.2675780.3261722.0540541.8767122.226667
101.0246252443810.6103520.2382810.3720702.0559211.7810222.281437
112.0481.2584408180.6142580.2148440.3994142.0128001.8032792.146982
124.0962.5517921.7590.6228030.1933590.4294432.0278221.8000002.150367
138.1925.1801.4153.7650.6323240.1727290.4595952.0305761.7866162.140421
1416.38410.4582.5337.9250.6383060.1546020.4837042.0189191.7901062.104914
1532.76821.0424.60316.4390.6421510.1404720.5016782.0120481.8172132.074322
1665.53642.3288.51733.8110.6458740.1299590.5159152.0115961.8503152.056755
17131.07285.02815.87069.1580.6487120.1210780.5276342.0087891.8633322.045429
18262.144170.66729.641141.0260.6510430.1130710.5379712.0071861.8677382.039186
19524.288342.62355.467287.1560.6535020.1057950.5477072.0075531.8712932.036192
201.048.576687.323104.525582.7980.6554820.0996830.5557992.0060621.8844542.029552
212.097.1521.378.852197.5691.181.2830.6574880.0942080.5632802.0061191.8901602.026917
224.194.3042.764.591374.6362.389.9550.6591300.0893200.5698102.0049951.8962292.023186
238.388.6085.540.926712.4944.828.4320.6605300.0849360.5755942.0042481.9018302.020303
2416.777.21611.106.4851.357.2069.749.2790.6619980.0808960.5811022.0044461.9048672.019140
2533.554.43222.256.5882.592.90919.663.6790.6632980.0772750.5860232.0039271.9104762.016937
2667.108.86444.589.7844.962.74739.627.0370.6644400.0739510.5904892.0034421.9139692.015240
27134.217.72889.326.2169.515.34679.810.8700.6655320.0708950.5946372.0032891.9173552.014051
28268.435.456178.919.99418.277.030160.642.9640.6665290.0680870.5984422.0029951.9207952.012795
29536.870.912358.335.75535.165.559323.170.1960.6674520.0655010.6019512.0027711.9240302.011730
301.073.741.824717.604.72667.760.732649.843.9940.6683210.0631070.6052142.0026041.9269062.010841
312.147.483.6481.436.952.802130.718.1111.306.234.6910.6691330.0608700.6082632.0024291.9291132.010074
324.294.967.2962.877.169.934252.524.6282.624.645.3060.6698930.0587950.6110982.0022721.9318262.009321
338.589.934.5925.760.465.472488.371.7885.272.093.6840.6706060.0568540.6137522.0021291.9339572.008688
3417.179.869.18411.532.449.206945.549.73210.586.899.4740.6712770.0550380.6162392.0019991.9361272.008101
3534.359.738.36823.086.587.0341.832.568.24621.254.018.7880.6719080.0533350.6185732.0018811.9380982.007577
3668.719.476.73646.214.149.2273.555.153.93642.658.995.2910.6725040.0517340.6207702.0017751.9399852.007102


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
123120111
244130211
385230221
4168440323
53213490436
664229132848
7128431627514717
82567331427261129
9512137597815462056
101.02424411413031933288
112.0484401952454916160170
124.09679236043297287105303
138.1921.415643772194515191515
1416.3842.5331.1591.374346911341935
1532.7684.6032.0852.5186131.6876241.679
1665.5368.5173.8934.6241.1343.1061.1493.128
17131.07215.8707.1308.7402.1585.7922.1165.804
18262.14429.64113.36216.2793.99410.8673.91710.863
19524.28855.46725.10030.3677.38620.4027.34220.337
201.048.576104.52547.33057.19513.88638.40713.79438.438
212.097.152197.56988.956108.61326.17672.69225.97572.726
224.194.304374.636168.547206.08949.178138.13649.101138.221
238.388.608712.494320.430392.06493.235262.65793.508263.094
2416.777.2161.357.206610.126747.080177.468500.930177.607501.201
2533.554.4322.592.9091.163.1181.429.791338.348957.861338.549958.151
2667.108.8644.962.7472.225.6072.737.140647.0991.835.262646.5921.833.794
27134.217.7289.515.3464.265.9375.249.4091.238.3823.520.0351.239.3933.517.536
28268.435.45618.277.0308.192.02010.085.0102.375.3236.763.7622.376.2246.761.721
29536.870.91235.165.55915.755.22319.410.3364.562.41413.019.4644.565.17613.018.505
301.073.741.82467.760.73230.346.17837.414.5548.782.15525.098.1768.781.47525.098.926
312.147.483.648130.718.11158.530.42472.187.68716.922.48548.433.98516.922.77048.438.871
324.294.967.296252.524.628113.033.797139.490.83132.646.66093.610.43332.654.63593.612.900
338.589.934.592488.371.788218.547.028269.824.76063.063.616181.116.37263.079.896181.111.904
3417.179.869.184945.549.732423.036.380522.513.352121.978.782350.791.460122.003.029350.776.461
3534.359.738.3681.832.568.246819.701.0751.012.867.171236.194.704680.091.048236.208.155680.074.339
3668.719.476.7363.555.153.9361.589.900.7471.965.253.189457.793.2001.319.786.001457.827.7691.319.746.966


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
241100100
382110101
4163210201
5326331302
66413853505
7128301515711210
825675393616201722
9512167838437394348
101.024381194187809596110
112.048818414404186218192222
124.0961.759906853410478413458
138.1923.7651.9131.852884989921971
1416.3847.9254.0083.9171.8942.0351.9552.041
1532.76816.4398.3368.1033.9564.2594.0334.191
1665.53633.81117.08716.7248.3338.6368.3218.521
17131.07269.15834.86834.29017.07717.68217.10217.297
18262.144141.02671.24269.78434.75535.95534.76835.548
19524.288287.156144.672142.48470.78773.06070.52372.786
201.048.576582.798293.677289.121143.943147.652143.251147.952
212.097.1521.181.283594.851586.432291.808299.438290.913299.124
224.194.3042.389.9551.203.4971.186.458590.474604.982589.945604.554
238.388.6084.828.4322.430.5042.397.9281.193.4861.221.3131.192.2421.221.391
2416.777.2169.749.2794.906.1384.843.1412.409.4782.465.2852.409.2822.465.234
2533.554.43219.663.6799.892.5879.771.0924.864.9184.966.9304.863.2914.968.540
2667.108.86439.627.03719.925.38519.701.6529.807.70010.004.8899.805.47010.008.978
27134.217.72879.810.87040.119.67039.691.20019.761.81020.143.72719.755.94620.149.387
28268.435.456160.642.96480.731.19979.911.76539.787.86740.534.71539.782.73540.537.647
29536.870.912323.170.196162.372.463160.797.73380.065.24481.522.12180.059.83381.522.998
301.073.741.824649.843.994326.451.670323.392.324161.058.963163.864.116161.049.024163.871.891
312.147.483.6481.306.234.691656.083.333650.151.358323.845.585329.275.740323.829.261329.284.105
324.294.967.2962.624.645.3061.318.060.2311.306.585.075650.871.671661.464.229650.880.467661.428.939
338.589.934.5925.272.093.6842.647.148.6052.624.945.0791.307.741.3821.328.278.0101.307.822.3661.328.251.926
3417.179.869.18410.586.899.4745.315.020.0985.271.879.3762.626.765.4832.666.656.7722.626.824.1292.666.653.090
3534.359.738.36821.254.018.78810.668.840.44710.585.178.3415.274.728.2455.352.282.9015.274.815.1455.352.192.497
3668.719.476.73642.658.995.29121.410.597.60421.248.397.68710.589.337.45310.740.126.03210.589.501.83810.740.029.968


8. Check for existing Integer Sequences by OEIS

Found in Database : 79, 5, 83, 11, 19, 13, 23, 1, 1, 1, 179, 1, 223, 31, 1, 1, 67, 1, 1, 1,
Found in Database : 79, 5, 83, 11, 19, 13, 23, 179, 223, 31, 67, 479, 563, 131, 151, 101, 863, 89, 1103, 73, 163, 181, 1523,
Found in Database : 5, 11, 13, 19, 23, 31, 67, 73, 79, 83, 89, 97, 101, 131,