Inhaltsverzeichnis

Development of
Algorithmic Constructions

18:36:49
Deutsch
19.Apr 2024

Polynom = x^2+15x-13

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) = 13 = 13
f(1) = 3 = 3
f(2) = 21 = 3*7
f(3) = 41 = 41
f(4) = 63 = 3*3*7
f(5) = 87 = 3*29
f(6) = 113 = 113
f(7) = 141 = 3*47
f(8) = 171 = 3*3*19
f(9) = 203 = 7*29
f(10) = 237 = 3*79
f(11) = 273 = 3*7*13
f(12) = 311 = 311
f(13) = 351 = 3*3*3*13
f(14) = 393 = 3*131
f(15) = 437 = 19*23
f(16) = 483 = 3*7*23
f(17) = 531 = 3*3*59
f(18) = 581 = 7*83
f(19) = 633 = 3*211
f(20) = 687 = 3*229
f(21) = 743 = 743
f(22) = 801 = 3*3*89
f(23) = 861 = 3*7*41
f(24) = 923 = 13*71
f(25) = 987 = 3*7*47
f(26) = 1053 = 3*3*3*3*13
f(27) = 1121 = 19*59
f(28) = 1191 = 3*397
f(29) = 1263 = 3*421
f(30) = 1337 = 7*191
f(31) = 1413 = 3*3*157
f(32) = 1491 = 3*7*71
f(33) = 1571 = 1571
f(34) = 1653 = 3*19*29
f(35) = 1737 = 3*3*193
f(36) = 1823 = 1823
f(37) = 1911 = 3*7*7*13
f(38) = 2001 = 3*23*29
f(39) = 2093 = 7*13*23
f(40) = 2187 = 3*3*3*3*3*3*3
f(41) = 2283 = 3*761
f(42) = 2381 = 2381
f(43) = 2481 = 3*827
f(44) = 2583 = 3*3*7*41
f(45) = 2687 = 2687
f(46) = 2793 = 3*7*7*19
f(47) = 2901 = 3*967
f(48) = 3011 = 3011
f(49) = 3123 = 3*3*347
f(50) = 3237 = 3*13*83
f(51) = 3353 = 7*479
f(52) = 3471 = 3*13*89
f(53) = 3591 = 3*3*3*7*19
f(54) = 3713 = 47*79
f(55) = 3837 = 3*1279
f(56) = 3963 = 3*1321
f(57) = 4091 = 4091
f(58) = 4221 = 3*3*7*67
f(59) = 4353 = 3*1451
f(60) = 4487 = 7*641
f(61) = 4623 = 3*23*67
f(62) = 4761 = 3*3*23*23
f(63) = 4901 = 13*13*29
f(64) = 5043 = 3*41*41
f(65) = 5187 = 3*7*13*19
f(66) = 5333 = 5333
f(67) = 5481 = 3*3*3*7*29
f(68) = 5631 = 3*1877
f(69) = 5783 = 5783
f(70) = 5937 = 3*1979
f(71) = 6093 = 3*3*677
f(72) = 6251 = 7*19*47
f(73) = 6411 = 3*2137
f(74) = 6573 = 3*7*313
f(75) = 6737 = 6737
f(76) = 6903 = 3*3*13*59
f(77) = 7071 = 3*2357
f(78) = 7241 = 13*557
f(79) = 7413 = 3*7*353
f(80) = 7587 = 3*3*3*281
f(81) = 7763 = 7*1109
f(82) = 7941 = 3*2647
f(83) = 8121 = 3*2707
f(84) = 8303 = 19*19*23
f(85) = 8487 = 3*3*23*41
f(86) = 8673 = 3*7*7*59
f(87) = 8861 = 8861
f(88) = 9051 = 3*7*431
f(89) = 9243 = 3*3*13*79
f(90) = 9437 = 9437
f(91) = 9633 = 3*13*13*19
f(92) = 9831 = 3*29*113
f(93) = 10031 = 7*1433
f(94) = 10233 = 3*3*3*379
f(95) = 10437 = 3*7*7*71
f(96) = 10643 = 29*367
f(97) = 10851 = 3*3617
f(98) = 11061 = 3*3*1229
f(99) = 11273 = 11273
f(100) = 11487 = 3*7*547

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+15x-13

f(0)=13
f(1)=3
f(2)=7
f(3)=41
f(4)=1
f(5)=29
f(6)=113
f(7)=47
f(8)=19
f(9)=1
f(10)=79
f(11)=1
f(12)=311
f(13)=1
f(14)=131
f(15)=23
f(16)=1
f(17)=59
f(18)=83
f(19)=211
f(20)=229
f(21)=743
f(22)=89
f(23)=1
f(24)=71
f(25)=1
f(26)=1
f(27)=1
f(28)=397
f(29)=421
f(30)=191
f(31)=157
f(32)=1
f(33)=1571
f(34)=1
f(35)=193
f(36)=1823
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=761
f(42)=2381
f(43)=827
f(44)=1
f(45)=2687
f(46)=1
f(47)=967
f(48)=3011
f(49)=347
f(50)=1
f(51)=479
f(52)=1
f(53)=1
f(54)=1
f(55)=1279
f(56)=1321
f(57)=4091
f(58)=67
f(59)=1451
f(60)=641
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=5333
f(67)=1
f(68)=1877
f(69)=5783
f(70)=1979
f(71)=677
f(72)=1
f(73)=2137
f(74)=313
f(75)=6737
f(76)=1
f(77)=2357
f(78)=557
f(79)=353
f(80)=281
f(81)=1109
f(82)=2647
f(83)=2707
f(84)=1
f(85)=1
f(86)=1
f(87)=8861
f(88)=431
f(89)=1
f(90)=9437
f(91)=1
f(92)=1
f(93)=1433
f(94)=379
f(95)=1
f(96)=367
f(97)=3617
f(98)=1229
f(99)=11273

b) Substitution of the polynom
The polynom f(x)=x^2+15x-13 could be written as f(y)= y^2-69.25 with x=y-7.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+7.5
f'(x)>2x+14

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

13, 3, 7, 41, 1, 29, 113, 47, 19, 1, 79, 1, 311, 1, 131, 23, 1, 59, 83, 211, 229, 743, 89, 1, 71, 1, 1, 1, 397, 421, 191, 157, 1, 1571, 1, 193, 1823, 1, 1, 1, 1, 761, 2381, 827, 1, 2687, 1, 967, 3011, 347, 1, 479, 1, 1, 1, 1279, 1321, 4091, 67, 1451, 641, 1, 1, 1, 1, 1, 5333, 1, 1877, 5783, 1979, 677, 1, 2137, 313, 6737, 1, 2357, 557, 353, 281, 1109, 2647, 2707, 1, 1, 1, 8861, 431, 1, 9437, 1, 1, 1433, 379, 1, 367, 3617, 1229, 11273, 547, 1, 1, 1, 317, 307, 4271, 1, 577, 643, 241, 1, 1579, 4817, 2099, 383, 1, 1187, 5227, 1, 16187, 1, 293, 2423, 5741, 1, 433, 6007, 1, 977, 1, 277, 19391, 1, 739, 1, 6841, 991, 21101, 2377, 7229, 1, 1061, 1, 467, 1, 1, 23801, 1, 1163, 853, 1193, 2819, 1117, 1, 8779, 1, 2999, 1301, 27653, 491, 1049, 28661, 1381, 9781, 4241, 1, 1, 389, 797, 499, 31793, 1531, 10837, 463, 1231, 487, 1, 11447, 1, 2699, 11821, 919, 1249, 1, 12329, 1, 1, 1, 38543, 12979, 1873, 593, 1, 1, 1, 13781, 4639, 1, 617, 1, 43403, 541, 14747, 757, 1, 1, 6563, 1, 15601, 47237, 5297, 1, 1033, 2333, 1831, 601, 883, 16927, 563, 5743, 1, 2287, 769, 1, 53987, 2593, 18307, 1, 2069, 1, 56813, 1, 1, 4481, 2797, 1039, 1, 6689, 20231, 8741, 709, 1, 3299, 21061, 1, 2791, 1, 21737, 1, 22079, 7417, 67271, 1, 3253, 3623, 1, 23297, 5417, 1, 1, 10289, 1, 1, 73643, 8243, 859, 907, 1, 1, 1, 1987, 26017, 6047, 1, 3797, 613, 3851, 9049, 82013, 27529, 1459, 1709, 1, 1, 85487, 2207, 9629, 87251, 1, 719, 1, 1, 1583, 90833, 1051, 1, 7127, 4441, 1, 4973, 10567, 31907, 13763, 32321, 1549, 98213, 701, 1, 100103, 1, 33791, 1, 34217, 1, 4519, 1, 5011, 937, 1, 35729, 107843, 1, 1, 1, 2833, 1, 111821, 1, 1, 113837, 1, 12799, 16553, 38851, 39079, 1, 1, 1, 119993, 821, 13487, 122081, 40927, 41161, 1, 13877, 5981, 126311, 3257, 1, 1, 6151, 1493, 1, 14593, 44021, 1, 44507, 2131, 5869, 1, 3499, 137201, 1, 46229, 19919, 46727, 2237, 7457, 1, 809, 3511, 2297, 48491, 1607, 2579, 1, 1669, 1, 1021, 2557, 1, 1, 6661, 51329, 1, 1, 1, 1069, 12149, 5879, 1297, 2393, 7673, 947, 1, 54517, 54787, 165173, 18443, 1, 167621, 1, 6269, 2153, 2477, 1, 1, 19267, 8297, 6037, 1, 1, 1, 1, 4597, 25733, 6703, 60611, 182687, 1, 2927, 1, 8863, 1, 9887, 1613, 63197, 1, 1, 1, 1, 1, 64951, 195737, 3121, 65837, 4049, 66431, 1, 953, 5179, 9661, 7027, 1, 68531, 206501, 1471, 1, 1, 70051, 1, 1, 1, 5483, 214763, 10271, 1, 31079, 1087, 73141, 220361, 1, 1, 2689, 1, 1, 17387, 2609, 75979, 1721, 8513, 1, 5653, 3373, 1129, 4993, 1, 6067, 33941, 2039, 79847, 12659, 1019, 1283, 243473, 1663, 81817, 4177, 1447, 82811, 2741, 83477, 1, 1, 84481, 1, 1, 1, 85829, 36929, 1, 28949, 261563, 6733, 12553, 20357, 4217, 4679, 267737, 89591, 3331, 38693, 90631, 1, 3301, 30559, 7079, 1, 1, 1, 1741, 93787, 2003, 283487, 1171, 1, 1, 1, 1, 1, 96997, 7489, 41879, 32693, 1, 1, 1, 11059, 15773, 14323, 2141, 43283, 1, 4423, 23561, 5393, 1, 309623, 14797, 103951, 312971, 11633, 105071, 45191, 1, 1, 5419, 1, 3701, 323123, 5147, 1373, 46649, 109229, 1, 14347, 4799, 15823, 1973, 1, 8609, 336911, 112691, 37693, 6947, 2777, 1, 343913, 12781, 115421, 2213, 1277, 38867, 1, 1319, 117787, 354551, 1, 1, 1, 1, 4451, 5399, 1, 9337, 1, 1, 1, 5197, 123401, 41269, 1951, 1, 125029, 53759, 1, 126257, 29231, 127079, 1, 1, 1, 1, 387437, 2273, 2203, 1, 130811, 2083, 394943, 10159, 1, 30671, 1, 1, 57503, 134597, 45007, 1, 1637, 19471, 410171, 1, 1, 1, 1, 1, 59699, 139729, 20023, 1, 1621, 141461, 4783, 20333, 1, 4721, 1, 11083, 1, 1, 20771, 23027, 20897, 48907, 3907, 147607, 1, 2767, 1, 21341, 1, 2243, 1, 7687, 21661, 152077, 1, 50993, 2161, 15919, 8123, 1, 5233, 1, 156157, 469841, 1, 8291, 67709, 1, 1, 4231, 1, 2029, 37097, 1, 12437, 69491, 162611, 2861, 490631, 164011, 23497, 494843, 7877, 165887, 26267, 1, 1, 5531, 168247, 24103, 1, 2459, 1, 1747, 24443, 57193, 3881, 3671, 13309, 6271, 1487, 24923, 524831, 1, 1, 12907, 2239, 1, 10889, 59447, 1, 41381, 179807, 1, 23581, 1, 2713, 11159, 60919, 1, 9343, 184241, 1, 1753, 1, 186229, 1, 1, 1, 80669, 188729, 9011, 569201, 1, 10039, 573737, 1, 1, 82613, 14867, 7177, 30677, 1, 27901, 1, 9349, 4801, 592061, 6823, 1, 1, 199411, 1, 31649, 1, 1783, 605993, 4133, 67679, 3793, 1, 204601, 13093, 5273, 29453, 47699, 4229, 1, 1, 3539, 1, 89939, 3691, 1, 634343, 211979, 5449, 22039, 2347, 1, 1, 23909, 1, 1, 216791, 1, 2129, 1, 218947, 50651, 1, 1, 1, 221657, 3527, 3167, 223291, 223837, 1, 10711, 225479, 1, 1, 75709, 52541, 9923, 1, 1733, 1, 4903, 36473, 231551, 77369, 99713, 233221, 1, 703013, 1, 1, 708053, 33797, 8783, 101873, 238267, 1, 718187, 79987, 34361, 1, 1, 6211, 25117, 243367, 2939, 104789, 1, 1847, 1949, 1, 82457, 743837, 2731, 249097, 8231, 83417, 250829, 754223, 3761, 1, 18523, 1, 11057, 33247, 85159, 19697, 1, 1, 12277, 1, 258991, 8951, 10993, 4139, 261347, 1, 3163, 1, 3203, 2339, 1, 796487, 12671, 266687, 6121, 1, 1, 115319, 1, 38611, 812633, 6961, 1, 62927, 39041, 91297, 2503, 14479, 4673, 828941, 1, 1, 2683, 39821, 1, 839903, 1, 281191, 1, 4093, 40433, 4409, 284261, 3517, 18223, 5839, 15091, 9473, 95989, 1, 867623, 7069, 13831, 45959, 5953, 4363, 878837, 1, 4391, 4357, 22727, 1, 1, 10253, 297967, 47147, 14249, 299861, 1, 301127, 33529, 2917, 1, 1, 912911, 1, 1, 918653, 306857, 102499, 132059, 4349, 44203, 930191, 1, 13537, 71999, 1, 1, 1, 314581, 1, 1, 105509, 6473, 953483, 45497, 1, 959351, 1, 321091, 10607, 107467, 1, 971141, 1, 108343, 1, 2027, 327007, 1, 1, 25307, 24121, 25409, 15761, 2711, 1, 1, 1000931, 2371, 11551, 1, 336317, 1, 1,

6. Sequence of the polynom (only primes)

13, 3, 7, 41, 29, 113, 47, 19, 79, 311, 131, 23, 59, 83, 211, 229, 743, 89, 71, 397, 421, 191, 157, 1571, 193, 1823, 761, 2381, 827, 2687, 967, 3011, 347, 479, 1279, 1321, 4091, 67, 1451, 641, 5333, 1877, 5783, 1979, 677, 2137, 313, 6737, 2357, 557, 353, 281, 1109, 2647, 2707, 8861, 431, 9437, 1433, 379, 367, 3617, 1229, 11273, 547, 317, 307, 4271, 577, 643, 241, 1579, 4817, 2099, 383, 1187, 5227, 16187, 293, 2423, 5741, 433, 6007, 977, 277, 19391, 739, 6841, 991, 21101, 2377, 7229, 1061, 467, 23801, 1163, 853, 1193, 2819, 1117, 8779, 2999, 1301, 27653, 491, 1049, 28661, 1381, 9781, 4241, 389, 797, 499, 31793, 1531, 10837, 463, 1231, 487, 11447, 2699, 11821, 919, 1249, 12329, 38543, 12979, 1873, 593, 13781, 4639, 617, 43403, 541, 14747, 757, 6563, 15601, 47237, 5297, 1033, 2333, 1831, 601, 883, 16927, 563, 5743, 2287, 769, 53987, 2593, 18307, 2069, 56813, 4481, 2797, 1039, 6689, 20231, 8741, 709, 3299, 21061, 2791, 21737, 22079, 7417, 67271, 3253, 3623, 23297, 5417, 10289, 73643, 8243, 859, 907, 1987, 26017, 6047, 3797, 613, 3851, 9049, 82013, 27529, 1459, 1709, 85487, 2207, 9629, 87251, 719, 1583, 90833, 1051, 7127, 4441, 4973, 10567, 31907, 13763, 32321, 1549, 98213, 701, 100103, 33791, 34217, 4519, 5011, 937, 35729, 107843, 2833, 111821, 113837, 12799, 16553, 38851, 39079, 119993, 821, 13487, 122081, 40927, 41161, 13877, 5981, 126311, 3257, 6151, 1493, 14593, 44021, 44507, 2131, 5869, 3499, 137201, 46229, 19919, 46727, 2237, 7457, 809, 3511, 2297, 48491, 1607, 2579, 1669, 1021, 2557, 6661, 51329, 1069, 12149, 5879, 1297, 2393, 7673, 947, 54517, 54787, 165173, 18443, 167621, 6269, 2153, 2477, 19267, 8297, 6037, 4597, 25733, 6703, 60611, 182687, 2927, 8863, 9887, 1613, 63197, 64951, 195737, 3121, 65837, 4049, 66431, 953, 5179, 9661, 7027, 68531, 206501, 1471, 70051, 5483, 214763, 10271, 31079, 1087, 73141, 220361, 2689, 17387, 2609, 75979, 1721, 8513, 5653, 3373, 1129, 4993, 6067, 33941, 2039, 79847, 12659, 1019, 1283, 243473, 1663, 81817, 4177, 1447, 82811, 2741, 83477, 84481, 85829, 36929, 28949, 261563, 6733, 12553, 20357, 4217, 4679, 267737, 89591, 3331, 38693, 90631, 3301, 30559, 7079, 1741, 93787, 2003, 283487, 1171, 96997, 7489, 41879, 32693, 11059, 15773, 14323, 2141, 43283, 4423, 23561, 5393, 309623, 14797, 103951, 312971, 11633, 105071, 45191, 5419, 3701, 323123, 5147, 1373, 46649, 109229, 14347, 4799, 15823, 1973, 8609, 336911, 112691, 37693, 6947, 2777, 343913, 12781, 115421, 2213, 1277, 38867, 1319, 117787, 354551, 4451, 5399, 9337, 5197, 123401, 41269, 1951, 125029, 53759, 126257, 29231, 127079, 387437, 2273, 2203, 130811, 2083, 394943, 10159, 30671, 57503, 134597, 45007, 1637, 19471, 410171, 59699, 139729, 20023, 1621, 141461, 4783, 20333, 4721, 11083, 20771, 23027, 20897, 48907, 3907, 147607, 2767, 21341, 2243, 7687, 21661, 152077, 50993, 2161, 15919, 8123, 5233, 156157, 469841, 8291, 67709, 4231, 2029, 37097, 12437, 69491, 162611, 2861, 490631, 164011, 23497, 494843, 7877, 165887, 26267, 5531, 168247, 24103, 2459, 1747, 24443, 57193, 3881, 3671, 13309, 6271, 1487, 24923, 524831, 12907, 2239, 10889, 59447, 41381, 179807, 23581, 2713, 11159, 60919, 9343, 184241, 1753, 186229, 80669, 188729, 9011, 569201, 10039, 573737, 82613, 14867, 7177, 30677, 27901, 9349, 4801, 592061, 6823, 199411, 31649, 1783, 605993, 4133, 67679, 3793, 204601, 13093, 5273, 29453, 47699, 4229, 3539, 89939, 3691, 634343, 211979, 5449, 22039, 2347, 23909, 216791, 2129, 218947, 50651, 221657, 3527, 3167, 223291, 223837, 10711, 225479, 75709, 52541, 9923, 1733, 4903, 36473, 231551, 77369, 99713, 233221, 703013, 708053, 33797, 8783, 101873, 238267, 718187, 79987, 34361, 6211, 25117, 243367, 2939, 104789, 1847, 1949, 82457, 743837, 2731, 249097, 8231, 83417, 250829, 754223, 3761, 18523, 11057, 33247, 85159, 19697, 12277, 258991, 8951, 10993, 4139, 261347, 3163, 3203, 2339, 796487, 12671, 266687, 6121, 115319, 38611, 812633, 6961, 62927, 39041, 91297, 2503, 14479, 4673, 828941, 2683, 39821, 839903, 281191, 4093, 40433, 4409, 284261, 3517, 18223, 5839, 15091, 9473, 95989, 867623, 7069, 13831, 45959, 5953, 4363, 878837, 4391, 4357, 22727, 10253, 297967, 47147, 14249, 299861, 301127, 33529, 2917, 912911, 918653, 306857, 102499, 132059, 4349, 44203, 930191, 13537, 71999, 314581, 105509, 6473, 953483, 45497, 959351, 321091, 10607, 107467, 971141, 108343, 2027, 327007, 25307, 24121, 25409, 15761, 2711, 1000931, 2371, 11551, 336317,

7. Distribution of the primes

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

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)
1109450.9000000.4000000.5000000.0000000.0000000.000000
21006318450.6300000.1800000.4500007.0000004.5000009.000000
31.000671935780.6710000.0930000.57800010.6507945.16666712.844444
410.0006.7346586.0760.6734000.0658000.60760010.0357687.07526910.512111
5100.00068.0065.19062.8160.6800600.0519000.62816010.0989017.88753810.338381
61.000.000682.07642.141639.9350.6820760.0421410.63993510.0296448.11965310.187452
710.000.0006.834.513356.6046.477.9090.6834510.0356600.64779110.0201648.46216310.122761
8100.000.00068.455.9293.087.95965.367.9700.6845590.0308800.65368010.0162128.65935010.090905
91.000.000.000685.406.98427.233.389658.173.5950.6854070.0272330.65817410.0123838.81922010.068748
1010.000.000.0006.861.078.258243.708.2736.617.369.9850.6861080.0243710.66173710.0102258.94887810.054141


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
244311.0000000.7500000.2500001.3333331.5000001.000000
388441.0000000.5000000.5000002.0000001.3333334.000000
41611560.6875000.3125000.3750001.3750001.2500001.500000
532226160.6875000.1875000.5000002.0000001.2000002.666667
6643812260.5937500.1875000.4062501.7272732.0000001.625000
71288119620.6328120.1484380.4843752.1315791.5833332.384615
8256169321370.6601560.1250000.5351562.0864201.6842112.209677
9512342562860.6679690.1093750.5585942.0236691.7500002.087591
101.024684945900.6679690.0917970.5761722.0000001.6785712.062937
112.0481.3751671.2080.6713870.0815430.5898442.0102341.7765962.047458
124.0962.7593012.4580.6735840.0734860.6000982.0065461.8023952.034768
138.1925.5285534.9750.6748050.0675050.6073002.0036241.8372092.024003
1416.38411.0771.00710.0700.6760860.0614620.6146242.0037991.8209762.024121
1532.76822.2151.89620.3190.6779480.0578610.6200872.0055071.8828202.017776
1665.53644.5403.54041.0000.6796260.0540160.6256102.0049521.8670892.017816
17131.07289.1966.62182.5750.6805110.0505140.6299972.0026041.8703392.014024
18262.144178.59712.309166.2880.6812930.0469550.6343382.0022981.8590852.013781
19524.288357.53923.139334.4000.6819520.0441340.6378172.0019321.8798442.010969
201.048.576715.25443.994671.2600.6821190.0419560.6401632.0004921.9012922.007356
212.097.1521.431.36683.5671.347.7990.6825280.0398480.6426812.0011991.8995092.007864
224.194.3042.864.536158.6692.705.8670.6829590.0378300.6451292.0012601.8987042.007619
238.388.6085.732.523302.9165.429.6070.6833700.0361100.6472602.0012051.9091062.006605
2416.777.21611.471.575578.33010.893.2450.6837590.0344710.6492882.0011391.9092092.006268
2533.554.43222.954.4021.106.08421.848.3180.6840940.0329640.6511312.0009811.9125482.005676
2667.108.86445.930.6722.121.47043.809.2020.6844200.0316120.6528082.0009531.9180012.005152
27134.217.72891.897.0394.074.41687.822.6230.6846860.0303570.6543302.0007771.9205632.004662
28268.435.456183.863.1987.837.042176.026.1560.6849440.0291950.6557492.0007521.9234762.004337
29536.870.912367.859.85215.101.343352.758.5090.6851920.0281280.6570642.0007261.9269192.004012
301.073.741.824735.975.79729.136.702706.839.0950.6854310.0271360.6582952.0006961.9294112.003748
312.147.483.6481.472.434.25856.293.7191.416.140.5390.6856560.0262140.6594422.0006561.9320552.003484
324.294.967.2962.945.779.708108.876.3162.836.903.3920.6858680.0253500.6605182.0006191.9340762.003264
338.589.934.5925.893.253.578210.809.1155.682.444.4630.6860650.0245410.6615242.0005751.9362262.003045
3417.179.869.18411.789.766.497408.590.84711.381.175.6500.6862550.0237830.6624722.0005531.9382032.002866
3534.359.738.36823.585.683.322792.685.99422.792.997.3280.6864340.0230700.6633642.0005221.9400482.002693
3668.719.476.73647.182.949.4981.539.313.51545.643.635.9830.6866020.0224000.6642022.0004911.9418962.002529


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
122100110
243111110
384122110
4165132111
5326142112
664121102424
7128191174555
82563212977108
95125615315121712
101.0249419122192627
112.048167116439384446
124.096301129871817970
138.1925531550139144140130
1416.3841.00711.004258260241248
1532.7681.89611.893468470478480
1665.5363.54013.537866874871929
17131.0726.62116.6181.6171.6631.6351.706
18262.14412.309112.3063.0353.0713.0743.129
19524.28823.139123.1365.7555.8135.7095.862
201.048.57643.994143.99110.91611.05610.93211.090
212.097.15283.567183.56420.70820.99520.83921.025
224.194.304158.6691158.66639.63539.71139.49439.829
238.388.608302.9161302.91375.49775.99875.58775.834
2416.777.216578.3301578.327144.329144.696144.482144.823
2533.554.4321.106.08411.106.081275.979276.504276.768276.833
2667.108.8642.121.47012.121.467529.945529.937530.754530.834
27134.217.7284.074.41614.074.4131.019.0401.017.4181.019.0261.018.932
28268.435.4567.837.04217.837.0391.958.8161.959.3651.959.8911.958.970
29536.870.91215.101.343115.101.3403.774.7113.775.6083.776.8983.774.126
301.073.741.82429.136.702129.136.6997.282.9567.284.8407.286.8817.282.025
312.147.483.64856.293.719156.293.71614.073.49514.077.31714.073.75814.069.149
324.294.967.296108.876.3161108.876.31327.213.63127.226.72927.220.85427.215.102
338.589.934.592210.809.1151210.809.11252.694.30752.708.51052.706.90852.699.390
3417.179.869.184408.590.8471408.590.844102.131.201102.157.820102.149.557102.152.269
3534.359.738.368792.685.9941792.685.991198.146.712198.170.475198.180.206198.188.601
3668.719.476.7361.539.313.51511.539.313.512384.787.030384.825.482384.836.310384.864.693


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
121100001
241100001
384220112
4166330213
53216881555
6642612145858
712862273515181415
8256137686936343532
951228613215476687666
101.024590268322144146152148
112.0481.208552656305294317292
124.0962.4581.1451.313595603630630
138.1924.9752.3752.6001.2251.2491.2561.245
1416.38410.0704.8895.1812.5082.5382.5232.501
1532.76820.3199.85210.4675.0935.0945.0575.075
1665.53641.00019.94121.05910.30210.19210.19010.316
17131.07282.57540.01842.55720.65820.59420.65220.671
18262.144166.28880.85185.43741.50241.62841.61841.540
19524.288334.400163.302171.09883.72383.63083.68083.367
201.048.576671.260327.726343.534168.037167.778167.875167.570
212.097.1521.347.799659.035688.764336.894336.888337.229336.788
224.194.3042.705.8671.325.5281.380.339676.242676.619676.654676.352
238.388.6085.429.6072.663.6412.765.9661.357.9061.357.6481.356.4731.357.580
2416.777.21610.893.2455.348.1225.545.1232.723.5072.722.7182.724.2232.722.797
2533.554.43221.848.31810.733.92711.114.3915.460.1435.462.2935.460.8995.464.983
2667.108.86443.809.20221.540.50622.268.69610.951.99310.952.45410.950.76210.953.993
27134.217.72887.822.62343.211.57444.611.04921.955.12821.954.18821.955.54421.957.763
28268.435.456176.026.15686.665.44389.360.71344.001.41644.005.88244.006.63644.012.222
29536.870.912352.758.509173.792.740178.965.76988.181.08588.188.09588.185.57888.203.751
301.073.741.824706.839.095348.441.794358.397.301176.700.413176.707.901176.719.728176.711.053
312.147.483.6481.416.140.539698.459.638717.680.901354.023.372354.040.221354.049.367354.027.579
324.294.967.2962.836.903.3921.399.866.2981.437.037.094709.213.921709.271.747709.211.912709.205.812
338.589.934.5925.682.444.4632.805.276.9012.877.167.5621.420.600.9931.420.645.1011.420.631.6311.420.566.738
3417.179.869.18411.381.175.6505.620.919.5995.760.256.0512.845.299.7122.845.389.2032.845.300.1412.845.186.594
3534.359.738.36822.792.997.32811.261.459.71511.531.537.6135.698.189.3485.698.310.9315.698.264.7165.698.232.333
3668.719.476.73645.643.635.98322.559.686.52523.083.949.45811.410.963.42111.410.993.44111.410.863.65011.410.815.471


8. Check for existing Integer Sequences by OEIS

Found in Database : 13, 3, 7, 41, 1, 29, 113, 47, 19, 1, 79, 1, 311, 1, 131, 23, 1, 59, 83, 211,
Found in Database : 13, 3, 7, 41, 29, 113, 47, 19, 79, 311, 131, 23, 59, 83, 211, 229, 743, 89, 71, 397, 421, 191, 157, 1571, 193, 1823,
Found in Database : 3, 7, 13, 19, 23, 29, 41, 47, 59, 67, 71, 79, 83, 89, 113, 131,