Inhaltsverzeichnis

Development of
Algorithmic Constructions

04:56:00
Deutsch
20.Apr 2024

Polynom = x^2+60x-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) = 111 = 3*37
f(3) = 11 = 11
f(4) = 243 = 3*3*3*3*3
f(5) = 39 = 3*13
f(6) = 383 = 383
f(7) = 57 = 3*19
f(8) = 531 = 3*3*59
f(9) = 19 = 19
f(10) = 687 = 3*229
f(11) = 3 = 3
f(12) = 851 = 23*37
f(13) = 117 = 3*3*13
f(14) = 1023 = 3*11*31
f(15) = 139 = 139
f(16) = 1203 = 3*401
f(17) = 81 = 3*3*3*3
f(18) = 1391 = 13*107
f(19) = 93 = 3*31
f(20) = 1587 = 3*23*23
f(21) = 211 = 211
f(22) = 1791 = 3*3*199
f(23) = 237 = 3*79
f(24) = 2003 = 2003
f(25) = 33 = 3*11
f(26) = 2223 = 3*3*13*19
f(27) = 73 = 73
f(28) = 2451 = 3*19*43
f(29) = 321 = 3*107
f(30) = 2687 = 2687
f(31) = 351 = 3*3*3*13
f(32) = 2931 = 3*977
f(33) = 191 = 191
f(34) = 3183 = 3*1061
f(35) = 207 = 3*3*23
f(36) = 3443 = 11*313
f(37) = 447 = 3*149
f(38) = 3711 = 3*1237
f(39) = 481 = 13*37
f(40) = 3987 = 3*3*443
f(41) = 129 = 3*43
f(42) = 4271 = 4271
f(43) = 69 = 3*23
f(44) = 4563 = 3*3*3*13*13
f(45) = 589 = 19*31
f(46) = 4863 = 3*1621
f(47) = 627 = 3*11*19
f(48) = 5171 = 5171
f(49) = 333 = 3*3*37
f(50) = 5487 = 3*31*59
f(51) = 353 = 353
f(52) = 5811 = 3*13*149
f(53) = 747 = 3*3*83
f(54) = 6143 = 6143
f(55) = 789 = 3*263
f(56) = 6483 = 3*2161
f(57) = 13 = 13
f(58) = 6831 = 3*3*3*11*23
f(59) = 219 = 3*73
f(60) = 7187 = 7187
f(61) = 921 = 3*307
f(62) = 7551 = 3*3*839
f(63) = 967 = 967
f(64) = 7923 = 3*19*139
f(65) = 507 = 3*13*13
f(66) = 8303 = 19*19*23
f(67) = 531 = 3*3*59
f(68) = 8691 = 3*2897
f(69) = 1111 = 11*101
f(70) = 9087 = 3*13*233
f(71) = 1161 = 3*3*3*43
f(72) = 9491 = 9491
f(73) = 303 = 3*101
f(74) = 9903 = 3*3301
f(75) = 79 = 79
f(76) = 10323 = 3*3*31*37
f(77) = 1317 = 3*439
f(78) = 10751 = 13*827
f(79) = 1371 = 3*457
f(80) = 11187 = 3*3*11*113
f(81) = 713 = 23*31
f(82) = 11631 = 3*3877
f(83) = 741 = 3*13*19
f(84) = 12083 = 43*281
f(85) = 1539 = 3*3*3*3*19
f(86) = 12543 = 3*37*113
f(87) = 1597 = 1597
f(88) = 13011 = 3*4337
f(89) = 207 = 3*3*23
f(90) = 13487 = 13487
f(91) = 429 = 3*11*13
f(92) = 13971 = 3*4657
f(93) = 1777 = 1777
f(94) = 14463 = 3*3*1607
f(95) = 1839 = 3*613
f(96) = 14963 = 13*1151
f(97) = 951 = 3*317
f(98) = 15471 = 3*3*3*3*191
f(99) = 983 = 983
f(100) = 15987 = 3*73*73

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

f(0)=13
f(1)=3
f(2)=37
f(3)=11
f(4)=1
f(5)=1
f(6)=383
f(7)=19
f(8)=59
f(9)=1
f(10)=229
f(11)=1
f(12)=23
f(13)=1
f(14)=31
f(15)=139
f(16)=401
f(17)=1
f(18)=107
f(19)=1
f(20)=1
f(21)=211
f(22)=199
f(23)=79
f(24)=2003
f(25)=1
f(26)=1
f(27)=73
f(28)=43
f(29)=1
f(30)=2687
f(31)=1
f(32)=977
f(33)=191
f(34)=1061
f(35)=1
f(36)=313
f(37)=149
f(38)=1237
f(39)=1
f(40)=443
f(41)=1
f(42)=4271
f(43)=1
f(44)=1
f(45)=1
f(46)=1621
f(47)=1
f(48)=5171
f(49)=1
f(50)=1
f(51)=353
f(52)=1
f(53)=83
f(54)=6143
f(55)=263
f(56)=2161
f(57)=1
f(58)=1
f(59)=1
f(60)=7187
f(61)=307
f(62)=839
f(63)=967
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=2897
f(69)=101
f(70)=233
f(71)=1
f(72)=9491
f(73)=1
f(74)=3301
f(75)=1
f(76)=1
f(77)=439
f(78)=827
f(79)=457
f(80)=113
f(81)=1
f(82)=3877
f(83)=1
f(84)=281
f(85)=1
f(86)=1
f(87)=1597
f(88)=4337
f(89)=1
f(90)=13487
f(91)=1
f(92)=4657
f(93)=1777
f(94)=1607
f(95)=613
f(96)=1151
f(97)=317
f(98)=1
f(99)=983

b) Substitution of the polynom
The polynom f(x)=x^2+60x-13 could be written as f(y)= y^2-913 with x=y-30

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+30
f'(x)>2x+59

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, 37, 11, 1, 1, 383, 19, 59, 1, 229, 1, 23, 1, 31, 139, 401, 1, 107, 1, 1, 211, 199, 79, 2003, 1, 1, 73, 43, 1, 2687, 1, 977, 191, 1061, 1, 313, 149, 1237, 1, 443, 1, 4271, 1, 1, 1, 1621, 1, 5171, 1, 1, 353, 1, 83, 6143, 263, 2161, 1, 1, 1, 7187, 307, 839, 967, 1, 1, 1, 1, 2897, 101, 233, 1, 9491, 1, 3301, 1, 1, 439, 827, 457, 113, 1, 3877, 1, 281, 1, 1, 1597, 4337, 1, 13487, 1, 4657, 1777, 1607, 613, 1151, 317, 1, 983, 1, 677, 1, 1, 1, 541, 5861, 1, 18131, 1, 6229, 2371, 1, 1, 461, 419, 2267, 1, 6997, 887, 21587, 1, 569, 1, 691, 1, 397, 1, 8017, 1523, 1, 521, 347, 1069, 2887, 1, 1, 1, 881, 1, 491, 3541, 503, 1, 29363, 619, 911, 1901, 1, 1297, 1, 1327, 1193, 509, 1, 1, 2591, 1, 499, 1, 1, 1, 35951, 757, 12241, 4639, 463, 1579, 1, 1, 1, 617, 13297, 1, 1, 571, 13841, 2621, 743, 1, 2273, 1, 1129, 5557, 4987, 1, 1, 1, 5179, 5881, 1439, 1997, 48371, 1, 16421, 239, 727, 1, 51071, 1, 1, 1, 5879, 1, 2341, 1, 2029, 6907, 1429, 1171, 56687, 1, 1747, 1, 19541, 821, 3137, 1, 1063, 1, 2281, 1, 62591, 1, 1, 4007, 1657, 1, 65651, 919, 22229, 271, 1, 1, 1, 1, 751, 1, 7879, 1, 71987, 1511, 1, 1, 1, 283, 1031, 1, 25457, 601, 1123, 1, 6047, 3299, 1399, 10039, 1, 1697, 82031, 1721, 1, 1, 907, 3539, 85523, 1, 28901, 1, 29297, 1229, 89087, 1, 30097, 1, 3389, 1, 92723, 3889, 1, 11821, 31729, 1, 96431, 337, 32561, 12289, 1, 1, 4357, 1, 33829, 1, 1, 1, 5477, 4363, 1, 3313, 1, 1, 9817, 1, 1, 1, 2837, 773, 991, 2347, 1021, 14251, 12743, 1, 1, 1, 4349, 3691, 1, 1, 1, 1, 40529, 7643, 3727, 859, 4013, 1, 41941, 15817, 1571, 1, 1, 1, 761, 1487, 1907, 1, 1, 929, 3449, 1, 45329, 1, 1, 1, 4211, 1, 15607, 1471, 141971, 1, 1, 1, 48337, 3037, 146543, 1, 3797, 809, 49877, 2089, 4877, 1583, 863, 2399, 1319, 1, 14173, 6529, 1, 1, 2791, 3331, 1, 2243, 54101, 20389, 1, 1, 165551, 1733, 2423, 21001, 1, 7069, 170483, 1, 1, 1, 1, 1, 13499, 1, 1, 5563, 59621, 1, 180563, 7559, 60757, 2081, 20443, 3851, 185711, 1, 1, 23539, 3319, 7919, 1, 1, 5839, 1, 64817, 2713, 1, 1, 5077, 1, 1, 1, 1013, 1, 1, 25537, 937, 1, 9001, 1, 1619, 2017, 70229, 2939, 1, 4447, 1, 13457, 8009, 9049, 218111, 9127, 24443, 1, 5689, 1, 11777, 3121, 1, 2179, 2447, 1, 229487, 4801, 77137, 1, 2357, 1, 6359, 1, 1, 1861, 6133, 10007, 1009, 1, 81041, 1, 81701, 1709, 1, 10337, 1051, 1, 1213, 1, 253103, 2647, 1, 1, 85717, 1, 1, 1, 4583, 1, 1, 3671, 20411, 1, 89137, 8389, 1109, 1409, 271571, 1, 2339, 1493, 91921, 1, 25261, 1, 93329, 1, 1, 1, 284243, 1, 95461, 1, 32059, 1097, 9377, 12157, 2503, 18371, 2287, 1, 1, 1381, 4339, 37561, 1, 1, 1, 1, 102001, 2953, 1489, 12889, 1, 6491, 1, 1783, 1, 1, 1, 4421, 1, 5009, 1, 1, 323987, 1, 9887, 40927, 1, 6869, 1, 6917, 37019, 1, 111829, 1, 1601, 1, 113381, 5333, 114161, 1, 18149, 1, 6091, 21773, 38839, 7307, 1, 14713, 39367, 1201, 118897, 1, 4919, 1, 1, 45337, 1, 1, 4637, 1, 1217, 1, 41243, 1, 373631, 15619, 4643, 1, 11471, 1, 381011, 5309, 9833, 48091, 128657, 2689, 10499, 1, 1, 4457, 1, 16447, 9209, 2069, 44279, 1, 3613, 16763, 2113, 5623, 1, 25463, 5923, 1, 411251, 17189, 137941, 2731, 3559, 1, 18217, 1, 1, 52861, 141397, 17729, 32831, 1, 143141, 26921, 1823, 1, 1, 1, 145777, 1, 1, 4597, 23297, 1423, 16493, 1801, 2531, 1, 34667, 1, 151121, 1, 1, 6353, 3079, 4793, 11833, 1, 1, 1, 2213, 1, 2269, 1, 157477, 9871, 4441, 6619, 1, 1, 6967, 1, 483503, 5051, 1, 60961, 1753, 1, 25889, 1, 1, 1, 12757, 20789, 13523, 1, 167729, 1, 168677, 1, 6971, 1933, 3967, 2789, 57179, 1, 517487, 1, 19273, 3433, 13417, 21863, 1543, 1, 176357, 1, 1, 1, 1789, 22349, 179281, 1, 20029, 1, 1, 22717, 1, 68521, 9643, 5741, 2777, 1, 1, 1, 16927, 2593, 3323, 11731, 188197, 35381, 63067, 1, 1, 769, 4903, 1, 192229, 1, 18701, 1, 2459, 73039, 195281, 4079, 588911, 12301, 17939, 1, 1787, 24859, 598163, 6247, 1, 9419, 1, 25247, 31973, 1, 5501, 38261, 15737, 4273, 26821, 1, 1, 1, 23081, 1627, 56941, 1, 1, 78889, 210901, 1, 635891, 1, 213029, 1741, 1, 1, 645503, 1, 2141, 20323, 1, 1, 1, 27367, 1, 82507, 20051, 1, 1, 1, 1, 1, 223829, 9349, 674771, 1, 1, 1931, 75707, 1, 52667, 28597, 1, 43103, 1, 14437, 1, 1, 1, 4603, 233777, 2441, 704687, 1, 236017, 1, 8783, 1, 19319, 1, 1, 3461, 7759, 30137, 724991, 10093, 1, 1, 1, 1, 66841, 30707, 3373, 92551, 6343, 15497, 12637, 15569, 83227, 7219, 250837, 2857, 32869, 877, 253157, 1, 1, 1, 3347, 32009, 11159, 1, 1, 1, 777011, 1, 28909, 97789, 8431, 4093, 1, 2741, 263729, 9011, 1, 1, 42017, 1, 267301, 50231, 29833, 33637, 809087, 1, 8209, 25453, 2543, 4261, 1, 1, 274517, 103171, 275729, 1, 26801, 1, 21397, 1, 4049, 1, 19577, 1, 2539, 26479, 3583, 1, 3371, 1, 285521, 4127, 2063, 5987, 1, 1, 1, 1, 96827, 1, 875183, 1, 3617, 4787, 1, 36857, 3709, 1, 296741, 4289, 27091, 1, 28961, 1973, 1, 1, 33533, 1, 909203, 37963, 1, 1, 23509, 19141, 920687, 1, 13399, 115807, 309461, 1, 71711, 1, 1, 14657, 1, 3019, 943871, 39409, 1, 59357, 2129, 19867, 2707, 1, 319829, 120181, 5443, 1, 74411, 1, 1, 1, 108359, 2143, 89017, 20441, 2801, 2677, 8893, 41213, 11941, 1, 331697, 31159, 333029, 1, 1003091, 41879, 1, 1, 1, 21107, 1, 21191, 1, 1, 1, 42719, 9091, 1, 14947, 1, 1, 1, 9199, 43397, 3251, 1, 1, 1, 1051763, 2311, 117319, 132241,

6. Sequence of the polynom (only primes)

13, 3, 37, 11, 383, 19, 59, 229, 23, 31, 139, 401, 107, 211, 199, 79, 2003, 73, 43, 2687, 977, 191, 1061, 313, 149, 1237, 443, 4271, 1621, 5171, 353, 83, 6143, 263, 2161, 7187, 307, 839, 967, 2897, 101, 233, 9491, 3301, 439, 827, 457, 113, 3877, 281, 1597, 4337, 13487, 4657, 1777, 1607, 613, 1151, 317, 983, 677, 541, 5861, 18131, 6229, 2371, 461, 419, 2267, 6997, 887, 21587, 569, 691, 397, 8017, 1523, 521, 347, 1069, 2887, 881, 491, 3541, 503, 29363, 619, 911, 1901, 1297, 1327, 1193, 509, 2591, 499, 35951, 757, 12241, 4639, 463, 1579, 617, 13297, 571, 13841, 2621, 743, 2273, 1129, 5557, 4987, 5179, 5881, 1439, 1997, 48371, 16421, 239, 727, 51071, 5879, 2341, 2029, 6907, 1429, 1171, 56687, 1747, 19541, 821, 3137, 1063, 2281, 62591, 4007, 1657, 65651, 919, 22229, 271, 751, 7879, 71987, 1511, 283, 1031, 25457, 601, 1123, 6047, 3299, 1399, 10039, 1697, 82031, 1721, 907, 3539, 85523, 28901, 29297, 1229, 89087, 30097, 3389, 92723, 3889, 11821, 31729, 96431, 337, 32561, 12289, 4357, 33829, 5477, 4363, 3313, 9817, 2837, 773, 991, 2347, 1021, 14251, 12743, 4349, 3691, 40529, 7643, 3727, 859, 4013, 41941, 15817, 1571, 761, 1487, 1907, 929, 3449, 45329, 4211, 15607, 1471, 141971, 48337, 3037, 146543, 3797, 809, 49877, 2089, 4877, 1583, 863, 2399, 1319, 14173, 6529, 2791, 3331, 2243, 54101, 20389, 165551, 1733, 2423, 21001, 7069, 170483, 13499, 5563, 59621, 180563, 7559, 60757, 2081, 20443, 3851, 185711, 23539, 3319, 7919, 5839, 64817, 2713, 5077, 1013, 25537, 937, 9001, 1619, 2017, 70229, 2939, 4447, 13457, 8009, 9049, 218111, 9127, 24443, 5689, 11777, 3121, 2179, 2447, 229487, 4801, 77137, 2357, 6359, 1861, 6133, 10007, 1009, 81041, 81701, 1709, 10337, 1051, 1213, 253103, 2647, 85717, 4583, 3671, 20411, 89137, 8389, 1109, 1409, 271571, 2339, 1493, 91921, 25261, 93329, 284243, 95461, 32059, 1097, 9377, 12157, 2503, 18371, 2287, 1381, 4339, 37561, 102001, 2953, 1489, 12889, 6491, 1783, 4421, 5009, 323987, 9887, 40927, 6869, 6917, 37019, 111829, 1601, 113381, 5333, 114161, 18149, 6091, 21773, 38839, 7307, 14713, 39367, 1201, 118897, 4919, 45337, 4637, 1217, 41243, 373631, 15619, 4643, 11471, 381011, 5309, 9833, 48091, 128657, 2689, 10499, 4457, 16447, 9209, 2069, 44279, 3613, 16763, 2113, 5623, 25463, 5923, 411251, 17189, 137941, 2731, 3559, 18217, 52861, 141397, 17729, 32831, 143141, 26921, 1823, 145777, 4597, 23297, 1423, 16493, 1801, 2531, 34667, 151121, 6353, 3079, 4793, 11833, 2213, 2269, 157477, 9871, 4441, 6619, 6967, 483503, 5051, 60961, 1753, 25889, 12757, 20789, 13523, 167729, 168677, 6971, 1933, 3967, 2789, 57179, 517487, 19273, 3433, 13417, 21863, 1543, 176357, 1789, 22349, 179281, 20029, 22717, 68521, 9643, 5741, 2777, 16927, 2593, 3323, 11731, 188197, 35381, 63067, 769, 4903, 192229, 18701, 2459, 73039, 195281, 4079, 588911, 12301, 17939, 1787, 24859, 598163, 6247, 9419, 25247, 31973, 5501, 38261, 15737, 4273, 26821, 23081, 1627, 56941, 78889, 210901, 635891, 213029, 1741, 645503, 2141, 20323, 27367, 82507, 20051, 223829, 9349, 674771, 1931, 75707, 52667, 28597, 43103, 14437, 4603, 233777, 2441, 704687, 236017, 8783, 19319, 3461, 7759, 30137, 724991, 10093, 66841, 30707, 3373, 92551, 6343, 15497, 12637, 15569, 83227, 7219, 250837, 2857, 32869, 877, 253157, 3347, 32009, 11159, 777011, 28909, 97789, 8431, 4093, 2741, 263729, 9011, 42017, 267301, 50231, 29833, 33637, 809087, 8209, 25453, 2543, 4261, 274517, 103171, 275729, 26801, 21397, 4049, 19577, 2539, 26479, 3583, 3371, 285521, 4127, 2063, 5987, 96827, 875183, 3617, 4787, 36857, 3709, 296741, 4289, 27091, 28961, 1973, 33533, 909203, 37963, 23509, 19141, 920687, 13399, 115807, 309461, 71711, 14657, 3019, 943871, 39409, 59357, 2129, 19867, 2707, 319829, 120181, 5443, 74411, 108359, 2143, 89017, 20441, 2801, 2677, 8893, 41213, 11941, 331697, 31159, 333029, 1003091, 41879, 21107, 21191, 42719, 9091, 14947, 9199, 43397, 3251, 1051763, 2311, 117319, 132241,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+60x-13 and
the reducible primes which appear as divisor for the first time
p | x^2+60x-13 and p < x^2+60x-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)
1108260.8000000.2000000.8000000.0000000.0000000.000000
21005610460.5600000.1000000.5600007.0000005.0000007.666667
31.000596575390.5960000.0570000.59600010.6428585.70000011.717391
410.0006.1924255.7670.6192000.0425000.61920010.3892627.45614110.699444
5100.00063.6403.38160.2590.6364000.0338100.63640010.2777787.95529410.448934
61.000.000646.33327.262619.0710.6463330.0272620.64633310.1560818.06329410.273502
710.000.0006.533.020229.8086.303.2120.6533020.0229810.65330210.1078238.42960910.181727
8100.000.00065.840.1351.992.09863.848.0370.6584010.0199210.65840110.0780558.66853210.129444
91.000.000.000662.320.16817.582.197644.737.9710.6623200.0175820.66232010.0595218.82597010.098008
1010.000.000.0006.654.524.713157.330.1356.497.194.5780.6654520.0157330.66545210.0472938.94826410.077264


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)
123121.5000000.5000001.0000000.0000000.0000000.000000
244131.0000000.2500000.7500001.3333331.0000001.500000
387250.8750000.2500000.6250001.7500002.0000001.666667
41611290.6875000.1250000.5625001.5714291.0000001.800000
532194150.5937500.1250000.4687501.7272732.0000001.666667
664378290.5781250.1250000.4531251.9473682.0000001.933333
71287212600.5625000.0937500.4687501.9459461.5000002.068965
8256146201260.5703120.0781250.4921882.0277781.6666672.100000
9512298362620.5820310.0703120.5117192.0410961.8000002.079365
101.024611585530.5966800.0566410.5400392.0503361.6111112.110687
112.0481.2361031.1330.6035160.0502930.5532232.0229131.7758622.048825
124.0962.5071892.3180.6120610.0461430.5659182.0283171.8349512.045896
138.1925.0533504.7030.6168210.0427250.5740972.0155561.8518522.028904
1416.38410.2086779.5310.6230470.0413210.5817262.0201861.9342862.026579
1532.76820.6141.24019.3740.6290890.0378420.5912482.0193971.8316102.032735
1665.53641.5302.28339.2470.6336980.0348360.5988622.0146501.8411292.025756
17131.07283.6254.23779.3880.6380080.0323260.6056822.0136051.8558912.022779
18262.144168.0888.020160.0680.6412050.0305940.6106112.0100211.8928492.016274
19524.288337.59915.105322.4940.6439190.0288110.6151082.0084661.8834162.014731
201.048.576677.80028.481649.3190.6464000.0271620.6192392.0077071.8855352.013430
212.097.1521.360.81853.6921.307.1260.6488890.0256020.6232862.0076991.8851872.013072
224.194.3042.730.019102.1272.627.8920.6508870.0243490.6265382.0061601.9020902.010435
238.388.6085.476.594195.1415.281.4530.6528610.0232630.6295982.0060641.9107682.009768
2416.777.21610.982.076372.65210.609.4240.6545830.0222120.6323712.0052751.9096552.008808
2533.554.43222.016.434713.32521.303.1090.6561410.0212590.6348822.0047611.9141852.007942
2667.108.86444.132.0961.368.34942.763.7470.6576190.0203900.6372302.0045071.9182692.007395
27134.217.72888.442.8692.629.32585.813.5440.6589510.0195900.6393612.0040491.9215312.006689
28268.435.456177.217.7105.060.032172.157.6780.6601870.0188500.6413372.0037531.9244602.006183
29536.870.912355.056.8169.748.737345.308.0790.6613450.0181580.6431862.0035061.9266162.005766
301.073.741.824711.278.26318.809.688692.468.5750.6624300.0175180.6449122.0032801.9294492.005364
312.147.483.6481.424.720.95036.339.3341.388.381.6160.6634370.0169220.6465162.0030431.9319482.004974
324.294.967.2962.853.492.98370.292.9962.783.199.9870.6643810.0163660.6480142.0028441.9343502.004636
338.589.934.5925.714.600.445136.092.7985.578.507.6470.6652670.0158430.6494242.0026681.9360792.004350
3417.179.869.18411.443.459.562263.788.28111.179.671.2810.6660970.0153540.6507432.0024951.9382972.004061


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
121100010
241100010
382110011
4162110011
5324130112
6648170314
7128121110615
82562011901019
951236135017118
101.02458157028129
112.0481031102051151
124.09618911880881100
138.192350134901651184
1416.384677167603361340
1532.7681.24011.23906111628
1665.5362.28312.28201.12711.155
17131.0724.23714.23602.07812.158
18262.1448.02018.01904.00314.016
19524.28815.105115.10407.52317.581
201.048.57628.481128.480014.153114.327
212.097.15253.692153.691026.832126.859
224.194.304102.1271102.126051.044151.082
238.388.608195.1411195.140097.689197.451
2416.777.216372.6521372.6510186.3271186.324
2533.554.432713.3251713.3240356.6541356.670
2667.108.8641.368.34911.368.3480684.3221684.026
27134.217.7282.629.32512.629.32401.315.09011.314.234
28268.435.4565.060.03215.060.03102.529.95812.530.073
29536.870.9129.748.73719.748.73604.873.30814.875.428
301.073.741.82418.809.688118.809.68709.405.16119.404.526
312.147.483.64836.339.334136.339.333018.169.636118.169.697
324.294.967.29670.292.996170.292.995035.147.045135.145.950
338.589.934.592136.092.7981136.092.797068.042.910168.049.887
3417.179.869.184263.788.2811263.788.2800131.880.5941131.907.686


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
243110210
385220410
4169531521
53215953723
66429151261067
712860302815151812
8256126665831293333
951226213312776557358
101.024553279272156120162115
112.0481.133578553304264323242
124.0962.3181.1631.153625535642516
138.1924.7032.3792.3221.2961.0801.2541.073
1416.3849.5314.8254.7042.5802.1802.5792.192
1532.76819.3749.8539.5195.2294.4805.1864.479
1665.53639.24719.89619.34910.4499.21510.4279.156
17131.07279.38840.23239.15420.79918.83120.95518.803
18262.144160.06881.07678.99041.72638.20642.10138.035
19524.288322.494162.813159.67984.33876.77884.44276.936
201.048.576649.319327.767321.550169.209155.439169.614155.057
212.097.1521.307.126659.272647.852339.885313.850340.626312.765
224.194.3042.627.8921.324.3731.303.517682.403631.718682.742631.029
238.388.6085.281.4532.661.2632.620.1881.368.5271.271.1291.370.4491.271.348
2416.777.21610.609.4245.344.1165.265.3062.746.3192.557.9412.747.7452.557.419
2533.554.43221.303.10910.726.83710.576.2705.504.7105.144.3175.508.4005.145.682
2667.108.86442.763.74721.524.88121.238.86411.035.84710.342.67811.039.72910.345.493
27134.217.72885.813.54443.183.66142.629.88122.118.61820.784.01122.122.44420.788.471
28268.435.456172.157.67886.613.67585.544.00144.321.75841.750.71544.325.83641.759.369
29536.870.912345.308.079173.671.164171.636.91388.792.49583.846.26088.808.00883.861.316
301.073.741.824692.468.575348.208.588344.259.985177.880.628168.337.261177.901.046168.349.640
312.147.483.6481.388.381.616698.014.299690.367.315356.300.472337.866.215356.331.436337.883.493
324.294.967.2962.783.199.9871.398.958.0841.384.241.901713.601.145677.956.050713.665.273677.977.519
338.589.934.5925.578.507.6472.803.468.9102.775.038.7351.429.130.7771.360.111.3441.429.146.2821.360.119.244
3417.179.869.18411.179.671.2815.617.303.4845.562.367.7952.861.822.0102.727.986.0182.861.810.5052.728.052.748


8. Check for existing Integer Sequences by OEIS

Found in Database : 13, 3, 37, 11, 1, 1, 383, 19, 59, 1, 229, 1, 23, 1, 31, 139, 401, 1, 107, 1,
Found in Database : 13, 3, 37, 11, 383, 19, 59, 229, 23, 31, 139, 401, 107, 211, 199, 79, 2003, 73, 43, 2687, 977, 191, 1061, 313, 149, 1237,
Found in Database : 3, 11, 13, 19, 23, 31, 37, 43, 59, 73, 79, 83, 101, 107, 113, 139, 149,