Inhaltsverzeichnis

Development of
Algorithmic Constructions

11:29:01
Deutsch
20.Apr 2024

Polynom = x^2-44x-3

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) = 3 = 3
f(1) = 23 = 23
f(2) = 87 = 3*29
f(3) = 63 = 3*3*7
f(4) = 163 = 163
f(5) = 99 = 3*3*11
f(6) = 231 = 3*7*11
f(7) = 131 = 131
f(8) = 291 = 3*97
f(9) = 159 = 3*53
f(10) = 343 = 7*7*7
f(11) = 183 = 3*61
f(12) = 387 = 3*3*43
f(13) = 203 = 7*29
f(14) = 423 = 3*3*47
f(15) = 219 = 3*73
f(16) = 451 = 11*41
f(17) = 231 = 3*7*11
f(18) = 471 = 3*157
f(19) = 239 = 239
f(20) = 483 = 3*7*23
f(21) = 243 = 3*3*3*3*3
f(22) = 487 = 487
f(23) = 243 = 3*3*3*3*3
f(24) = 483 = 3*7*23
f(25) = 239 = 239
f(26) = 471 = 3*157
f(27) = 231 = 3*7*11
f(28) = 451 = 11*41
f(29) = 219 = 3*73
f(30) = 423 = 3*3*47
f(31) = 203 = 7*29
f(32) = 387 = 3*3*43
f(33) = 183 = 3*61
f(34) = 343 = 7*7*7
f(35) = 159 = 3*53
f(36) = 291 = 3*97
f(37) = 131 = 131
f(38) = 231 = 3*7*11
f(39) = 99 = 3*3*11
f(40) = 163 = 163
f(41) = 63 = 3*3*7
f(42) = 87 = 3*29
f(43) = 23 = 23
f(44) = 3 = 3
f(45) = 21 = 3*7
f(46) = 89 = 89
f(47) = 69 = 3*23
f(48) = 189 = 3*3*3*7
f(49) = 121 = 11*11
f(50) = 297 = 3*3*3*11
f(51) = 177 = 3*59
f(52) = 413 = 7*59
f(53) = 237 = 3*79
f(54) = 537 = 3*179
f(55) = 301 = 7*43
f(56) = 669 = 3*223
f(57) = 369 = 3*3*41
f(58) = 809 = 809
f(59) = 441 = 3*3*7*7
f(60) = 957 = 3*11*29
f(61) = 517 = 11*47
f(62) = 1113 = 3*7*53
f(63) = 597 = 3*199
f(64) = 1277 = 1277
f(65) = 681 = 3*227
f(66) = 1449 = 3*3*7*23
f(67) = 769 = 769
f(68) = 1629 = 3*3*181
f(69) = 861 = 3*7*41
f(70) = 1817 = 23*79
f(71) = 957 = 3*11*29
f(72) = 2013 = 3*11*61
f(73) = 1057 = 7*151
f(74) = 2217 = 3*739
f(75) = 1161 = 3*3*3*43
f(76) = 2429 = 7*347
f(77) = 1269 = 3*3*3*47
f(78) = 2649 = 3*883
f(79) = 1381 = 1381
f(80) = 2877 = 3*7*137
f(81) = 1497 = 3*499
f(82) = 3113 = 11*283
f(83) = 1617 = 3*7*7*11
f(84) = 3357 = 3*3*373
f(85) = 1741 = 1741
f(86) = 3609 = 3*3*401
f(87) = 1869 = 3*7*89
f(88) = 3869 = 53*73
f(89) = 2001 = 3*23*29
f(90) = 4137 = 3*7*197
f(91) = 2137 = 2137
f(92) = 4413 = 3*1471
f(93) = 2277 = 3*3*11*23
f(94) = 4697 = 7*11*61
f(95) = 2421 = 3*3*269
f(96) = 4989 = 3*1663
f(97) = 2569 = 7*367
f(98) = 5289 = 3*41*43
f(99) = 2721 = 3*907
f(100) = 5597 = 29*193

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-44x-3

f(0)=3
f(1)=23
f(2)=29
f(3)=7
f(4)=163
f(5)=11
f(6)=1
f(7)=131
f(8)=97
f(9)=53
f(10)=1
f(11)=61
f(12)=43
f(13)=1
f(14)=47
f(15)=73
f(16)=41
f(17)=1
f(18)=157
f(19)=239
f(20)=1
f(21)=1
f(22)=487
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=1
f(46)=89
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=59
f(52)=1
f(53)=79
f(54)=179
f(55)=1
f(56)=223
f(57)=1
f(58)=809
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=199
f(64)=1277
f(65)=227
f(66)=1
f(67)=769
f(68)=181
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=151
f(74)=739
f(75)=1
f(76)=347
f(77)=1
f(78)=883
f(79)=1381
f(80)=137
f(81)=499
f(82)=283
f(83)=1
f(84)=373
f(85)=1741
f(86)=401
f(87)=1
f(88)=1
f(89)=1
f(90)=197
f(91)=2137
f(92)=1471
f(93)=1
f(94)=1
f(95)=269
f(96)=1663
f(97)=367
f(98)=1
f(99)=907

b) Substitution of the polynom
The polynom f(x)=x^2-44x-3 could be written as f(y)= y^2-487 with x=y+22

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-22
f'(x)>2x-45 with x > 22

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

3, 23, 29, 7, 163, 11, 1, 131, 97, 53, 1, 61, 43, 1, 47, 73, 41, 1, 157, 239, 1, 1, 487, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 89, 1, 1, 1, 1, 59, 1, 79, 179, 1, 223, 1, 809, 1, 1, 1, 1, 199, 1277, 227, 1, 769, 181, 1, 1, 1, 1, 151, 739, 1, 347, 1, 883, 1381, 137, 499, 283, 1, 373, 1741, 401, 1, 1, 1, 197, 2137, 1471, 1, 1, 269, 1663, 367, 1, 907, 193, 1, 1, 3037, 1, 1, 6569, 1123, 1, 3541, 1, 1, 331, 433, 2659, 1, 1, 1423, 1, 1487, 1013, 4657, 1, 1619, 211, 241, 313, 479, 3583, 1, 11177, 1, 1, 1, 4019, 1, 1787, 1, 1, 1, 1493, 1, 13913, 337, 4799, 7321, 709, 1, 1399, 1, 757, 1, 5471, 397, 16937, 1, 647, 1, 1, 277, 1, 1, 1, 9697, 937, 1109, 20249, 1, 1, 1, 1, 1, 22013, 3719, 359, 1, 1, 3923, 3407, 4027, 1, 1, 761, 1, 599, 1, 8803, 461, 1289, 4567, 27737, 4679, 1, 1307, 1, 701, 29789, 5023, 10163, 2203, 10399, 1753, 1, 1, 1, 569, 1, 5623, 1483, 821, 1291, 1, 1319, 857, 3307, 557, 1, 1, 1, 2129, 5531, 1, 13171, 2851, 1, 617, 3739, 1, 1, 1, 1, 1, 43613, 1, 1, 22441, 1373, 1, 1, 863, 15679, 3391, 15971, 8059, 6971, 1, 5521, 1, 1, 1, 2239, 1237, 17471, 26437, 773, 1, 54269, 3041, 1, 2531, 18719, 9439, 1, 1, 1, 1, 1, 9923, 60029, 1, 1, 30757, 2953, 1, 1, 3529, 3049, 1, 21683, 1, 6007, 1009, 7457, 4831, 7573, 11447, 9887, 1, 1, 35401, 1, 1, 1, 1, 24499, 37021, 1, 1789, 75689, 1, 1, 38677, 787, 1, 1613, 13267, 26723, 1, 27103, 4549, 82457, 659, 593, 1, 1, 1, 1409, 14423, 1, 1907, 3271, 1, 89513, 653, 2749, 1, 30643, 1, 1901, 5209, 1, 47497, 1, 1, 96857, 1, 991, 49369, 1, 2381, 641, 16879, 1, 1091, 839, 1, 1, 1, 1, 7603, 1231, 17959, 108413, 1, 1, 55201, 1, 1693, 929, 1, 5417, 1973, 38371, 919, 1, 1, 1, 8467, 3613, 1, 17231, 20219, 4519, 61357, 1, 1, 2903, 1, 42083, 1, 1, 1019, 129113, 7213, 6217, 1601, 1, 22123, 829, 22367, 1, 881, 1, 22859, 1889, 3301, 1, 1709, 6709, 1, 1087, 1, 1, 72337, 48479, 1, 1, 24623, 1, 10663, 16673, 1093, 1, 2309, 51059, 3347, 7369, 8641, 156329, 1, 52639, 79357, 53171, 1, 1, 26987, 1, 81769, 2029, 27527, 1, 27799, 55871, 1, 1, 859, 1, 1, 1, 1, 8297, 29179, 4091, 1, 2819, 8111, 1811, 4289, 1, 30307, 60899, 1873, 61471, 1, 26591, 3463, 5693, 1, 9029, 1, 3137, 1, 1, 96997, 1, 1, 6781, 1, 1, 99661, 66739, 11173, 28859, 11273, 67939, 2089, 68543, 1187, 18859, 1, 1, 105097, 1117, 35339, 1, 1, 1, 1, 72223, 1, 19867, 1, 73471, 1, 74099, 1283, 32027, 1, 25121, 1861, 1, 3469, 1031, 1, 77279, 2707, 2687, 1, 5749, 1, 11317, 10847, 1, 40099, 34511, 40427, 27061, 17467, 27281, 1, 6037, 1, 7561, 1, 1, 14029, 1, 1, 1, 1, 3733, 1, 2917, 1, 1, 1, 9767, 44123, 37967, 1, 1223, 134437, 12853, 15053, 1, 1, 1, 2927, 2141, 1, 1, 46559, 4451, 1, 31393, 4297, 3697, 47623, 95603, 20563, 1579, 1, 291113, 1, 3371, 2777, 1279, 4493, 297629, 49787, 4759, 3499, 1459, 1, 304217, 1, 4441, 1997, 1, 17209, 1, 17333, 1, 2663, 15017, 52747, 317609, 7589, 1, 14591, 1, 1, 6121, 1871, 1, 7127, 109663, 18341, 6761, 1, 1, 23911, 2731, 56179, 338237, 8081, 1, 1, 5443, 57347, 31387, 1, 16553, 2389, 2713, 1, 352349, 6547, 1, 25423, 119039, 1, 1, 1, 40213, 3863, 5783, 60923, 2677, 8761, 123059, 4517, 11261, 1, 8699, 20849, 17929, 188869, 126323, 63367, 1879, 1, 1, 1, 1301, 1, 2477, 1327, 1, 1433, 18757, 1, 396413, 22093, 1, 18191, 1, 1, 404009, 67547, 1, 29131, 1, 68399, 2557, 6257, 12553, 207769, 1, 1, 419417, 1, 1, 211657, 141539, 10141, 38839, 1, 6823, 1, 1657, 1, 1, 72739, 3559, 1, 2011, 1, 1, 3527, 148579, 9719, 1, 74959, 451097, 75407, 1, 227569, 1, 1, 1, 1, 1949, 33091, 2539, 25889, 1, 26041, 156703, 1, 1, 79039, 475613, 1, 2311, 2473, 1, 11489, 483929, 1721, 1, 2017, 163171, 9091, 1, 1, 1, 1, 165983, 83227, 500777, 1, 5087, 10979, 8039, 1801, 2131, 3701, 1, 256801, 171679, 4099, 1, 1, 173599, 1, 1, 87523, 75227, 88007, 2179, 5009, 1, 8089, 1, 12781, 1, 1, 2027, 1, 1, 30313, 26053, 6379, 1, 1, 1, 3187, 61781, 5689, 1, 93419, 1, 13417, 1, 2341, 2459, 1, 571049, 1, 27337, 3643, 4093, 1, 5981, 3343, 1, 3797, 65141, 97967, 84191, 98479, 1, 2267, 4051, 1, 20641, 1, 18233, 3389, 201599, 14437, 26431, 1, 1, 306301, 1, 2503, 8017, 9377, 206819, 1, 2143, 1, 21613, 4987, 209983, 1, 1, 1, 57847, 106319, 10151, 2447, 71413, 1, 10589, 107923, 1, 1, 1, 1, 1, 4057, 219619, 330241, 1, 110623, 665369, 15881, 74293, 30467, 1, 1, 675197, 112807, 32309, 3821, 1, 1, 97871, 38153, 1, 4481, 7951, 1, 695069, 1, 25867, 1759, 1, 117239, 705113, 10709, 3067, 5821, 237283, 1, 715229, 39829, 239539, 2237, 1, 120619, 9421, 1, 1723, 1, 1, 122327, 3299, 1, 246371, 1, 247519, 1, 67819, 1, 1, 9161, 250979, 1, 1, 126359, 3671, 54403, 1, 11593, 33343, 18301, 256799, 13313, 1, 43093, 777437, 1, 37189, 1, 23773, 1, 14869, 131639, 1, 56671, 9817, 3089, 16301, 5801, 1, 36551, 38377, 1951, 10247, 1, 2069, 1, 4463, 19489, 820349, 12457, 1, 1, 91957, 138239, 118751, 3229, 1, 1, 279523, 1, 3329, 1, 281971, 1, 1, 141907, 853289, 1, 1, 2399, 95633, 1867, 78583, 144379, 1, 62143, 290623, 48541, 2909, 1, 1, 1, 3823, 1, 12149, 3023, 32987, 19403, 1, 21341, 1, 3659, 42953, 1, 27449, 1, 1, 1, 1, 1, 305759, 1, 5651, 21977, 9343, 42131, 1, 2543, 1, 2939, 1, 469237, 313471, 1, 944297, 1, 1, 67867, 317363, 5483,

6. Sequence of the polynom (only primes)

3, 23, 29, 7, 163, 11, 131, 97, 53, 61, 43, 47, 73, 41, 157, 239, 487, 89, 59, 79, 179, 223, 809, 199, 1277, 227, 769, 181, 151, 739, 347, 883, 1381, 137, 499, 283, 373, 1741, 401, 197, 2137, 1471, 269, 1663, 367, 907, 193, 3037, 6569, 1123, 3541, 331, 433, 2659, 1423, 1487, 1013, 4657, 1619, 211, 241, 313, 479, 3583, 11177, 4019, 1787, 1493, 13913, 337, 4799, 7321, 709, 1399, 757, 5471, 397, 16937, 647, 277, 9697, 937, 1109, 20249, 22013, 3719, 359, 3923, 3407, 4027, 761, 599, 8803, 461, 1289, 4567, 27737, 4679, 1307, 701, 29789, 5023, 10163, 2203, 10399, 1753, 569, 5623, 1483, 821, 1291, 1319, 857, 3307, 557, 2129, 5531, 13171, 2851, 617, 3739, 43613, 22441, 1373, 863, 15679, 3391, 15971, 8059, 6971, 5521, 2239, 1237, 17471, 26437, 773, 54269, 3041, 2531, 18719, 9439, 9923, 60029, 30757, 2953, 3529, 3049, 21683, 6007, 1009, 7457, 4831, 7573, 11447, 9887, 35401, 24499, 37021, 1789, 75689, 38677, 787, 1613, 13267, 26723, 27103, 4549, 82457, 659, 593, 1409, 14423, 1907, 3271, 89513, 653, 2749, 30643, 1901, 5209, 47497, 96857, 991, 49369, 2381, 641, 16879, 1091, 839, 7603, 1231, 17959, 108413, 55201, 1693, 929, 5417, 1973, 38371, 919, 8467, 3613, 17231, 20219, 4519, 61357, 2903, 42083, 1019, 129113, 7213, 6217, 1601, 22123, 829, 22367, 881, 22859, 1889, 3301, 1709, 6709, 1087, 72337, 48479, 24623, 10663, 16673, 1093, 2309, 51059, 3347, 7369, 8641, 156329, 52639, 79357, 53171, 26987, 81769, 2029, 27527, 27799, 55871, 859, 8297, 29179, 4091, 2819, 8111, 1811, 4289, 30307, 60899, 1873, 61471, 26591, 3463, 5693, 9029, 3137, 96997, 6781, 99661, 66739, 11173, 28859, 11273, 67939, 2089, 68543, 1187, 18859, 105097, 1117, 35339, 72223, 19867, 73471, 74099, 1283, 32027, 25121, 1861, 3469, 1031, 77279, 2707, 2687, 5749, 11317, 10847, 40099, 34511, 40427, 27061, 17467, 27281, 6037, 7561, 14029, 3733, 2917, 9767, 44123, 37967, 1223, 134437, 12853, 15053, 2927, 2141, 46559, 4451, 31393, 4297, 3697, 47623, 95603, 20563, 1579, 291113, 3371, 2777, 1279, 4493, 297629, 49787, 4759, 3499, 1459, 304217, 4441, 1997, 17209, 17333, 2663, 15017, 52747, 317609, 7589, 14591, 6121, 1871, 7127, 109663, 18341, 6761, 23911, 2731, 56179, 338237, 8081, 5443, 57347, 31387, 16553, 2389, 2713, 352349, 6547, 25423, 119039, 40213, 3863, 5783, 60923, 2677, 8761, 123059, 4517, 11261, 8699, 20849, 17929, 188869, 126323, 63367, 1879, 1301, 2477, 1327, 1433, 18757, 396413, 22093, 18191, 404009, 67547, 29131, 68399, 2557, 6257, 12553, 207769, 419417, 211657, 141539, 10141, 38839, 6823, 1657, 72739, 3559, 2011, 3527, 148579, 9719, 74959, 451097, 75407, 227569, 1949, 33091, 2539, 25889, 26041, 156703, 79039, 475613, 2311, 2473, 11489, 483929, 1721, 2017, 163171, 9091, 165983, 83227, 500777, 5087, 10979, 8039, 1801, 2131, 3701, 256801, 171679, 4099, 173599, 87523, 75227, 88007, 2179, 5009, 8089, 12781, 2027, 30313, 26053, 6379, 3187, 61781, 5689, 93419, 13417, 2341, 2459, 571049, 27337, 3643, 4093, 5981, 3343, 3797, 65141, 97967, 84191, 98479, 2267, 4051, 20641, 18233, 3389, 201599, 14437, 26431, 306301, 2503, 8017, 9377, 206819, 2143, 21613, 4987, 209983, 57847, 106319, 10151, 2447, 71413, 10589, 107923, 4057, 219619, 330241, 110623, 665369, 15881, 74293, 30467, 675197, 112807, 32309, 3821, 97871, 38153, 4481, 7951, 695069, 25867, 1759, 117239, 705113, 10709, 3067, 5821, 237283, 715229, 39829, 239539, 2237, 120619, 9421, 1723, 122327, 3299, 246371, 247519, 67819, 9161, 250979, 126359, 3671, 54403, 11593, 33343, 18301, 256799, 13313, 43093, 777437, 37189, 23773, 14869, 131639, 56671, 9817, 3089, 16301, 5801, 36551, 38377, 1951, 10247, 2069, 4463, 19489, 820349, 12457, 91957, 138239, 118751, 3229, 279523, 3329, 281971, 141907, 853289, 2399, 95633, 1867, 78583, 144379, 62143, 290623, 48541, 2909, 3823, 12149, 3023, 32987, 19403, 21341, 3659, 42953, 27449, 305759, 5651, 21977, 9343, 42131, 2543, 2939, 469237, 313471, 944297, 67867, 317363, 5483,

7. Distribution of the primes

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

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
21004212300.4200000.1200000.3000004.6666673.0000006.000000
31.000589835060.5890000.0830000.50600014.0238096.91666716.866667
410.0006.4376585.7790.6437000.0658000.57790010.9286937.92771111.420949
5100.00065.6125.06360.5490.6561200.0506300.60549010.1929477.69452910.477418
61.000.000663.08441.381621.7030.6630840.0413810.62170310.1061398.17321810.267767
710.000.0006.673.559348.8146.324.7450.6673560.0348810.63247410.0644258.42932710.173258
8100.000.00067.049.3053.018.76564.030.5400.6704930.0301880.64030510.0470098.65436810.123814
91.000.000.000672.995.42326.598.928646.396.4950.6729950.0265990.64639610.0373218.81119510.095128
1010.000.000.0006.749.971.545237.804.1466.512.167.3990.6749970.0237800.65121710.0297448.94036610.074572


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
388441.0000000.5000000.5000001.6000001.3333332.000000
416144100.8750000.2500000.6250001.7500001.0000002.500000
532176110.5312500.1875000.3437501.2142861.5000001.100000
664228140.3437500.1250000.2187501.2941181.3333331.272727
71285716410.4453120.1250000.3203122.5909092.0000002.928571
8256129291000.5039060.1132810.3906252.2631581.8125002.439024
9512281512300.5488280.0996090.4492192.1782951.7586212.300000
101.024607865210.5927730.0839840.5087892.1601421.6862752.265217
112.0481.2641621.1020.6171880.0791020.5380862.0823721.8837212.115163
124.0962.5972912.3060.6340330.0710450.5629882.0545891.7962962.092559
138.1925.2625484.7140.6423340.0668950.5754392.0261841.8831622.044232
1416.38410.6291.0149.6150.6487430.0618900.5868532.0199541.8503652.039669
1532.76821.3481.84019.5080.6514890.0561520.5953372.0084671.8145962.028913
1665.53642.9503.45339.4970.6553650.0526890.6026762.0118981.8766302.024657
17131.07286.0986.48879.6100.6568760.0495000.6073762.0046101.8789462.015596
18262.144172.83012.125160.7050.6592940.0462530.6130412.0073641.8688352.018653
19524.288346.82622.918323.9080.6615180.0437130.6178052.0067471.8901442.015544
201.048.576695.27143.277651.9940.6630620.0412720.6217902.0046681.8883412.012899
212.097.1521.393.39481.8881.311.5060.6644220.0390470.6253752.0041021.8921832.011531
224.194.3042.792.672155.4332.637.2390.6658250.0370580.6287672.0042231.8981172.010848
238.388.6085.595.764296.0615.299.7030.6670670.0352930.6317742.0037311.9047502.009565
2416.777.21611.209.372565.53110.643.8410.6681310.0337080.6344222.0031891.9101842.008384
2533.554.43222.450.3691.082.10721.368.2620.6690730.0322490.6368242.0028211.9134352.007571
2667.108.86444.963.2192.073.98542.889.2340.6700040.0309050.6390992.0027831.9166172.007147
27134.217.72890.040.1443.984.14986.055.9950.6708510.0296840.6411672.0025291.9210112.006471
28268.435.456180.291.2287.659.642172.631.5860.6716370.0285340.6431032.0023431.9225292.006038
29536.870.912360.980.37014.749.916346.230.4540.6723780.0274740.6449042.0022071.9256662.005603
301.073.741.824722.701.11028.457.070694.244.0400.6730680.0265030.6465652.0020511.9293042.005150
312.147.483.6481.446.781.39754.961.1981.391.820.1990.6737100.0255930.6481172.0019081.9313722.004800
324.294.967.2962.896.145.603106.273.1132.789.872.4900.6743110.0247440.6495682.0017851.9336022.004478
338.589.934.5925.797.146.313205.713.2895.591.433.0240.6748770.0239480.6509282.0016761.9357042.004189
3417.179.869.18411.603.435.989398.640.43711.204.795.5520.6754090.0232040.6522052.0015771.9378452.003922


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
122010101
243110201
384120301
4164120301
5326230303
6648251313
712816965353
8256291315133103
9512512723263193
101.024863847453353
112.0481627883793773
124.09629114214814531403
138.19254827926826932733
1416.3841.01451050350535033
1532.7681.84094689392939053
1665.5363.4531.7531.6991.74731.7003
17131.0726.4883.2743.2133.24333.2393
18262.14412.1256.1146.0106.06236.0573
19524.28822.91811.60011.31711.439311.4733
201.048.57643.27721.88621.39021.559321.7123
212.097.15281.88841.43840.44940.934340.9483
224.194.304155.43378.68676.74677.696377.7313
238.388.608296.061149.702146.358148.0273148.0283
2416.777.216565.531285.674279.856282.8073282.7183
2533.554.4321.082.107546.939535.167541.0313541.0703
2667.108.8642.073.9851.047.8061.026.1781.036.70131.037.2783
27134.217.7283.984.1492.011.6491.972.4991.991.40231.992.7413
28268.435.4567.659.6423.864.7823.794.8593.829.86433.829.7723
29536.870.91214.749.9167.442.6727.307.2437.374.56137.375.3493
301.073.741.82428.457.07014.352.88214.104.18714.227.192314.229.8723
312.147.483.64854.961.19827.711.17127.250.02627.480.430327.480.7623
324.294.967.296106.273.11353.570.95352.702.15953.131.022353.142.0853
338.589.934.592205.713.289103.673.444102.039.844102.850.3843102.862.8993
3417.179.869.184398.640.437200.862.299197.778.137199.310.6123199.329.8193


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
121010010
242110011
384221111
41610553232
53211653242
66414863344
7128412615614912
8256100524816322131
951223011511540724969
101.02452126825397157110157
112.0481.102546556222329243308
124.0962.3061.1301.176473655518660
138.1924.7142.3202.3941.0241.3131.0411.336
1416.3849.6154.7314.8842.1362.6552.1212.703
1532.76819.5089.7199.7894.3675.3384.3895.414
1665.53639.49719.81419.6838.91410.7358.98310.865
17131.07279.61039.63439.97618.17521.59218.22121.622
18262.144160.70580.24880.45736.95843.41837.13143.198
19524.288323.908161.652162.25674.85086.81075.19187.057
201.048.576651.994325.795326.199151.648174.164152.226173.956
212.097.1521.311.506655.496656.010306.667349.069306.902348.868
224.194.3042.637.2391.317.8761.319.363619.105699.605619.412699.117
238.388.6085.299.7032.648.2042.651.4991.249.3211.401.3061.249.3311.399.745
2416.777.21610.643.8415.321.0995.322.7422.516.7542.805.9402.516.9052.804.242
2533.554.43221.368.26210.682.20010.686.0625.067.3295.617.2725.067.4785.616.183
2667.108.86442.889.23421.441.16421.448.07010.197.28511.249.16310.194.46511.248.321
27134.217.72886.055.99543.025.09643.030.89920.511.04622.523.42020.501.97922.519.550
28268.435.456172.631.58686.316.00186.315.58541.228.95145.096.73541.210.32145.095.579
29536.870.912346.230.454173.111.960173.118.49482.827.72990.293.48982.818.39890.290.838
301.073.741.824694.244.040347.122.381347.121.659166.364.489180.759.412166.350.968180.769.171
312.147.483.6481.391.820.199695.891.092695.929.107334.058.092361.856.208334.038.654361.867.245
324.294.967.2962.789.872.4901.394.904.0491.394.968.441670.596.095724.343.552670.595.574724.337.269
338.589.934.5925.591.433.0242.795.649.4682.795.783.5561.345.859.4251.449.832.8791.345.902.0421.449.838.678
3417.179.869.18411.204.795.5525.602.305.0855.602.490.4672.700.514.3852.901.882.5062.700.516.8742.901.881.787


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 23, 29, 7, 163, 11, 1, 131, 97, 53, 1, 61, 43, 1, 47, 73, 41, 1, 157, 239,
Found in Database : 3, 23, 29, 7, 163, 11, 131, 97, 53, 61, 43, 47, 73, 41, 157, 239, 487,
Found in Database : 3, 7, 11, 23, 29, 41, 43, 47, 53, 59, 61, 73, 79, 89, 97, 131, 137,