Inhaltsverzeichnis

Development of
Algorithmic Constructions

05:33:49
Deutsch
19.Apr 2024

Polynom = x^2-38x+59

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) = 59 = 59
f(1) = 11 = 11
f(2) = 13 = 13
f(3) = 23 = 23
f(4) = 77 = 7*11
f(5) = 53 = 53
f(6) = 133 = 7*19
f(7) = 79 = 79
f(8) = 181 = 181
f(9) = 101 = 101
f(10) = 221 = 13*17
f(11) = 119 = 7*17
f(12) = 253 = 11*23
f(13) = 133 = 7*19
f(14) = 277 = 277
f(15) = 143 = 11*13
f(16) = 293 = 293
f(17) = 149 = 149
f(18) = 301 = 7*43
f(19) = 151 = 151
f(20) = 301 = 7*43
f(21) = 149 = 149
f(22) = 293 = 293
f(23) = 143 = 11*13
f(24) = 277 = 277
f(25) = 133 = 7*19
f(26) = 253 = 11*23
f(27) = 119 = 7*17
f(28) = 221 = 13*17
f(29) = 101 = 101
f(30) = 181 = 181
f(31) = 79 = 79
f(32) = 133 = 7*19
f(33) = 53 = 53
f(34) = 77 = 7*11
f(35) = 23 = 23
f(36) = 13 = 13
f(37) = 11 = 11
f(38) = 59 = 59
f(39) = 49 = 7*7
f(40) = 139 = 139
f(41) = 91 = 7*13
f(42) = 227 = 227
f(43) = 137 = 137
f(44) = 323 = 17*19
f(45) = 187 = 11*17
f(46) = 427 = 7*61
f(47) = 241 = 241
f(48) = 539 = 7*7*11
f(49) = 299 = 13*23
f(50) = 659 = 659
f(51) = 361 = 19*19
f(52) = 787 = 787
f(53) = 427 = 7*61
f(54) = 923 = 13*71
f(55) = 497 = 7*71
f(56) = 1067 = 11*97
f(57) = 571 = 571
f(58) = 1219 = 23*53
f(59) = 649 = 11*59
f(60) = 1379 = 7*197
f(61) = 731 = 17*43
f(62) = 1547 = 7*13*17
f(63) = 817 = 19*43
f(64) = 1723 = 1723
f(65) = 907 = 907
f(66) = 1907 = 1907
f(67) = 1001 = 7*11*13
f(68) = 2099 = 2099
f(69) = 1099 = 7*157
f(70) = 2299 = 11*11*19
f(71) = 1201 = 1201
f(72) = 2507 = 23*109
f(73) = 1307 = 1307
f(74) = 2723 = 7*389
f(75) = 1417 = 13*109
f(76) = 2947 = 7*421
f(77) = 1531 = 1531
f(78) = 3179 = 11*17*17
f(79) = 1649 = 17*97
f(80) = 3419 = 13*263
f(81) = 1771 = 7*11*23
f(82) = 3667 = 19*193
f(83) = 1897 = 7*271
f(84) = 3923 = 3923
f(85) = 2027 = 2027
f(86) = 4187 = 53*79
f(87) = 2161 = 2161
f(88) = 4459 = 7*7*7*13
f(89) = 2299 = 11*11*19
f(90) = 4739 = 7*677
f(91) = 2441 = 2441
f(92) = 5027 = 11*457
f(93) = 2587 = 13*199
f(94) = 5323 = 5323
f(95) = 2737 = 7*17*23
f(96) = 5627 = 17*331
f(97) = 2891 = 7*7*59
f(98) = 5939 = 5939
f(99) = 3049 = 3049
f(100) = 6259 = 11*569

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-38x+59

f(0)=59
f(1)=11
f(2)=13
f(3)=23
f(4)=7
f(5)=53
f(6)=19
f(7)=79
f(8)=181
f(9)=101
f(10)=17
f(11)=1
f(12)=1
f(13)=1
f(14)=277
f(15)=1
f(16)=293
f(17)=149
f(18)=43
f(19)=151
f(20)=1
f(21)=1
f(22)=1
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)=139
f(41)=1
f(42)=227
f(43)=137
f(44)=1
f(45)=1
f(46)=61
f(47)=241
f(48)=1
f(49)=1
f(50)=659
f(51)=1
f(52)=787
f(53)=1
f(54)=71
f(55)=1
f(56)=97
f(57)=571
f(58)=1
f(59)=1
f(60)=197
f(61)=1
f(62)=1
f(63)=1
f(64)=1723
f(65)=907
f(66)=1907
f(67)=1
f(68)=2099
f(69)=157
f(70)=1
f(71)=1201
f(72)=109
f(73)=1307
f(74)=389
f(75)=1
f(76)=421
f(77)=1531
f(78)=1
f(79)=1
f(80)=263
f(81)=1
f(82)=193
f(83)=271
f(84)=3923
f(85)=2027
f(86)=1
f(87)=2161
f(88)=1
f(89)=1
f(90)=677
f(91)=2441
f(92)=457
f(93)=199
f(94)=5323
f(95)=1
f(96)=331
f(97)=1
f(98)=5939
f(99)=3049

b) Substitution of the polynom
The polynom f(x)=x^2-38x+59 could be written as f(y)= y^2-302 with x=y+19

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-19
f'(x)>2x-39 with x > 17

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

59, 11, 13, 23, 7, 53, 19, 79, 181, 101, 17, 1, 1, 1, 277, 1, 293, 149, 43, 151, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 139, 1, 227, 137, 1, 1, 61, 241, 1, 1, 659, 1, 787, 1, 71, 1, 97, 571, 1, 1, 197, 1, 1, 1, 1723, 907, 1907, 1, 2099, 157, 1, 1201, 109, 1307, 389, 1, 421, 1531, 1, 1, 263, 1, 193, 271, 3923, 2027, 1, 2161, 1, 1, 677, 2441, 457, 199, 5323, 1, 331, 1, 5939, 3049, 569, 1, 941, 307, 1, 3547, 1, 1, 401, 557, 1, 1, 491, 251, 1, 4457, 1301, 4651, 1, 373, 521, 5051, 937, 751, 10723, 1, 1, 1, 11579, 347, 1, 6121, 1, 577, 12923, 6577, 1217, 1, 13859, 1, 1103, 317, 14827, 7537, 1, 599, 1, 1, 16339, 1, 733, 1223, 17387, 1, 17923, 827, 313, 9371, 1, 9649, 2797, 9931, 20147, 601, 1, 1, 1, 1543, 359, 1009, 1, 877, 3301, 509, 3389, 1, 1, 1, 24979, 1, 1, 1, 26267, 13297, 1, 13627, 563, 607, 367, 1, 673, 1, 1, 2141, 30323, 1, 1, 1, 1867, 1459, 4637, 16411, 431, 883, 33923, 1319, 34667, 2503, 35419, 2557, 1, 1, 36947, 1697, 1, 1, 5501, 1, 3023, 863, 40099, 1, 2153, 1, 3793, 21067, 1, 21481, 6197, 1, 6317, 1, 1, 1, 2417, 1, 1, 3373, 47659, 24049, 48539, 1289, 1, 2267, 1, 479, 4657, 25841, 3067, 1, 547, 3823, 53987, 1433, 4993, 27697, 1, 1, 8117, 28649, 3041, 29131, 4519, 4231, 59723, 1, 3571, 1, 1, 1, 1, 31601, 1, 1, 1097, 1, 1, 4733, 1553, 1, 67819, 34171, 4051, 1, 1427, 35227, 10141, 3251, 1, 36299, 1, 1, 1, 1, 75323, 643, 5879, 631, 1, 2297, 661, 1, 3469, 40177, 80923, 5821, 82067, 5903, 83219, 1, 4441, 1847, 1, 43067, 953, 1, 5171, 1, 641, 1, 8209, 1, 7039, 1, 92723, 2029, 13421, 3637, 13597, 2521, 96419, 1, 967, 1, 1, 1, 5273, 50411, 1429, 719, 1129, 51691, 1, 1, 105323, 4817, 106627, 1, 1, 7757, 6427, 1, 110587, 1, 1, 2963, 1471, 2477, 1879, 57649, 115979, 1, 2729, 8431, 1, 59707, 9239, 1, 1021, 61099, 1, 2687, 1, 62507, 1, 821, 2399, 9133, 11689, 4973, 5653, 65371, 2683, 1, 1117, 3931, 1, 5197, 135859, 887, 137339, 1409, 1, 3673, 6101, 70537, 20261, 6481, 20477, 1, 1013, 4283, 1, 1, 2791, 1, 1091, 1747, 13729, 1069, 1, 6971, 1, 1, 155723, 1, 157307, 1, 1, 1, 160499, 80651, 14737, 81457, 1231, 82267, 1, 1, 166979, 1583, 15329, 1, 170267, 1, 171923, 5081, 10211, 87211, 25037, 1, 1, 8081, 178627, 4723, 1, 12941, 182027, 13063, 4273, 4013, 1, 1579, 1, 5531, 1, 8627, 190667, 1, 1, 13807, 194179, 13933, 10313, 1, 1327, 7639, 2591, 1033, 1, 1, 919, 102001, 1, 1, 18793, 14831, 1, 9521, 16183, 105649, 1, 1, 1, 8269, 1, 9857, 1, 1, 1051, 2251, 221539, 1, 1, 2609, 32189, 4919, 1, 1, 229139, 10459, 12161, 16573, 232987, 983, 1063, 1493, 236867, 1, 1, 1, 1, 1109, 242747, 121867, 2423, 17551, 246707, 1361, 1, 6571, 14747, 1, 2777, 126857, 36389, 127867, 13513, 1, 258779, 1, 20063, 1, 1039, 131947, 1, 1, 1, 7883, 1, 135049, 1, 1, 1373, 1, 275323, 1, 277427, 139241, 21503, 1, 40237, 1, 1, 142427, 1, 1, 22159, 1087, 290219, 20807, 3701, 11287, 26777, 2789, 1, 13537, 42701, 150001, 1, 1, 303299, 1279, 17971, 1, 23671, 154417, 1483, 3617, 1, 3643, 44917, 157771, 24359, 8363, 1, 22861, 321187, 1, 1, 9547, 5521, 1193, 46861, 164587, 47189, 1, 2393, 1, 30449, 24007, 25943, 1, 1, 1, 1, 10091, 1, 172721, 1, 15809, 15173, 175081, 351347, 1, 18617, 1, 6719, 1, 358499, 179849, 1, 1, 1, 1, 15901, 1, 28319, 3769, 1, 26557, 373019, 17011, 375467, 1, 4153, 1877, 1, 190811, 3947, 1, 1, 1, 35257, 27791, 390323, 195787, 392827, 1, 56477, 3361, 5167, 1, 1621, 18257, 402923, 28871, 1, 1709, 408019, 10771, 31583, 1, 59021, 1, 5399, 1, 1, 209801, 420899, 1, 18413, 1597, 38737, 1, 25219, 1777, 8803, 1, 1, 9463, 3187, 218971, 1, 2861, 441923, 4523, 3109, 3779, 447259, 224299, 1, 1, 64661, 1, 1, 228337, 458027, 1, 1, 2539, 463459, 232411, 20269, 233777, 5153, 21377, 1567, 13913, 1, 1, 1, 34183, 36919, 34381, 2003, 242057, 1, 1, 1, 22259, 70157, 246251, 9319, 1, 1, 1, 4583, 3253, 1, 2311, 3533, 253321, 1, 254747, 10427, 1, 5087, 257611, 3613, 1609, 519539, 1, 1, 20149, 1, 263387, 1, 1, 3299, 1, 534059, 1, 48817, 38461, 1, 38671, 41759, 272171, 1, 16097, 7127, 275131, 1, 25147, 1, 3917, 1, 1, 2069, 3089, 2339, 1, 566707, 1, 1, 1, 4813, 1699, 9439, 288649, 578819, 41453, 1, 5953, 584923, 1, 587987, 294761, 84437, 296299, 6529, 297841, 1, 1601, 1, 3307, 4987, 1, 606539, 304049, 11503, 305611, 87541, 23629, 1, 5233, 619067, 28211, 2081, 2621, 36787, 2357, 628547, 315067, 631723, 2617, 6977, 1, 8287, 319849, 641299, 1, 644507, 1, 647723, 46381, 1, 1, 12343, 2293, 4943, 14327, 1, 331147, 51071, 1, 9397, 1, 6151, 1, 2663, 337691, 2741, 19961, 5717, 1, 1, 26357, 1, 18121, 690259, 4493, 1783, 1, 1, 1, 2281, 350971, 100517, 32059, 1, 1, 64577, 1, 12097, 1, 2857, 51343, 2917, 1, 65809, 362801, 14843, 2549, 1, 366217, 9293, 1, 1, 52807, 1, 1, 1, 1, 67993, 6353, 1, 19819, 107837, 1901, 758339, 380041, 69257, 54541, 3463, 1, 2837, 385291, 772339, 1, 1, 1, 111341, 35507, 3449, 392347, 1, 1, 1, 2459, 1979, 1, 3607, 2207, 10399, 2693, 114901, 3331, 1, 404849, 62423, 1, 2221, 1, 818723, 1, 822347, 412081, 1, 1, 16931, 415721, 36229, 32119, 15791, 1, 6947, 3167, 1, 38459, 4261, 424891, 121661, 426737, 1, 1, 1, 1, 862739, 61757, 1, 1, 8971, 436027, 6379, 1, 6599, 439771, 11447, 1, 1, 1, 52291, 1, 1, 63901, 20849, 449201, 14759, 1, 18451, 3259, 1, 454907, 911723, 24043, 915547, 1, 1, 1, 4937, 462571, 1, 42227, 132989, 35879, 133541, 8837, 938659, 470299, 72503, 6133, 41149, 67741, 4547, 476137, 56131, 28123, 10529, 480049,

6. Sequence of the polynom (only primes)

59, 11, 13, 23, 7, 53, 19, 79, 181, 101, 17, 277, 293, 149, 43, 151, 139, 227, 137, 61, 241, 659, 787, 71, 97, 571, 197, 1723, 907, 1907, 2099, 157, 1201, 109, 1307, 389, 421, 1531, 263, 193, 271, 3923, 2027, 2161, 677, 2441, 457, 199, 5323, 331, 5939, 3049, 569, 941, 307, 3547, 401, 557, 491, 251, 4457, 1301, 4651, 373, 521, 5051, 937, 751, 10723, 11579, 347, 6121, 577, 12923, 6577, 1217, 13859, 1103, 317, 14827, 7537, 599, 16339, 733, 1223, 17387, 17923, 827, 313, 9371, 9649, 2797, 9931, 20147, 601, 1543, 359, 1009, 877, 3301, 509, 3389, 24979, 26267, 13297, 13627, 563, 607, 367, 673, 2141, 30323, 1867, 1459, 4637, 16411, 431, 883, 33923, 1319, 34667, 2503, 35419, 2557, 36947, 1697, 5501, 3023, 863, 40099, 2153, 3793, 21067, 21481, 6197, 6317, 2417, 3373, 47659, 24049, 48539, 1289, 2267, 479, 4657, 25841, 3067, 547, 3823, 53987, 1433, 4993, 27697, 8117, 28649, 3041, 29131, 4519, 4231, 59723, 3571, 31601, 1097, 4733, 1553, 67819, 34171, 4051, 1427, 35227, 10141, 3251, 36299, 75323, 643, 5879, 631, 2297, 661, 3469, 40177, 80923, 5821, 82067, 5903, 83219, 4441, 1847, 43067, 953, 5171, 641, 8209, 7039, 92723, 2029, 13421, 3637, 13597, 2521, 96419, 967, 5273, 50411, 1429, 719, 1129, 51691, 105323, 4817, 106627, 7757, 6427, 110587, 2963, 1471, 2477, 1879, 57649, 115979, 2729, 8431, 59707, 9239, 1021, 61099, 2687, 62507, 821, 2399, 9133, 11689, 4973, 5653, 65371, 2683, 1117, 3931, 5197, 135859, 887, 137339, 1409, 3673, 6101, 70537, 20261, 6481, 20477, 1013, 4283, 2791, 1091, 1747, 13729, 1069, 6971, 155723, 157307, 160499, 80651, 14737, 81457, 1231, 82267, 166979, 1583, 15329, 170267, 171923, 5081, 10211, 87211, 25037, 8081, 178627, 4723, 12941, 182027, 13063, 4273, 4013, 1579, 5531, 8627, 190667, 13807, 194179, 13933, 10313, 1327, 7639, 2591, 1033, 919, 102001, 18793, 14831, 9521, 16183, 105649, 8269, 9857, 1051, 2251, 221539, 2609, 32189, 4919, 229139, 10459, 12161, 16573, 232987, 983, 1063, 1493, 236867, 1109, 242747, 121867, 2423, 17551, 246707, 1361, 6571, 14747, 2777, 126857, 36389, 127867, 13513, 258779, 20063, 1039, 131947, 7883, 135049, 1373, 275323, 277427, 139241, 21503, 40237, 142427, 22159, 1087, 290219, 20807, 3701, 11287, 26777, 2789, 13537, 42701, 150001, 303299, 1279, 17971, 23671, 154417, 1483, 3617, 3643, 44917, 157771, 24359, 8363, 22861, 321187, 9547, 5521, 1193, 46861, 164587, 47189, 2393, 30449, 24007, 25943, 10091, 172721, 15809, 15173, 175081, 351347, 18617, 6719, 358499, 179849, 15901, 28319, 3769, 26557, 373019, 17011, 375467, 4153, 1877, 190811, 3947, 35257, 27791, 390323, 195787, 392827, 56477, 3361, 5167, 1621, 18257, 402923, 28871, 1709, 408019, 10771, 31583, 59021, 5399, 209801, 420899, 18413, 1597, 38737, 25219, 1777, 8803, 9463, 3187, 218971, 2861, 441923, 4523, 3109, 3779, 447259, 224299, 64661, 228337, 458027, 2539, 463459, 232411, 20269, 233777, 5153, 21377, 1567, 13913, 34183, 36919, 34381, 2003, 242057, 22259, 70157, 246251, 9319, 4583, 3253, 2311, 3533, 253321, 254747, 10427, 5087, 257611, 3613, 1609, 519539, 20149, 263387, 3299, 534059, 48817, 38461, 38671, 41759, 272171, 16097, 7127, 275131, 25147, 3917, 2069, 3089, 2339, 566707, 4813, 1699, 9439, 288649, 578819, 41453, 5953, 584923, 587987, 294761, 84437, 296299, 6529, 297841, 1601, 3307, 4987, 606539, 304049, 11503, 305611, 87541, 23629, 5233, 619067, 28211, 2081, 2621, 36787, 2357, 628547, 315067, 631723, 2617, 6977, 8287, 319849, 641299, 644507, 647723, 46381, 12343, 2293, 4943, 14327, 331147, 51071, 9397, 6151, 2663, 337691, 2741, 19961, 5717, 26357, 18121, 690259, 4493, 1783, 2281, 350971, 100517, 32059, 64577, 12097, 2857, 51343, 2917, 65809, 362801, 14843, 2549, 366217, 9293, 52807, 67993, 6353, 19819, 107837, 1901, 758339, 380041, 69257, 54541, 3463, 2837, 385291, 772339, 111341, 35507, 3449, 392347, 2459, 1979, 3607, 2207, 10399, 2693, 114901, 3331, 404849, 62423, 2221, 818723, 822347, 412081, 16931, 415721, 36229, 32119, 15791, 6947, 3167, 38459, 4261, 424891, 121661, 426737, 862739, 61757, 8971, 436027, 6379, 6599, 439771, 11447, 52291, 63901, 20849, 449201, 14759, 18451, 3259, 454907, 911723, 24043, 915547, 4937, 462571, 42227, 132989, 35879, 133541, 8837, 938659, 470299, 72503, 6133, 41149, 67741, 4547, 476137, 56131, 28123, 10529, 480049,

7. Distribution of the primes

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

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)
1109810.9000000.8000000.9000000.0000000.0000000.000000
21004733140.4700000.3300000.4700005.2222224.12500014.000000
31.0006332234100.6330000.2230000.63300013.4680856.75757629.285715
410.0006.7451.5515.1940.6745000.1551000.67450010.6556086.95515712.668293
5100.00068.01111.83656.1750.6801100.1183600.68011010.0831737.63120610.815364
61.000.000682.39096.610585.7800.6823900.0966100.68239010.0335248.16238610.427771
710.000.0006.840.910815.3076.025.6030.6840910.0815310.68409110.0249278.43915710.286461
8100.000.00068.510.5167.052.87961.457.6370.6851050.0705290.68510510.0148248.65058010.199417
91.000.000.000685.913.00462.172.952623.740.0520.6859130.0621730.68591310.0117928.81525910.149105
1010.000.000.0006.865.898.575555.880.0926.310.018.4830.6865900.0555880.68659010.0098688.94086610.116424


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
244401.0000001.0000000.0000001.3333331.333333-nan
388711.0000000.8750000.1250002.0000001.750000inf
416111010.6875000.6250000.0625001.3750001.4285711.000000
532141220.4375000.3750000.0625001.2727271.2000002.000000
664232030.3593750.3125000.0468751.6428571.6666671.500000
71286439250.5000000.3046880.1953122.7826091.9500008.333333
825614571740.5664060.2773440.2890622.2656251.8205132.960000
95123101221880.6054690.2382810.3671882.1379311.7183102.540540
101.0246492284210.6337890.2226560.4111332.0935481.8688522.239362
112.0481.3413989430.6547850.1943360.4604492.0662561.7456142.239905
124.0962.7367272.0090.6679690.1774900.4904792.0402681.8266332.130435
138.1925.5311.3104.2210.6751710.1599120.5152592.0215641.8019262.101045
1416.38411.1022.4098.6930.6776120.1470340.5305792.0072321.8389312.059465
1532.76822.2154.39417.8210.6779480.1340940.5438542.0009911.8239932.050040
1665.53644.5248.09636.4280.6793820.1235350.5558472.0042311.8425122.044105
17131.07289.15715.12974.0280.6802140.1154250.5647892.0024481.8687012.032173
18262.144178.60528.358150.2470.6813240.1081770.5731472.0032641.8744132.029597
19524.288357.47053.504303.9660.6818200.1020510.5797692.0014561.8867342.023109
201.048.576715.631100.987614.6440.6824790.0963090.5861702.0019331.8874662.022081
212.097.1521.432.605191.3521.241.2530.6831190.0912440.5918762.0018771.8948182.019467
224.194.3042.867.141363.0132.504.1280.6835800.0865490.5970312.0013481.8970952.017420
238.388.6085.737.814692.1725.045.6420.6840010.0825130.6014872.0012321.9067422.014930
2416.777.21611.481.3731.321.26510.160.1080.6843430.0787540.6055902.0010011.9088682.013640
2533.554.43222.973.6442.528.02320.445.6210.6846680.0753410.6093272.0009491.9133352.012343
2667.108.86445.965.6414.846.47441.119.1670.6849410.0722180.6127232.0007991.9171002.011148
27134.217.72891.967.3159.304.97982.662.3360.6852100.0693270.6158822.0007841.9199482.010312
28268.435.456184.001.57817.897.881166.103.6970.6854590.0666750.6187842.0007281.9234732.009424
29536.870.912368.134.54234.484.487333.650.0550.6857040.0642320.6214722.0007141.9267362.008685
301.073.741.824736.524.76166.512.508670.012.2530.6859420.0619450.6239982.0006951.9287662.008129
312.147.483.6481.473.515.124128.458.2391.345.056.8850.6861590.0598180.6263412.0006321.9313402.007511
324.294.967.2962.947.885.574248.395.9632.699.489.6110.6863580.0578340.6285242.0005811.9336712.006970
338.589.934.5925.897.411.482480.857.1745.416.554.3080.6865490.0559790.6305702.0005561.9358492.006511
3417.179.869.18411.797.920.032931.779.75510.866.140.2770.6867290.0542370.6324932.0005251.9377472.006098


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
123120210
244130211
387340232
41610460262
53212570273
6642010102873
712839192072273
8256713833164573
95121226260248873
101.0242281161125316573
112.0483982051939829073
124.09672736336417054773
138.1921.31065965132897273
1416.3842.4091.1951.2146021.79773
1532.7684.3942.1852.2091.0993.28573
1665.5368.0964.0324.0642.0506.03673
17131.07215.1297.5717.5583.82111.29873
18262.14428.35814.31114.0477.17421.17473
19524.28853.50427.01726.48713.57139.92373
201.048.576100.98750.87950.10825.65775.32073
212.097.152191.35296.29195.06148.500142.84273
224.194.304363.013182.580180.43392.121270.88273
238.388.608692.172347.327344.845175.205516.95773
2416.777.2161.321.265662.962658.303334.262986.99373
2533.554.4322.528.0231.268.0651.259.958639.1171.888.89673
2667.108.8644.846.4742.431.2202.415.2541.224.0433.622.42173
27134.217.7289.304.9794.667.9644.637.0152.349.7396.955.23073
28268.435.45617.897.8818.978.4898.919.3924.519.80813.378.06373
29536.870.91234.484.48717.293.48717.191.0008.702.61925.781.85873
301.073.741.82466.512.50833.351.81533.160.69316.778.98949.733.50973
312.147.483.648128.458.23964.414.24164.043.99832.394.34696.063.88373
324.294.967.296248.395.963124.551.336123.844.62762.619.199185.776.75473
338.589.934.592480.857.174241.083.784239.773.390121.189.482359.667.68273
3417.179.869.184931.779.755467.105.652464.674.103234.769.908697.009.83773


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
240000000
381100100
4161100100
5322200200
6643210210
71282513126694
825674363820152316
9512188939550375744
101.02442120421710087132102
112.048943458485228204266245
124.0962.0099811.028481419575534
138.1924.2212.0652.1561.0418791.1871.114
1416.3848.6934.2944.3992.1701.8552.3992.269
1532.76817.8218.8768.9454.4273.8614.9164.617
1665.53636.42818.20218.2269.0518.0069.9919.380
17131.07274.02837.01537.01318.28316.61620.17218.957
18262.144150.24775.00275.24537.43833.82440.60438.381
19524.288303.966151.768152.19875.47869.17781.54577.766
201.048.576614.644307.053307.591152.790140.800163.944157.110
212.097.1521.241.253620.548620.705308.802286.156329.426316.869
224.194.3042.504.1281.251.4671.252.661623.540580.253662.446637.889
238.388.6085.045.6422.522.2562.523.3861.257.6101.174.6761.330.4461.282.910
2416.777.21610.160.1085.079.7465.080.3622.533.7722.374.3352.671.1762.580.825
2533.554.43220.445.62110.222.37310.223.2485.100.2204.794.7585.363.3845.187.259
2667.108.86441.119.16720.560.09320.559.07410.254.5429.674.04910.760.87810.429.698
27134.217.72882.662.33641.335.87741.326.45920.618.03819.503.28821.589.77720.951.233
28268.435.456166.103.69783.067.94883.035.74941.438.01639.300.11243.293.27342.072.296
29536.870.912333.650.055166.853.987166.796.06883.256.64379.132.64686.811.07884.449.688
301.073.741.824670.012.253335.034.719334.977.534167.214.543159.268.308174.045.212169.484.190
312.147.483.6481.345.056.885672.554.826672.502.059335.714.038320.403.934348.871.273340.067.640
324.294.967.2962.699.489.6111.349.814.7451.349.674.866673.820.254644.258.879699.252.111682.158.367
338.589.934.5925.416.554.3082.708.453.8552.708.100.4531.352.117.1231.294.980.2331.401.277.8581.368.179.094
3417.179.869.18410.866.140.2775.433.351.5505.432.788.7272.712.700.1962.602.118.3332.807.777.6262.743.544.122


8. Check for existing Integer Sequences by OEIS

Found in Database : 59, 11, 13, 23, 7, 53, 19, 79, 181, 101, 17, 1, 1, 1, 277, 1, 293, 149, 43, 151,
Found in Database : 59, 11, 13, 23, 7, 53, 19, 79, 181, 101, 17, 277, 293, 149, 43, 151,
Found in Database : 7, 11, 13, 17, 19, 23, 43, 53, 59, 61, 71, 79, 97, 101, 109, 137, 139, 149,