Inhaltsverzeichnis

Development of
Algorithmic Constructions

13:48:17
Deutsch
20.Apr 2024

Polynom = x^2+21x-5

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) = 5 = 5
f(1) = 17 = 17
f(2) = 41 = 41
f(3) = 67 = 67
f(4) = 95 = 5*19
f(5) = 125 = 5*5*5
f(6) = 157 = 157
f(7) = 191 = 191
f(8) = 227 = 227
f(9) = 265 = 5*53
f(10) = 305 = 5*61
f(11) = 347 = 347
f(12) = 391 = 17*23
f(13) = 437 = 19*23
f(14) = 485 = 5*97
f(15) = 535 = 5*107
f(16) = 587 = 587
f(17) = 641 = 641
f(18) = 697 = 17*41
f(19) = 755 = 5*151
f(20) = 815 = 5*163
f(21) = 877 = 877
f(22) = 941 = 941
f(23) = 1007 = 19*53
f(24) = 1075 = 5*5*43
f(25) = 1145 = 5*229
f(26) = 1217 = 1217
f(27) = 1291 = 1291
f(28) = 1367 = 1367
f(29) = 1445 = 5*17*17
f(30) = 1525 = 5*5*61
f(31) = 1607 = 1607
f(32) = 1691 = 19*89
f(33) = 1777 = 1777
f(34) = 1865 = 5*373
f(35) = 1955 = 5*17*23
f(36) = 2047 = 23*89
f(37) = 2141 = 2141
f(38) = 2237 = 2237
f(39) = 2335 = 5*467
f(40) = 2435 = 5*487
f(41) = 2537 = 43*59
f(42) = 2641 = 19*139
f(43) = 2747 = 41*67
f(44) = 2855 = 5*571
f(45) = 2965 = 5*593
f(46) = 3077 = 17*181
f(47) = 3191 = 3191
f(48) = 3307 = 3307
f(49) = 3425 = 5*5*137
f(50) = 3545 = 5*709
f(51) = 3667 = 19*193
f(52) = 3791 = 17*223
f(53) = 3917 = 3917
f(54) = 4045 = 5*809
f(55) = 4175 = 5*5*167
f(56) = 4307 = 59*73
f(57) = 4441 = 4441
f(58) = 4577 = 23*199
f(59) = 4715 = 5*23*41
f(60) = 4855 = 5*971
f(61) = 4997 = 19*263
f(62) = 5141 = 53*97
f(63) = 5287 = 17*311
f(64) = 5435 = 5*1087
f(65) = 5585 = 5*1117
f(66) = 5737 = 5737
f(67) = 5891 = 43*137
f(68) = 6047 = 6047
f(69) = 6205 = 5*17*73
f(70) = 6365 = 5*19*67
f(71) = 6527 = 61*107
f(72) = 6691 = 6691
f(73) = 6857 = 6857
f(74) = 7025 = 5*5*281
f(75) = 7195 = 5*1439
f(76) = 7367 = 53*139
f(77) = 7541 = 7541
f(78) = 7717 = 7717
f(79) = 7895 = 5*1579
f(80) = 8075 = 5*5*17*19
f(81) = 8257 = 23*359
f(82) = 8441 = 23*367
f(83) = 8627 = 8627
f(84) = 8815 = 5*41*43
f(85) = 9005 = 5*1801
f(86) = 9197 = 17*541
f(87) = 9391 = 9391
f(88) = 9587 = 9587
f(89) = 9785 = 5*19*103
f(90) = 9985 = 5*1997
f(91) = 10187 = 61*167
f(92) = 10391 = 10391
f(93) = 10597 = 10597
f(94) = 10805 = 5*2161
f(95) = 11015 = 5*2203
f(96) = 11227 = 103*109
f(97) = 11441 = 17*673
f(98) = 11657 = 11657
f(99) = 11875 = 5*5*5*5*19
f(100) = 12095 = 5*41*59

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+21x-5

f(0)=5
f(1)=17
f(2)=41
f(3)=67
f(4)=19
f(5)=1
f(6)=157
f(7)=191
f(8)=227
f(9)=53
f(10)=61
f(11)=347
f(12)=23
f(13)=1
f(14)=97
f(15)=107
f(16)=587
f(17)=641
f(18)=1
f(19)=151
f(20)=163
f(21)=877
f(22)=941
f(23)=1
f(24)=43
f(25)=229
f(26)=1217
f(27)=1291
f(28)=1367
f(29)=1
f(30)=1
f(31)=1607
f(32)=89
f(33)=1777
f(34)=373
f(35)=1
f(36)=1
f(37)=2141
f(38)=2237
f(39)=467
f(40)=487
f(41)=59
f(42)=139
f(43)=1
f(44)=571
f(45)=593
f(46)=181
f(47)=3191
f(48)=3307
f(49)=137
f(50)=709
f(51)=193
f(52)=223
f(53)=3917
f(54)=809
f(55)=167
f(56)=73
f(57)=4441
f(58)=199
f(59)=1
f(60)=971
f(61)=263
f(62)=1
f(63)=311
f(64)=1087
f(65)=1117
f(66)=5737
f(67)=1
f(68)=6047
f(69)=1
f(70)=1
f(71)=1
f(72)=6691
f(73)=6857
f(74)=281
f(75)=1439
f(76)=1
f(77)=7541
f(78)=7717
f(79)=1579
f(80)=1
f(81)=359
f(82)=367
f(83)=8627
f(84)=1
f(85)=1801
f(86)=541
f(87)=9391
f(88)=9587
f(89)=103
f(90)=1997
f(91)=1
f(92)=10391
f(93)=10597
f(94)=2161
f(95)=2203
f(96)=109
f(97)=673
f(98)=11657
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+21x-5 could be written as f(y)= y^2-115.25 with x=y-10.5

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+10.5
f'(x)>2x+20

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

5, 17, 41, 67, 19, 1, 157, 191, 227, 53, 61, 347, 23, 1, 97, 107, 587, 641, 1, 151, 163, 877, 941, 1, 43, 229, 1217, 1291, 1367, 1, 1, 1607, 89, 1777, 373, 1, 1, 2141, 2237, 467, 487, 59, 139, 1, 571, 593, 181, 3191, 3307, 137, 709, 193, 223, 3917, 809, 167, 73, 4441, 199, 1, 971, 263, 1, 311, 1087, 1117, 5737, 1, 6047, 1, 1, 1, 6691, 6857, 281, 1439, 1, 7541, 7717, 1579, 1, 359, 367, 8627, 1, 1801, 541, 9391, 9587, 103, 1997, 1, 10391, 10597, 2161, 2203, 109, 673, 11657, 1, 1, 113, 12541, 751, 1, 1, 13457, 13691, 733, 2833, 1, 1, 14891, 15137, 1, 1, 15887, 16141, 863, 3331, 1, 1, 1, 17707, 719, 1, 18517, 1, 829, 1, 1, 1171, 331, 20477, 4153, 4211, 21347, 1, 21937, 4447, 4507, 557, 317, 23447, 4751, 4813, 1283, 24691, 1471, 1013, 1, 1129, 431, 619, 1, 1091, 1453, 27941, 28277, 1, 5791, 29297, 29641, 1, 6067, 1, 757, 31391, 599, 6421, 1, 1931, 33191, 1459, 1, 1, 34667, 523, 1, 7159, 1447, 1, 1, 1, 397, 7621, 1, 38891, 2311, 7937, 8017, 40487, 1, 677, 439, 8423, 1, 1867, 1, 1, 8839, 44617, 617, 2393, 1, 1, 46757, 1151, 491, 9613, 1, 48947, 49391, 1, 1, 1, 3011, 457, 883, 1, 461, 1009, 1, 1327, 1, 11069, 55817, 1, 56767, 1, 2309, 58207, 3089, 1, 11933, 1, 60647, 61141, 61637, 1, 12527, 3323, 2767, 2789, 1, 13033, 65677, 66191, 1627, 2689, 797, 3593, 68791, 69317, 1, 563, 1, 1, 1, 14503, 769, 73597, 1, 74687, 1, 659, 3319, 4523, 77447, 15601, 827, 1181, 79691, 4721, 1, 1, 81967, 1399, 83117, 881, 3371, 84857, 1987, 86027, 1019, 1, 87797, 1, 1, 1, 1061, 90787, 1549, 91997, 18521, 1, 93827, 94441, 5003, 1, 19259, 5701, 947, 1103, 19759, 1, 100057, 5923, 5333, 20393, 20521, 1, 4517, 104537, 1, 1, 106487, 5639, 1, 1, 1, 727, 110441, 811, 1, 1, 113117, 1, 114467, 23029, 1, 116507, 117191, 117877, 1031, 1, 1, 120641, 1811, 24407, 24547, 1, 2887, 124847, 25111, 25253, 1, 127691, 1759, 1033, 25969, 2213, 7723, 1361, 1, 1, 134207, 5867, 1, 27283, 27431, 1889, 138641, 139387, 28027, 1483, 141637, 142391, 3329, 1693, 28933, 3547, 146191, 1, 1, 1747, 2447, 150041, 2251, 30319, 1, 6659, 153941, 154727, 1637, 1, 9241, 3851, 1783, 1, 32057, 161087, 1, 8563, 1, 1, 2707, 165941, 1619, 6703, 33679, 169217, 1753, 1, 1493, 1, 173357, 1, 967, 2069, 1, 4129, 1, 1187, 36017, 36187, 181787, 182641, 183497, 36871, 2179, 2549, 9839, 1723, 7547, 1, 1, 8317, 1, 38609, 7757, 10253, 195691, 3709, 1, 39671, 199247, 1, 201037, 40387, 1, 10723, 204641, 1, 1, 1, 208277, 3947, 1289, 1, 1, 212867, 213791, 5237, 1, 8663, 1093, 3581, 219377, 1, 1, 222197, 983, 1, 45007, 45197, 226937, 1, 228847, 1, 46153, 1, 1, 10159, 1877, 47119, 1307, 1, 1741, 2521, 9619, 2713, 242441, 1063, 48883, 49081, 4649, 247391, 1, 49877, 50077, 251387, 252391, 1823, 1, 2221, 11149, 5987, 1, 1, 1, 2539, 262541, 263567, 52919, 1, 1, 1, 2609, 1, 1321, 15991, 4073, 4643, 1279, 55207, 277087, 14639, 1, 2437, 56263, 282377, 16673, 284507, 11423, 57329, 1, 1, 1, 58189, 11681, 293107, 2699, 295277, 59273, 1451, 1, 2749, 1, 1, 1409, 13219, 13267, 306247, 61471, 1, 309577, 3203, 311807, 12517, 1, 7687, 316291, 1, 63709, 1, 1, 7487, 323077, 1, 65071, 326497, 19273, 328787, 1, 2879, 3733, 4567, 334547, 67141, 1, 338027, 5749, 20021, 1, 68539, 8387, 345041, 346217, 1, 1, 1, 350941, 1, 70663, 70901, 355697, 1, 15569, 1, 4241, 361687, 1, 19163, 73061, 73303, 1, 2693, 2663, 2971, 1733, 2381, 19739, 1, 1, 15149, 1, 1319, 382427, 76733, 3347, 1, 20389, 22861, 77977, 1, 1, 9601, 394897, 79231, 1303, 20983, 399941, 2657, 1, 80749, 9419, 1, 407567, 81769, 1, 1, 2969, 1, 1, 83311, 1487, 419141, 1, 84347, 1, 1, 425641, 9929, 1, 1621, 1, 25423, 433507, 17393, 4591, 437467, 1933, 6029, 88289, 1, 19309, 1, 1, 1, 89891, 450797, 1, 1, 5351, 91237, 4049, 458891, 460247, 1, 92593, 464327, 2857, 6971, 1, 5527, 1, 472541, 24943, 4133, 1, 1, 479441, 480827, 96443, 1, 11279, 486391, 25673, 1, 1663, 1, 29023, 5101, 99241, 99523, 499027, 26339, 1, 1, 1, 8297, 22067, 22129, 102079, 1, 513257, 1, 516127, 6089, 103801, 520447, 1, 1, 1, 1, 27773, 2659, 530597, 106411, 106703, 2399, 536441, 3221, 1, 4703, 1, 543791, 545267, 2543, 21929, 549707, 32423, 552677, 1, 5849, 2917, 4019, 560137, 112327, 1, 5821, 9281, 33391, 1, 6007, 572177, 573691, 1, 1, 1, 10939, 4243, 1, 6151, 1, 14327, 588941, 3761, 1, 6983, 595097, 9781, 598187, 1, 2269, 35461, 1, 605947, 121501, 1, 1, 1, 32303, 1, 123379, 1951, 36473, 621617, 1, 1, 15277, 5557, 1949, 126223, 126541, 8689, 635891, 2011, 127817, 1, 4091, 33889, 645497, 1, 5641, 650327, 15901, 15199, 1, 7727, 658417, 34739, 10847, 2503, 26597, 666557, 9973, 11353, 134293, 1, 2089, 676391, 678037, 135937, 3169, 1861, 1, 1, 1, 1, 36383, 16901, 1, 27851, 139589, 699617, 701291, 41351, 140929, 1, 708007, 709691, 7993, 8389, 1, 716447, 8069, 1, 144307, 1, 1, 726641, 1, 146011, 8609, 733477, 10973, 1, 1, 1, 43651, 743791, 745517, 1, 29959, 750707, 14197, 17539, 1, 151531, 759397, 44773, 1, 1, 153277, 5087, 13049, 2389, 154681, 1, 1, 10667, 780457, 1, 156799, 5653, 787541, 41543, 1, 6343, 794657, 13499, 798227, 1, 9433, 34939, 1, 807187, 1, 1, 812587, 7207, 4229, 163601, 1, 2843, 2281, 1, 33083, 165779, 19319, 48973, 834367, 4079, 33521, 44203, 841691, 843527, 7351, 1, 849047, 850891, 1, 2551, 1, 1, 3061, 861997, 10163, 1, 867577, 9769, 1, 1, 1, 1, 1, 880667, 176509, 2081, 886307, 1, 38699, 178393, 1, 52691, 5507, 899537, 180287, 180667, 1, 907141, 909047, 1, 1, 914777, 53923, 5851, 36821, 184489, 5107, 1, 54601, 9791, 1, 40609, 1, 937877, 187963, 188351, 23017, 4951, 1, 11171, 190297, 953437, 955391, 8783, 191861, 1, 963227, 965191, 1, 7753, 1, 973067, 18397, 1, 8513, 39239, 1, 51839, 986927, 2039, 3359, 1, 1, 996887, 199777, 200177, 1002887, 52889, 1006897, 201781, 202183, 3257, 1014941, 1, 40759,

6. Sequence of the polynom (only primes)

5, 17, 41, 67, 19, 157, 191, 227, 53, 61, 347, 23, 97, 107, 587, 641, 151, 163, 877, 941, 43, 229, 1217, 1291, 1367, 1607, 89, 1777, 373, 2141, 2237, 467, 487, 59, 139, 571, 593, 181, 3191, 3307, 137, 709, 193, 223, 3917, 809, 167, 73, 4441, 199, 971, 263, 311, 1087, 1117, 5737, 6047, 6691, 6857, 281, 1439, 7541, 7717, 1579, 359, 367, 8627, 1801, 541, 9391, 9587, 103, 1997, 10391, 10597, 2161, 2203, 109, 673, 11657, 113, 12541, 751, 13457, 13691, 733, 2833, 14891, 15137, 15887, 16141, 863, 3331, 17707, 719, 18517, 829, 1171, 331, 20477, 4153, 4211, 21347, 21937, 4447, 4507, 557, 317, 23447, 4751, 4813, 1283, 24691, 1471, 1013, 1129, 431, 619, 1091, 1453, 27941, 28277, 5791, 29297, 29641, 6067, 757, 31391, 599, 6421, 1931, 33191, 1459, 34667, 523, 7159, 1447, 397, 7621, 38891, 2311, 7937, 8017, 40487, 677, 439, 8423, 1867, 8839, 44617, 617, 2393, 46757, 1151, 491, 9613, 48947, 49391, 3011, 457, 883, 461, 1009, 1327, 11069, 55817, 56767, 2309, 58207, 3089, 11933, 60647, 61141, 61637, 12527, 3323, 2767, 2789, 13033, 65677, 66191, 1627, 2689, 797, 3593, 68791, 69317, 563, 14503, 769, 73597, 74687, 659, 3319, 4523, 77447, 15601, 827, 1181, 79691, 4721, 81967, 1399, 83117, 881, 3371, 84857, 1987, 86027, 1019, 87797, 1061, 90787, 1549, 91997, 18521, 93827, 94441, 5003, 19259, 5701, 947, 1103, 19759, 100057, 5923, 5333, 20393, 20521, 4517, 104537, 106487, 5639, 727, 110441, 811, 113117, 114467, 23029, 116507, 117191, 117877, 1031, 120641, 1811, 24407, 24547, 2887, 124847, 25111, 25253, 127691, 1759, 1033, 25969, 2213, 7723, 1361, 134207, 5867, 27283, 27431, 1889, 138641, 139387, 28027, 1483, 141637, 142391, 3329, 1693, 28933, 3547, 146191, 1747, 2447, 150041, 2251, 30319, 6659, 153941, 154727, 1637, 9241, 3851, 1783, 32057, 161087, 8563, 2707, 165941, 1619, 6703, 33679, 169217, 1753, 1493, 173357, 967, 2069, 4129, 1187, 36017, 36187, 181787, 182641, 183497, 36871, 2179, 2549, 9839, 1723, 7547, 8317, 38609, 7757, 10253, 195691, 3709, 39671, 199247, 201037, 40387, 10723, 204641, 208277, 3947, 1289, 212867, 213791, 5237, 8663, 1093, 3581, 219377, 222197, 983, 45007, 45197, 226937, 228847, 46153, 10159, 1877, 47119, 1307, 1741, 2521, 9619, 2713, 242441, 1063, 48883, 49081, 4649, 247391, 49877, 50077, 251387, 252391, 1823, 2221, 11149, 5987, 2539, 262541, 263567, 52919, 2609, 1321, 15991, 4073, 4643, 1279, 55207, 277087, 14639, 2437, 56263, 282377, 16673, 284507, 11423, 57329, 58189, 11681, 293107, 2699, 295277, 59273, 1451, 2749, 1409, 13219, 13267, 306247, 61471, 309577, 3203, 311807, 12517, 7687, 316291, 63709, 7487, 323077, 65071, 326497, 19273, 328787, 2879, 3733, 4567, 334547, 67141, 338027, 5749, 20021, 68539, 8387, 345041, 346217, 350941, 70663, 70901, 355697, 15569, 4241, 361687, 19163, 73061, 73303, 2693, 2663, 2971, 1733, 2381, 19739, 15149, 1319, 382427, 76733, 3347, 20389, 22861, 77977, 9601, 394897, 79231, 1303, 20983, 399941, 2657, 80749, 9419, 407567, 81769, 2969, 83311, 1487, 419141, 84347, 425641, 9929, 1621, 25423, 433507, 17393, 4591, 437467, 1933, 6029, 88289, 19309, 89891, 450797, 5351, 91237, 4049, 458891, 460247, 92593, 464327, 2857, 6971, 5527, 472541, 24943, 4133, 479441, 480827, 96443, 11279, 486391, 25673, 1663, 29023, 5101, 99241, 99523, 499027, 26339, 8297, 22067, 22129, 102079, 513257, 516127, 6089, 103801, 520447, 27773, 2659, 530597, 106411, 106703, 2399, 536441, 3221, 4703, 543791, 545267, 2543, 21929, 549707, 32423, 552677, 5849, 2917, 4019, 560137, 112327, 5821, 9281, 33391, 6007, 572177, 573691, 10939, 4243, 6151, 14327, 588941, 3761, 6983, 595097, 9781, 598187, 2269, 35461, 605947, 121501, 32303, 123379, 1951, 36473, 621617, 15277, 5557, 1949, 126223, 126541, 8689, 635891, 2011, 127817, 4091, 33889, 645497, 5641, 650327, 15901, 15199, 7727, 658417, 34739, 10847, 2503, 26597, 666557, 9973, 11353, 134293, 2089, 676391, 678037, 135937, 3169, 1861, 36383, 16901, 27851, 139589, 699617, 701291, 41351, 140929, 708007, 709691, 7993, 8389, 716447, 8069, 144307, 726641, 146011, 8609, 733477, 10973, 43651, 743791, 745517, 29959, 750707, 14197, 17539, 151531, 759397, 44773, 153277, 5087, 13049, 2389, 154681, 10667, 780457, 156799, 5653, 787541, 41543, 6343, 794657, 13499, 798227, 9433, 34939, 807187, 812587, 7207, 4229, 163601, 2843, 2281, 33083, 165779, 19319, 48973, 834367, 4079, 33521, 44203, 841691, 843527, 7351, 849047, 850891, 2551, 3061, 861997, 10163, 867577, 9769, 880667, 176509, 2081, 886307, 38699, 178393, 52691, 5507, 899537, 180287, 180667, 907141, 909047, 914777, 53923, 5851, 36821, 184489, 5107, 54601, 9791, 40609, 937877, 187963, 188351, 23017, 4951, 11171, 190297, 953437, 955391, 8783, 191861, 963227, 965191, 7753, 973067, 18397, 8513, 39239, 51839, 986927, 2039, 3359, 996887, 199777, 200177, 1002887, 52889, 1006897, 201781, 202183, 3257, 1014941, 40759,

7. Distribution of the primes

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

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)
11010731.0000000.7000000.3000000.0000000.0000000.000000
21007435390.7400000.3500000.3900007.4000005.00000013.000000
31.0007112324790.7110000.2320000.4790009.6081096.62857212.282051
410.0007.1271.6465.4810.7127000.1646000.54810010.0239107.09482811.442589
5100.00070.97212.67358.2990.7097200.1267300.5829909.9581877.69927110.636562
61.000.000706.646103.108603.5380.7066460.1031080.6035389.9566878.13603710.352459
710.000.0007.045.768873.6936.172.0750.7045770.0873690.6172089.9707188.47357210.226489
8100.000.00070.300.8297.572.78562.728.0440.7030080.0757280.6272809.9777388.66755910.163202
91.000.000.000701.794.12766.811.132634.982.9950.7017940.0668110.6349839.9827288.82253110.122792
1010.000.000.0007.008.364.583597.929.3306.410.435.2530.7008360.0597930.6410439.9863548.94954710.095444


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
388711.0000000.8750000.1250001.6000001.7500001.000000
41614950.8750000.5625000.3125001.7500001.2857145.000000
532251690.7812500.5000000.2812501.7857141.7777781.800000
6645023270.7812500.3593750.4218752.0000001.4375003.000000
71289044460.7031250.3437500.3593751.8000001.9130431.703704
8256181731080.7070310.2851560.4218752.0111111.6590912.347826
95123651312340.7128910.2558590.4570312.0165751.7945202.166667
101.0247252364890.7080080.2304690.4775391.9863011.8015272.089744
112.0481.4584161.0420.7119140.2031250.5087892.0110341.7627122.130879
124.0962.9257382.1870.7141110.1801760.5339362.0061731.7740382.098848
138.1925.8451.3754.4700.7135010.1678470.5456541.9982911.8631442.043896
1416.38411.6702.5429.1280.7122800.1551510.5571291.9965781.8487272.042058
1532.76823.3024.71018.5920.7111210.1437380.5673831.9967441.8528722.036810
1665.53646.5468.66637.8800.7102360.1322330.5780031.9975111.8399152.037436
17131.07293.01216.15776.8550.7096250.1232680.5863571.9982811.8644132.028907
18262.144185.75230.199155.5530.7085880.1152000.5933881.9970761.8690972.023980
19524.288371.02856.998314.0300.7076800.1087150.5989651.9974371.8874142.018797
201.048.576740.876107.777633.0990.7065540.1027840.6037701.9968201.8908912.016046
212.097.1521.480.278204.5021.275.7760.7058520.0975140.6083371.9980111.8974552.015129
224.194.3042.958.077389.2382.568.8390.7052610.0928020.6124591.9983251.9033462.013550
238.388.6085.911.517741.5925.169.9250.7047080.0884050.6163031.9984321.9052412.012553
2416.777.21611.814.4841.416.64110.397.8430.7041980.0844380.6197601.9985541.9102702.011217
2533.554.43223.611.6932.711.90920.899.7840.7036830.0808210.6228621.9985381.9143232.010011
2667.108.86447.194.5455.201.74741.992.7980.7032540.0775120.6257411.9987791.9181132.009246
27134.217.72894.334.3189.991.48584.342.8330.7028450.0744420.6284031.9988391.9207942.008507
28268.435.456188.562.27719.225.224169.337.0530.7024490.0716200.6308301.9988721.9241612.007723
29536.870.912376.935.72237.046.238339.889.4840.7020970.0690040.6330931.9989991.9269602.007177
301.073.741.824753.512.04771.478.900682.033.1470.7017630.0665700.6351931.9990471.9294512.006632
312.147.483.6481.506.347.406138.096.3871.368.251.0190.7014480.0643060.6371421.9991021.9319882.006136
324.294.967.2963.011.458.534267.113.2432.744.345.2910.7011600.0621920.6389681.9991791.9342522.005732
338.589.934.5926.020.623.976517.207.6195.503.416.3570.7008930.0602110.6406821.9992381.9362862.005366
3417.179.869.18412.036.917.4701.002.471.36611.034.446.1040.7006410.0583520.6422891.9992811.9382382.005018


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
123032010
244132110
387252221
4169272421
532164124543
664237166674
71284416281112138
825673254816172119
9512131399231293536
101.0242367616056605763
112.04841613628010711094105
124.096738247491183191184180
138.1921.375457918342355340338
1416.3842.5428371.705658641609634
1532.7684.7101.5743.1361.1931.1891.1771.151
1665.5368.6662.8895.7772.1602.1742.1912.141
17131.07216.1575.38010.7773.9684.0624.1293.998
18262.14430.19910.06620.1337.5477.5577.6447.451
19524.28856.99819.07837.92014.25814.20014.37814.162
201.048.576107.77735.96771.81026.96026.89327.07026.854
212.097.152204.50268.192136.31051.09251.06751.28851.055
224.194.304389.238129.944259.29497.19797.14797.47497.420
238.388.608741.592247.511494.081185.451185.387185.234185.520
2416.777.2161.416.641472.508944.133353.989354.456354.130354.066
2533.554.4322.711.909904.3141.807.595677.838678.506677.542678.023
2667.108.8645.201.7471.733.3673.468.3801.299.4481.301.6601.299.5021.301.137
27134.217.7289.991.4853.329.0086.662.4772.496.6412.498.5042.497.6822.498.658
28268.435.45619.225.2246.408.10412.817.1204.805.2854.807.1154.805.3724.807.452
29536.870.91237.046.23812.350.23824.696.0009.262.8289.261.6999.259.2579.262.454
301.073.741.82471.478.90023.827.73247.651.16817.871.36817.870.12717.864.56717.872.838
312.147.483.648138.096.38746.034.45792.061.93034.526.68934.524.52034.517.60934.527.569
324.294.967.296267.113.24389.037.679178.075.56466.781.55166.781.00166.775.35266.775.339
338.589.934.592517.207.619172.394.646344.812.973129.298.356129.300.853129.304.131129.304.279
3417.179.869.1841.002.471.366334.151.496668.319.870250.611.187250.618.291250.625.664250.616.224


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
381100100
4165321220
5329632331
6642716116768
712846291711101114
8256108634523282730
951223412810650675661
101.024489263226115120121133
112.0481.042545497260240266276
124.0962.1871.1531.034540532549566
138.1924.4702.3422.1281.1161.0941.1231.137
1416.3849.1284.7764.3522.2732.2502.3002.305
1532.76818.5929.6728.9204.6484.5714.6634.710
1665.53637.88019.55218.3289.5339.3639.4739.511
17131.07276.85539.67737.17819.25919.20119.15919.236
18262.144155.55380.12375.43038.86439.01738.80338.869
19524.288314.030161.841152.18978.24578.54378.60478.638
201.048.576633.099325.841307.258157.986158.212158.450158.451
212.097.1521.275.776654.936620.840317.922319.141319.350319.363
224.194.3042.568.8391.317.2251.251.614640.450643.588642.485642.316
238.388.6085.169.9252.646.7872.523.1381.291.2511.293.9421.292.4291.292.303
2416.777.21610.397.8435.317.1975.080.6462.596.6782.601.6042.600.0642.599.497
2533.554.43220.899.78410.674.00910.225.7755.222.5655.227.6385.227.0025.222.579
2667.108.86441.992.79821.429.07520.563.72310.496.76810.500.75410.501.44510.493.831
27134.217.72884.342.83342.999.43841.343.39521.080.28521.088.10021.088.32521.086.123
28268.435.456169.337.05386.256.80683.080.24742.322.83842.335.65342.343.44842.335.114
29536.870.912339.889.484173.007.339166.882.14584.964.32584.968.80784.977.44184.978.911
301.073.741.824682.033.147346.924.253335.108.894170.507.786170.507.399170.506.691170.511.271
312.147.483.6481.368.251.019695.518.117672.732.902342.055.949342.064.929342.053.314342.076.827
324.294.967.2962.744.345.2911.394.216.7181.350.128.573686.068.401686.087.307686.097.836686.091.747
338.589.934.5925.503.416.3572.794.344.4702.709.071.8871.375.875.8981.375.881.2601.375.857.1921.375.802.007
3417.179.869.18411.034.446.1045.599.786.7715.434.659.3332.758.651.0222.758.656.6752.758.568.9362.758.569.471


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 17, 41, 67, 19, 1, 157, 191, 227, 53, 61, 347, 23, 1, 97, 107, 587, 641, 1, 151,
Found in Database : 5, 17, 41, 67, 19, 157, 191, 227, 53, 61, 347, 23, 97, 107, 587, 641, 151, 163, 877, 941, 43, 229, 1217, 1291, 1367, 1607, 89, 1777, 373, 2141, 2237, 467,
Found in Database : 5, 17, 19, 23, 41, 43, 53, 59, 61, 67, 73, 89, 97, 103, 107, 109, 113, 137, 139,