Inhaltsverzeichnis

Development of
Algorithmic Constructions

00:00:06
Deutsch
20.Apr 2024

Polynom = x^2+32x-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) = 23 = 23
f(2) = 11 = 11
f(3) = 13 = 13
f(4) = 65 = 5*13
f(5) = 53 = 53
f(6) = 149 = 149
f(7) = 97 = 97
f(8) = 241 = 241
f(9) = 145 = 5*29
f(10) = 341 = 11*31
f(11) = 197 = 197
f(12) = 449 = 449
f(13) = 253 = 11*23
f(14) = 565 = 5*113
f(15) = 313 = 313
f(16) = 689 = 13*53
f(17) = 377 = 13*29
f(18) = 821 = 821
f(19) = 445 = 5*89
f(20) = 961 = 31*31
f(21) = 517 = 11*47
f(22) = 1109 = 1109
f(23) = 593 = 593
f(24) = 1265 = 5*11*23
f(25) = 673 = 673
f(26) = 1429 = 1429
f(27) = 757 = 757
f(28) = 1601 = 1601
f(29) = 845 = 5*13*13
f(30) = 1781 = 13*137
f(31) = 937 = 937
f(32) = 1969 = 11*179
f(33) = 1033 = 1033
f(34) = 2165 = 5*433
f(35) = 1133 = 11*103
f(36) = 2369 = 23*103
f(37) = 1237 = 1237
f(38) = 2581 = 29*89
f(39) = 1345 = 5*269
f(40) = 2801 = 2801
f(41) = 1457 = 31*47
f(42) = 3029 = 13*233
f(43) = 1573 = 11*11*13
f(44) = 3265 = 5*653
f(45) = 1693 = 1693
f(46) = 3509 = 11*11*29
f(47) = 1817 = 23*79
f(48) = 3761 = 3761
f(49) = 1945 = 5*389
f(50) = 4021 = 4021
f(51) = 2077 = 31*67
f(52) = 4289 = 4289
f(53) = 2213 = 2213
f(54) = 4565 = 5*11*83
f(55) = 2353 = 13*181
f(56) = 4849 = 13*373
f(57) = 2497 = 11*227
f(58) = 5141 = 53*97
f(59) = 2645 = 5*23*23
f(60) = 5441 = 5441
f(61) = 2797 = 2797
f(62) = 5749 = 5749
f(63) = 2953 = 2953
f(64) = 6065 = 5*1213
f(65) = 3113 = 11*283
f(66) = 6389 = 6389
f(67) = 3277 = 29*113
f(68) = 6721 = 11*13*47
f(69) = 3445 = 5*13*53
f(70) = 7061 = 23*307
f(71) = 3617 = 3617
f(72) = 7409 = 31*239
f(73) = 3793 = 3793
f(74) = 7765 = 5*1553
f(75) = 3973 = 29*137
f(76) = 8129 = 11*739
f(77) = 4157 = 4157
f(78) = 8501 = 8501
f(79) = 4345 = 5*11*79
f(80) = 8881 = 83*107
f(81) = 4537 = 13*349
f(82) = 9269 = 13*23*31
f(83) = 4733 = 4733
f(84) = 9665 = 5*1933
f(85) = 4933 = 4933
f(86) = 10069 = 10069
f(87) = 5137 = 11*467
f(88) = 10481 = 47*223
f(89) = 5345 = 5*1069
f(90) = 10901 = 11*991
f(91) = 5557 = 5557
f(92) = 11329 = 11329
f(93) = 5773 = 23*251
f(94) = 11765 = 5*13*181
f(95) = 5993 = 13*461
f(96) = 12209 = 29*421
f(97) = 6217 = 6217
f(98) = 12661 = 11*1151
f(99) = 6445 = 5*1289
f(100) = 13121 = 13121

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

f(0)=79
f(1)=23
f(2)=11
f(3)=13
f(4)=5
f(5)=53
f(6)=149
f(7)=97
f(8)=241
f(9)=29
f(10)=31
f(11)=197
f(12)=449
f(13)=1
f(14)=113
f(15)=313
f(16)=1
f(17)=1
f(18)=821
f(19)=89
f(20)=1
f(21)=47
f(22)=1109
f(23)=593
f(24)=1
f(25)=673
f(26)=1429
f(27)=757
f(28)=1601
f(29)=1
f(30)=137
f(31)=937
f(32)=179
f(33)=1033
f(34)=433
f(35)=103
f(36)=1
f(37)=1237
f(38)=1
f(39)=269
f(40)=2801
f(41)=1
f(42)=233
f(43)=1
f(44)=653
f(45)=1693
f(46)=1
f(47)=1
f(48)=3761
f(49)=389
f(50)=4021
f(51)=67
f(52)=4289
f(53)=2213
f(54)=83
f(55)=181
f(56)=373
f(57)=227
f(58)=1
f(59)=1
f(60)=5441
f(61)=2797
f(62)=5749
f(63)=2953
f(64)=1213
f(65)=283
f(66)=6389
f(67)=1
f(68)=1
f(69)=1
f(70)=307
f(71)=3617
f(72)=239
f(73)=3793
f(74)=1553
f(75)=1
f(76)=739
f(77)=4157
f(78)=8501
f(79)=1
f(80)=107
f(81)=349
f(82)=1
f(83)=4733
f(84)=1933
f(85)=4933
f(86)=10069
f(87)=467
f(88)=223
f(89)=1069
f(90)=991
f(91)=5557
f(92)=11329
f(93)=251
f(94)=1
f(95)=461
f(96)=421
f(97)=6217
f(98)=1151
f(99)=1289

b) Substitution of the polynom
The polynom f(x)=x^2+32x-79 could be written as f(y)= y^2-335 with x=y-16

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+16
f'(x)>2x+31

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, 23, 11, 13, 5, 53, 149, 97, 241, 29, 31, 197, 449, 1, 113, 313, 1, 1, 821, 89, 1, 47, 1109, 593, 1, 673, 1429, 757, 1601, 1, 137, 937, 179, 1033, 433, 103, 1, 1237, 1, 269, 2801, 1, 233, 1, 653, 1693, 1, 1, 3761, 389, 4021, 67, 4289, 2213, 83, 181, 373, 227, 1, 1, 5441, 2797, 5749, 2953, 1213, 283, 6389, 1, 1, 1, 307, 3617, 239, 3793, 1553, 1, 739, 4157, 8501, 1, 107, 349, 1, 4733, 1933, 4933, 10069, 467, 223, 1069, 991, 5557, 11329, 251, 1, 461, 421, 6217, 1151, 1289, 13121, 607, 127, 1, 1, 311, 14549, 569, 1, 139, 15541, 1, 1459, 263, 3313, 1, 743, 8677, 1, 1789, 1, 709, 353, 863, 3853, 337, 1, 1, 887, 2069, 20981, 967, 21569, 1, 1, 1, 22769, 1, 1, 1, 24001, 12157, 2239, 12473, 163, 1163, 1993, 1009, 26561, 2689, 167, 599, 1, 1283, 1, 1, 2659, 14797, 379, 1, 2357, 15497, 1, 191, 1, 523, 32789, 1, 33521, 3389, 34261, 17317, 2693, 1361, 1, 1, 36529, 18457, 3391, 3769, 1, 19237, 827, 677, 7933, 1, 1, 1, 41281, 1, 42101, 733, 42929, 21673, 8753, 22093, 1439, 1, 1, 1, 4211, 1, 47189, 23813, 9613, 1, 1579, 24697, 1, 1, 50741, 1, 1, 26053, 10513, 26513, 601, 509, 54421, 499, 1, 27917, 5119, 28393, 881, 2221, 58229, 947, 1117, 1, 5471, 1319, 61169, 2803, 12433, 31333, 1, 1, 4937, 6469, 577, 1, 643, 1451, 1223, 33893, 823, 271, 1, 1, 5417, 2729, 1, 36013, 631, 3323, 1567, 37097, 2411, 7529, 1, 38197, 76949, 1, 1201, 39313, 1, 39877, 2591, 8089, 1, 41017, 82609, 41593, 1523, 1, 1, 1, 2969, 8669, 87281, 829, 88469, 44533, 1, 1, 1021, 45737, 761, 1, 7177, 46957, 94529, 1, 1, 48193, 8819, 48817, 1013, 1, 4327, 50077, 7753, 1, 1, 1, 103349, 1, 1, 10529, 9631, 1, 4663, 331, 21713, 4201, 1, 1, 10111, 1, 3631, 5147, 113909, 1, 23053, 57973, 1, 58657, 1, 1, 3851, 60037, 10979, 60733, 1, 2671, 4261, 62137, 124981, 12569, 11491, 4889, 9833, 5843, 1, 1, 5683, 65717, 1, 1, 2843, 1, 135089, 1, 1, 5281, 1087, 2393, 6067, 14029, 141041, 2287, 12959, 907, 28813, 1, 145589, 1, 11317, 1, 3163, 74717, 150209, 6863, 1, 857, 1, 1, 811, 15569, 12037, 1, 5099, 79433, 2903, 80233, 1, 1, 162881, 16369, 919, 82657, 1, 6421, 1, 1, 169409, 1811, 15551, 17189, 172721, 1, 174389, 87613, 1531, 1, 1, 6869, 179441, 1, 181141, 90997, 2203, 2963, 36913, 1, 1, 1, 188021, 1453, 1327, 95317, 191509, 1, 38653, 97073, 195029, 4259, 17891, 1, 1, 9067, 15413, 7741, 40433, 101533, 203969, 102437, 1, 1879, 3917, 1, 1, 105173, 1, 8161, 1, 1039, 2087, 21589, 1, 108877, 7541, 1, 1423, 110753, 1229, 111697, 17257, 1733, 226241, 1, 1, 114553, 1, 115513, 2053, 1, 233921, 1, 1447, 9109, 1663, 1, 1, 1, 1483, 121357, 243701, 24469, 245681, 4253, 4673, 1, 1, 1, 1, 126337, 253681, 25469, 1061, 2731, 2657, 2441, 4723, 1571, 11383, 1, 20297, 26489, 265921, 1051, 9241, 134513, 54013, 12323, 8779, 5939, 1, 27529, 1, 1, 1, 139753, 56113, 140813, 1, 1, 1, 1, 4283, 1823, 289109, 11161, 4481, 146173, 2111, 1217, 295601, 29669, 1, 5153, 299969, 150533, 1, 2861, 1801, 1, 1, 1, 308801, 14087, 13523, 1609, 62653, 1, 5953, 5107, 1613, 1, 1, 1559, 1, 1, 1, 162853, 1, 163997, 1, 33029, 1, 166297, 25673, 1171, 67213, 7331, 338389, 169777, 1, 1, 343061, 15647, 3881, 173293, 6323, 13421, 1, 1, 1, 1, 354881, 178037, 32479, 179233, 71933, 1, 362069, 2711, 1, 1, 366901, 184057, 1627, 16843, 74353, 1, 34019, 6473, 2081, 1, 4799, 14629, 1, 191413, 6983, 4099, 386549, 17627, 389041, 1259, 3083, 8539, 394049, 1, 6101, 1, 1, 200177, 1, 40289, 404161, 202717, 17683, 1489, 81853, 1, 1291, 15889, 1, 3779, 13451, 1, 1, 1, 3671, 2551, 424769, 1, 427381, 1, 1, 1, 4861, 216973, 1, 9491, 437909, 7573, 1, 44189, 443221, 1, 1, 1, 1, 7757, 451249, 9839, 1, 4139, 456641, 1, 41759, 230353, 92413, 1667, 35753, 17929, 20327, 46889, 42751, 7607, 473009, 21563, 95153, 238573, 1, 239957, 481301, 1, 1619, 22067, 486869, 1, 1, 245533, 5077, 246937, 1, 49669, 498101, 10859, 1, 1, 1901, 22963, 506609, 1, 1, 1, 512321, 256877, 16619, 1, 103613, 1, 3643, 1753, 1, 52529, 526741, 3343, 529649, 9157, 1, 1949, 535489, 24407, 1, 4153, 541361, 4051, 5087, 8803, 109453, 24943, 1, 1, 50291, 55469, 556181, 1, 43013, 9043, 3877, 281833, 1, 1, 2503, 5179, 571201, 1, 19801, 287873, 1, 1, 12347, 1, 3259, 2543, 1, 1973, 2083, 295513, 3823, 2339, 5783, 1, 1, 60029, 1, 27427, 604949, 10457, 3923, 304813, 611189, 306377, 614321, 1, 47497, 1, 1, 6619, 124753, 312673, 626929, 314257, 630101, 1, 57571, 317437, 636469, 1, 1, 10343, 642869, 322237, 9643, 1, 8219, 29587, 22501, 6959, 11923, 1, 1, 25409, 662261, 1, 1, 4019, 1, 335213, 1, 1, 29363, 338497, 678641, 5233, 52457, 6449, 685249, 31223, 137713, 1, 2029, 1, 1, 1, 1, 12073, 53993, 27061, 12823, 353473, 22859, 1, 2017, 1, 1, 2003, 5171, 360233, 1, 2531, 55813, 4603, 66271, 1, 15583, 15959, 735829, 368773, 147853, 370493, 1, 12007, 57397, 1, 25849, 3511, 1, 7121, 1, 5659, 5101, 1, 1, 1, 1, 29569, 59273, 386153, 1, 387913, 777589, 8291, 71011, 1, 784661, 35747, 788209, 394993, 1, 1, 795329, 398557, 25771, 1, 8273, 402137, 1, 403933, 1951, 1, 813269, 1, 2027, 81869, 6781, 411157, 2633, 3413, 165553, 414793, 831409, 3041, 36307, 83689, 1, 2939, 3203, 422113, 15383, 1, 16033, 1, 29429, 1, 1, 429497, 78259, 33181, 1, 39383, 1, 8209, 7717, 2819, 875761, 19079, 13127, 40063, 1, 442573, 6203, 1, 10009, 89269, 894581, 4621, 898369, 19571, 1, 452033, 8467, 1, 2161, 7013, 2267, 457757, 4657, 3307, 8011, 1, 925109, 1, 1, 93089, 30091, 2447, 72053, 2777, 1, 471253, 3733, 473197, 8863, 1, 5261, 10151, 9283, 4651, 192013, 1, 2557, 1, 1, 96989, 1, 1, 4049, 488893, 1, 1, 1, 5081, 6907, 1, 4447, 1, 995669, 498833, 199933, 2999, 1, 3011, 1007681, 1, 43987, 1, 7103, 6131, 203953, 1, 5197, 512917, 11549, 1,

6. Sequence of the polynom (only primes)

79, 23, 11, 13, 5, 53, 149, 97, 241, 29, 31, 197, 449, 113, 313, 821, 89, 47, 1109, 593, 673, 1429, 757, 1601, 137, 937, 179, 1033, 433, 103, 1237, 269, 2801, 233, 653, 1693, 3761, 389, 4021, 67, 4289, 2213, 83, 181, 373, 227, 5441, 2797, 5749, 2953, 1213, 283, 6389, 307, 3617, 239, 3793, 1553, 739, 4157, 8501, 107, 349, 4733, 1933, 4933, 10069, 467, 223, 1069, 991, 5557, 11329, 251, 461, 421, 6217, 1151, 1289, 13121, 607, 127, 311, 14549, 569, 139, 15541, 1459, 263, 3313, 743, 8677, 1789, 709, 353, 863, 3853, 337, 887, 2069, 20981, 967, 21569, 22769, 24001, 12157, 2239, 12473, 163, 1163, 1993, 1009, 26561, 2689, 167, 599, 1283, 2659, 14797, 379, 2357, 15497, 191, 523, 32789, 33521, 3389, 34261, 17317, 2693, 1361, 36529, 18457, 3391, 3769, 19237, 827, 677, 7933, 41281, 42101, 733, 42929, 21673, 8753, 22093, 1439, 4211, 47189, 23813, 9613, 1579, 24697, 50741, 26053, 10513, 26513, 601, 509, 54421, 499, 27917, 5119, 28393, 881, 2221, 58229, 947, 1117, 5471, 1319, 61169, 2803, 12433, 31333, 4937, 6469, 577, 643, 1451, 1223, 33893, 823, 271, 5417, 2729, 36013, 631, 3323, 1567, 37097, 2411, 7529, 38197, 76949, 1201, 39313, 39877, 2591, 8089, 41017, 82609, 41593, 1523, 2969, 8669, 87281, 829, 88469, 44533, 1021, 45737, 761, 7177, 46957, 94529, 48193, 8819, 48817, 1013, 4327, 50077, 7753, 103349, 10529, 9631, 4663, 331, 21713, 4201, 10111, 3631, 5147, 113909, 23053, 57973, 58657, 3851, 60037, 10979, 60733, 2671, 4261, 62137, 124981, 12569, 11491, 4889, 9833, 5843, 5683, 65717, 2843, 135089, 5281, 1087, 2393, 6067, 14029, 141041, 2287, 12959, 907, 28813, 145589, 11317, 3163, 74717, 150209, 6863, 857, 811, 15569, 12037, 5099, 79433, 2903, 80233, 162881, 16369, 919, 82657, 6421, 169409, 1811, 15551, 17189, 172721, 174389, 87613, 1531, 6869, 179441, 181141, 90997, 2203, 2963, 36913, 188021, 1453, 1327, 95317, 191509, 38653, 97073, 195029, 4259, 17891, 9067, 15413, 7741, 40433, 101533, 203969, 102437, 1879, 3917, 105173, 8161, 1039, 2087, 21589, 108877, 7541, 1423, 110753, 1229, 111697, 17257, 1733, 226241, 114553, 115513, 2053, 233921, 1447, 9109, 1663, 1483, 121357, 243701, 24469, 245681, 4253, 4673, 126337, 253681, 25469, 1061, 2731, 2657, 2441, 4723, 1571, 11383, 20297, 26489, 265921, 1051, 9241, 134513, 54013, 12323, 8779, 5939, 27529, 139753, 56113, 140813, 4283, 1823, 289109, 11161, 4481, 146173, 2111, 1217, 295601, 29669, 5153, 299969, 150533, 2861, 1801, 308801, 14087, 13523, 1609, 62653, 5953, 5107, 1613, 1559, 162853, 163997, 33029, 166297, 25673, 1171, 67213, 7331, 338389, 169777, 343061, 15647, 3881, 173293, 6323, 13421, 354881, 178037, 32479, 179233, 71933, 362069, 2711, 366901, 184057, 1627, 16843, 74353, 34019, 6473, 2081, 4799, 14629, 191413, 6983, 4099, 386549, 17627, 389041, 1259, 3083, 8539, 394049, 6101, 200177, 40289, 404161, 202717, 17683, 1489, 81853, 1291, 15889, 3779, 13451, 3671, 2551, 424769, 427381, 4861, 216973, 9491, 437909, 7573, 44189, 443221, 7757, 451249, 9839, 4139, 456641, 41759, 230353, 92413, 1667, 35753, 17929, 20327, 46889, 42751, 7607, 473009, 21563, 95153, 238573, 239957, 481301, 1619, 22067, 486869, 245533, 5077, 246937, 49669, 498101, 10859, 1901, 22963, 506609, 512321, 256877, 16619, 103613, 3643, 1753, 52529, 526741, 3343, 529649, 9157, 1949, 535489, 24407, 4153, 541361, 4051, 5087, 8803, 109453, 24943, 50291, 55469, 556181, 43013, 9043, 3877, 281833, 2503, 5179, 571201, 19801, 287873, 12347, 3259, 2543, 1973, 2083, 295513, 3823, 2339, 5783, 60029, 27427, 604949, 10457, 3923, 304813, 611189, 306377, 614321, 47497, 6619, 124753, 312673, 626929, 314257, 630101, 57571, 317437, 636469, 10343, 642869, 322237, 9643, 8219, 29587, 22501, 6959, 11923, 25409, 662261, 4019, 335213, 29363, 338497, 678641, 5233, 52457, 6449, 685249, 31223, 137713, 2029, 12073, 53993, 27061, 12823, 353473, 22859, 2017, 2003, 5171, 360233, 2531, 55813, 4603, 66271, 15583, 15959, 735829, 368773, 147853, 370493, 12007, 57397, 25849, 3511, 7121, 5659, 5101, 29569, 59273, 386153, 387913, 777589, 8291, 71011, 784661, 35747, 788209, 394993, 795329, 398557, 25771, 8273, 402137, 403933, 1951, 813269, 2027, 81869, 6781, 411157, 2633, 3413, 165553, 414793, 831409, 3041, 36307, 83689, 2939, 3203, 422113, 15383, 16033, 29429, 429497, 78259, 33181, 39383, 8209, 7717, 2819, 875761, 19079, 13127, 40063, 442573, 6203, 10009, 89269, 894581, 4621, 898369, 19571, 452033, 8467, 2161, 7013, 2267, 457757, 4657, 3307, 8011, 925109, 93089, 30091, 2447, 72053, 2777, 471253, 3733, 473197, 8863, 5261, 10151, 9283, 4651, 192013, 2557, 96989, 4049, 488893, 5081, 6907, 4447, 995669, 498833, 199933, 2999, 3011, 1007681, 43987, 7103, 6131, 203953, 5197, 512917, 11549,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+32x-79 and
the reducible primes which appear as divisor for the first time
p | x^2+32x-79 and p < x^2+32x-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)
11011561.1000000.5000001.1000000.0000000.0000000.000000
21007821570.7800000.2100000.7800007.0909094.2000009.500000
31.0006951225730.6950000.1220000.6950008.9102565.80952410.052631
410.0006.9479386.0090.6947000.0938000.6947009.9956847.68852510.486911
5100.00069.7977.06462.7330.6979700.0706400.69797010.0470717.53091710.439840
61.000.000696.49757.577638.9200.6964970.0575770.6964979.9788968.15076410.184752
710.000.0006.958.922485.7346.473.1880.6958920.0485730.6958929.9913178.43625110.131454
8100.000.00069.540.4954.206.97765.333.5180.6954050.0420700.6954059.9929988.66107210.092943
91.000.000.000695.042.95337.118.496657.924.4570.6950430.0371180.6950439.9947948.82308010.070244
1010.000.000.0006.947.768.436332.208.4606.615.559.9760.6947770.0332210.6947779.9961718.94994410.055197


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
245321.2500000.7500000.5000001.6666671.5000002.000000
389541.1250000.6250000.5000001.8000001.6666672.000000
41615690.9375000.3750000.5625001.6666671.2000002.250000
5322710170.8437500.3125000.5312501.8000001.6666671.888889
6645016340.7812500.2500000.5312501.8518521.6000002.000000
71289523720.7421880.1796880.5625001.9000001.4375002.117647
8256182401420.7109380.1562500.5546881.9157891.7391301.972222
9512357682890.6972660.1328120.5644531.9615381.7000002.035211
101.0247101255850.6933590.1220700.5712891.9887961.8382352.024221
112.0481.4282271.2010.6972660.1108400.5864262.0112681.8160002.052991
124.0962.8474252.4220.6950680.1037600.5913091.9936981.8722472.016653
138.1925.6967954.9010.6953120.0970460.5982672.0007021.8705882.023534
1416.38411.3921.4249.9680.6953120.0869140.6083982.0000001.7911952.033871
1532.76822.8642.59020.2740.6977540.0790410.6187132.0070221.8188202.033909
1665.53645.6914.83840.8530.6971890.0738220.6233671.9983821.8679542.015044
17131.07291.3879.04282.3450.6972270.0689850.6282422.0001091.8689542.015641
18262.144182.79016.998165.7920.6972890.0648420.6324462.0001751.8798942.013383
19524.288365.21431.833333.3810.6965900.0607170.6358741.9979981.8727502.010839
201.048.576730.38660.125670.2610.6965500.0573400.6392111.9998851.8887632.010495
212.097.1521.460.316113.9571.346.3590.6963330.0543390.6419941.9993761.8953352.008708
224.194.3042.919.783216.3982.703.3850.6961310.0515930.6445371.9994191.8989442.007923
238.388.6085.837.446412.5525.424.8940.6958780.0491800.6466981.9992741.9064502.006704
2416.777.21611.672.291787.68510.884.6060.6957230.0469500.6487731.9995541.9092992.006418
2533.554.43223.339.9311.507.33121.832.6000.6955840.0449220.6506621.9996021.9136222.005824
2667.108.86446.672.8232.890.44343.782.3800.6954790.0430710.6524081.9996981.9175902.005367
27134.217.72893.325.1175.552.05387.773.0640.6953260.0413660.6539601.9995601.9208312.004758
28268.435.456186.625.73110.680.814175.944.9170.6952350.0397890.6554461.9997371.9237592.004543
29536.870.912373.188.96120.581.031352.607.9300.6951190.0383350.6567831.9996651.9269162.004081
301.073.741.824746.286.67539.712.401706.574.2740.6950340.0369850.6580491.9997561.9295632.003852
312.147.483.6481.492.384.94776.729.1801.415.655.7670.6949460.0357300.6592161.9997481.9321222.003548
324.294.967.2962.984.431.252148.411.9562.836.019.2960.6948670.0345550.6603121.9997731.9342312.003325
338.589.934.5925.968.223.680287.356.3625.680.867.3180.6947930.0334530.6613401.9997861.9362082.003113
3417.179.869.18411.935.255.537557.002.53411.378.253.0030.6947230.0324220.6623011.9998001.9383692.002908


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
243121101
385232111
4166243111
53210374141
664165118161
712823815101111
8256401327191191
9512681949351311
101.0241253986641591
112.0482277115611411111
124.09642514428121412091
138.19279527951639513981
1416.3841.42448593972416981
1532.7682.5908631.7271.30411.2841
1665.5364.8381.6263.2122.41512.4211
17131.0729.0423.0076.0354.53414.5061
18262.14416.9985.69211.3068.48118.5151
19524.28831.83310.60121.23215.898115.9331
201.048.57660.12520.00440.12130.061130.0621
212.097.152113.95737.73976.21856.892157.0631
224.194.304216.39871.904144.494108.1141108.2821
238.388.608412.552137.060275.492206.4941206.0561
2416.777.216787.685262.255525.430394.1441393.5391
2533.554.4321.507.331502.1431.005.188754.1391753.1901
2667.108.8642.890.443963.2811.927.1621.445.76511.444.6761
27134.217.7285.552.0531.850.0643.701.9892.777.74212.774.3091
28268.435.45610.680.8143.558.4867.122.3285.341.55015.339.2621
29536.870.91220.581.0316.858.78113.722.25010.292.895110.288.1341
301.073.741.82439.712.40113.236.30126.476.10019.861.215119.851.1841
312.147.483.64876.729.18025.574.70951.154.47138.366.551138.362.6271
324.294.967.296148.411.95649.469.22998.942.72774.206.277174.205.6771
338.589.934.592287.356.36295.785.718191.570.644143.671.7911143.684.5691
3417.179.869.184557.002.534185.676.895371.325.639278.497.3271278.505.2051


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
121010001
242110011
384221021
4169453042
532177108153
664341816122164
71287239332182914
8256142796342225226
951228916512490529948
101.02458531626917613018396
112.0481.201658543365251363222
124.0962.4221.2801.142687499719517
138.1924.9012.5622.3391.3841.0381.4361.043
1416.3849.9685.2474.7212.8382.1742.8312.125
1532.76820.27410.5779.6975.7234.3985.7164.437
1665.53640.85321.31319.54011.3478.98511.3809.141
17131.07282.34542.76739.57822.65518.27822.93318.479
18262.144165.79285.64680.14645.46737.22945.70637.390
19524.288333.381171.721161.66091.26775.38691.19075.538
201.048.576670.261345.139325.122182.493152.186182.792152.790
212.097.1521.346.359692.356654.003364.856307.664365.299308.540
224.194.3042.703.3851.388.8211.314.564730.083621.699730.329621.274
238.388.6085.424.8942.781.7262.643.1681.458.9481.252.4731.460.9351.252.538
2416.777.21610.884.6065.573.2535.311.3532.917.1312.521.7422.922.0412.523.692
2533.554.43221.832.60011.170.85910.661.7415.835.5805.077.9595.840.0265.079.035
2667.108.86443.782.38022.378.13221.404.24811.669.97210.219.25511.677.21310.215.940
27134.217.72887.773.06444.819.67242.953.39223.339.83920.548.18223.340.14520.544.898
28268.435.456175.944.91789.772.38086.172.53746.674.93941.293.85746.675.79941.300.322
29536.870.912352.607.930179.773.501172.834.42993.330.08282.959.21793.342.24782.976.384
301.073.741.824706.574.274359.979.780346.594.494186.657.616166.614.093186.664.256166.638.309
312.147.483.6481.415.655.767720.740.246694.915.521373.266.258334.548.234373.278.813334.562.462
324.294.967.2962.836.019.2961.442.983.1981.393.036.098746.450.291671.550.011746.467.274671.551.720
338.589.934.5925.680.867.3182.888.757.3302.792.109.9881.492.779.8371.347.639.3091.492.805.8071.347.642.365
3417.179.869.18411.378.253.0035.782.823.9725.595.429.0312.985.301.7462.703.840.6252.985.284.5742.703.826.058


8. Check for existing Integer Sequences by OEIS

Found in Database : 79, 23, 11, 13, 5, 53, 149, 97, 241, 29, 31, 197, 449, 1, 113, 313, 1, 1, 821, 89,
Found in Database : 79, 23, 11, 13, 5, 53, 149, 97, 241, 29, 31, 197, 449, 113, 313, 821, 89, 47, 1109, 593, 673, 1429, 757, 1601, 137, 937, 179, 1033, 433, 103, 1237, 269,
Found in Database : 5, 11, 13, 23, 29, 31, 47, 53, 67, 79, 83, 89, 97, 103, 107, 113, 127, 137, 139, 149,