Inhaltsverzeichnis

Development of
Algorithmic Constructions

14:35:31
Deutsch
20.Apr 2024

Polynom = x^2-44x+53

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) = 53 = 53
f(1) = 5 = 5
f(2) = 31 = 31
f(3) = 35 = 5*7
f(4) = 107 = 107
f(5) = 71 = 71
f(6) = 175 = 5*5*7
f(7) = 103 = 103
f(8) = 235 = 5*47
f(9) = 131 = 131
f(10) = 287 = 7*41
f(11) = 155 = 5*31
f(12) = 331 = 331
f(13) = 175 = 5*5*7
f(14) = 367 = 367
f(15) = 191 = 191
f(16) = 395 = 5*79
f(17) = 203 = 7*29
f(18) = 415 = 5*83
f(19) = 211 = 211
f(20) = 427 = 7*61
f(21) = 215 = 5*43
f(22) = 431 = 431
f(23) = 215 = 5*43
f(24) = 427 = 7*61
f(25) = 211 = 211
f(26) = 415 = 5*83
f(27) = 203 = 7*29
f(28) = 395 = 5*79
f(29) = 191 = 191
f(30) = 367 = 367
f(31) = 175 = 5*5*7
f(32) = 331 = 331
f(33) = 155 = 5*31
f(34) = 287 = 7*41
f(35) = 131 = 131
f(36) = 235 = 5*47
f(37) = 103 = 103
f(38) = 175 = 5*5*7
f(39) = 71 = 71
f(40) = 107 = 107
f(41) = 35 = 5*7
f(42) = 31 = 31
f(43) = 5 = 5
f(44) = 53 = 53
f(45) = 49 = 7*7
f(46) = 145 = 5*29
f(47) = 97 = 97
f(48) = 245 = 5*7*7
f(49) = 149 = 149
f(50) = 353 = 353
f(51) = 205 = 5*41
f(52) = 469 = 7*67
f(53) = 265 = 5*53
f(54) = 593 = 593
f(55) = 329 = 7*47
f(56) = 725 = 5*5*29
f(57) = 397 = 397
f(58) = 865 = 5*173
f(59) = 469 = 7*67
f(60) = 1013 = 1013
f(61) = 545 = 5*109
f(62) = 1169 = 7*167
f(63) = 625 = 5*5*5*5
f(64) = 1333 = 31*43
f(65) = 709 = 709
f(66) = 1505 = 5*7*43
f(67) = 797 = 797
f(68) = 1685 = 5*337
f(69) = 889 = 7*127
f(70) = 1873 = 1873
f(71) = 985 = 5*197
f(72) = 2069 = 2069
f(73) = 1085 = 5*7*31
f(74) = 2273 = 2273
f(75) = 1189 = 29*41
f(76) = 2485 = 5*7*71
f(77) = 1297 = 1297
f(78) = 2705 = 5*541
f(79) = 1409 = 1409
f(80) = 2933 = 7*419
f(81) = 1525 = 5*5*61
f(82) = 3169 = 3169
f(83) = 1645 = 5*7*47
f(84) = 3413 = 3413
f(85) = 1769 = 29*61
f(86) = 3665 = 5*733
f(87) = 1897 = 7*271
f(88) = 3925 = 5*5*157
f(89) = 2029 = 2029
f(90) = 4193 = 7*599
f(91) = 2165 = 5*433
f(92) = 4469 = 41*109
f(93) = 2305 = 5*461
f(94) = 4753 = 7*7*97
f(95) = 2449 = 31*79
f(96) = 5045 = 5*1009
f(97) = 2597 = 7*7*53
f(98) = 5345 = 5*1069
f(99) = 2749 = 2749
f(100) = 5653 = 5653

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+53

f(0)=53
f(1)=5
f(2)=31
f(3)=7
f(4)=107
f(5)=71
f(6)=1
f(7)=103
f(8)=47
f(9)=131
f(10)=41
f(11)=1
f(12)=331
f(13)=1
f(14)=367
f(15)=191
f(16)=79
f(17)=29
f(18)=83
f(19)=211
f(20)=61
f(21)=43
f(22)=431
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)=1
f(47)=97
f(48)=1
f(49)=149
f(50)=353
f(51)=1
f(52)=67
f(53)=1
f(54)=593
f(55)=1
f(56)=1
f(57)=397
f(58)=173
f(59)=1
f(60)=1013
f(61)=109
f(62)=167
f(63)=1
f(64)=1
f(65)=709
f(66)=1
f(67)=797
f(68)=337
f(69)=127
f(70)=1873
f(71)=197
f(72)=2069
f(73)=1
f(74)=2273
f(75)=1
f(76)=1
f(77)=1297
f(78)=541
f(79)=1409
f(80)=419
f(81)=1
f(82)=3169
f(83)=1
f(84)=3413
f(85)=1
f(86)=733
f(87)=271
f(88)=157
f(89)=2029
f(90)=599
f(91)=433
f(92)=1
f(93)=461
f(94)=1
f(95)=1
f(96)=1009
f(97)=1
f(98)=1069
f(99)=2749

b) Substitution of the polynom
The polynom f(x)=x^2-44x+53 could be written as f(y)= y^2-431 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 > 21

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

53, 5, 31, 7, 107, 71, 1, 103, 47, 131, 41, 1, 331, 1, 367, 191, 79, 29, 83, 211, 61, 43, 431, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 97, 1, 149, 353, 1, 67, 1, 593, 1, 1, 397, 173, 1, 1013, 109, 167, 1, 1, 709, 1, 797, 337, 127, 1873, 197, 2069, 1, 2273, 1, 1, 1297, 541, 1409, 419, 1, 3169, 1, 3413, 1, 733, 271, 157, 2029, 599, 433, 1, 461, 1, 1, 1009, 1, 1069, 2749, 5653, 1, 1, 613, 1, 3229, 1, 1, 199, 1, 1, 1, 7669, 1, 277, 587, 1, 4297, 251, 1, 9173, 937, 1367, 977, 9973, 727, 1, 5297, 2161, 787, 239, 229, 1667, 1, 12113, 1, 359, 6397, 521, 947, 1, 1373, 1, 1, 1, 7349, 1, 1, 3089, 1, 1, 1621, 383, 1, 16993, 8629, 701, 1, 3613, 1, 2659, 1889, 661, 389, 2819, 10009, 1, 1471, 4177, 10589, 1, 311, 761, 2237, 1, 11489, 4657, 1, 683, 12109, 24533, 1, 25169, 2549, 1, 1867, 1, 13397, 1, 13729, 27793, 1, 1, 1, 29153, 1, 1, 487, 1, 2207, 31253, 1, 4567, 1, 32693, 16529, 1, 1, 6833, 2467, 34913, 3529, 673, 1, 36433, 449, 1063, 18797, 1, 619, 1, 3917, 39569, 571, 859, 20389, 8237, 2971, 1, 1, 1, 1, 43669, 4409, 6359, 22469, 1, 3271, 1, 569, 47093, 1, 47969, 1, 997, 1, 9949, 25097, 1447, 881, 1663, 743, 739, 1, 499, 3847, 1, 27397, 1579, 1, 839, 5669, 8167, 1153, 953, 1, 11821, 1, 1, 4327, 1, 1, 8867, 6257, 63073, 1, 1831, 32297, 1, 1, 1613, 1, 67169, 967, 68213, 34369, 1979, 34897, 1, 1, 1, 7193, 72469, 1, 73553, 37049, 14929, 1, 15149, 38149, 10979, 7741, 77969, 7853, 11299, 39829, 3209, 1, 16273, 773, 757, 1187, 2699, 1, 12119, 42709, 1, 1493, 1, 43889, 1319, 1, 2083, 1, 2111, 1, 18397, 691, 2663, 769, 94433, 1901, 1, 9629, 1, 6967, 677, 1051, 1, 1021, 100693, 10133, 2081, 1, 1307, 51949, 1, 1, 21169, 7607, 1291, 10781, 3499, 1559, 109793, 55229, 1, 55897, 1, 56569, 1, 1, 1, 1, 116533, 1, 23581, 1, 23857, 1, 17239, 1, 122069, 12277, 1, 2141, 24977, 8971, 25261, 1549, 127733, 1, 129169, 1, 1, 1, 1, 991, 1, 67129, 2213, 1, 1, 13721, 1, 9907, 1, 1, 4027, 70849, 142453, 14321, 1, 1, 1, 1, 5881, 73897, 1, 10667, 3491, 1, 1, 3049, 4943, 1453, 4423, 77797, 31277, 1, 3853, 15877, 159569, 1, 3041, 80989, 4651, 1, 1, 82609, 23719, 1, 1567, 1, 169313, 877, 1103, 1753, 1381, 86729, 3557, 1, 1181, 17681, 1, 2879, 35869, 1, 36209, 883, 1439, 1, 6361, 1, 1, 93529, 7517, 94397, 5419, 2027, 191413, 1, 6661, 3881, 194933, 1, 39341, 3187, 1, 99689, 200273, 20117, 28867, 20297, 203873, 14627, 1327, 1949, 1, 14887, 209333, 1, 1, 1, 1, 2609, 1, 107897, 8669, 2221, 2767, 1, 220469, 3163, 5171, 1, 1, 1033, 1459, 1, 32579, 22901, 1, 3299, 231893, 1, 1, 1, 1, 118369, 1171, 23869, 3929, 4813, 34519, 121309, 1, 17471, 49117, 123289, 8537, 1, 2423, 25057, 1, 2687, 1237, 127297, 1, 4139, 4861, 1, 2677, 1, 261713, 1, 1, 3079, 1, 1, 267893, 26893, 38567, 1, 272053, 19507, 54829, 137597, 55249, 1, 278353, 27941, 1, 1, 1, 141829, 1627, 142897, 57373, 1, 9323, 29009, 291169, 1, 1489, 147209, 8443, 3617, 2053, 1, 42839, 30097, 6427, 1, 5741, 1427, 61297, 1, 2129, 1597, 1, 1, 7283, 1, 1, 158269, 63533, 3253, 1, 1, 322193, 1, 324469, 32561, 46679, 2447, 65809, 5693, 9467, 2003, 1, 4783, 1759, 33713, 338293, 24247, 1, 1, 1, 172069, 2719, 34649, 49667, 6977, 350033, 25087, 70481, 176797, 70957, 1, 1423, 35837, 1657, 1, 361973, 1, 1, 3449, 73361, 1, 6053, 1, 371669, 1, 6133, 187669, 1, 1733, 15161, 190129, 54499, 38273, 383969, 5503, 5443, 1301, 1, 1, 1, 4789, 1, 39521, 1879, 1283, 56999, 1, 16061, 28771, 1, 1, 5147, 5827, 1, 8209, 1, 7121, 1, 207797, 1, 209089, 419473, 6011, 422069, 42337, 1, 30427, 1, 214297, 1, 1, 8161, 8677, 1, 43649, 1, 4481, 88093, 220897, 1, 1, 1, 1, 64067, 1451, 1, 3709, 12967, 227597, 91309, 32707, 1, 46061, 1, 6619, 3659, 1, 2671, 5717, 94033, 5483, 67559, 1, 475669, 1, 478433, 1, 1, 34471, 96797, 242689, 69539, 48817, 7307, 1693, 2269, 246889, 1, 1, 1, 3727, 2999, 1, 2531, 1, 10337, 253969, 101873, 2011, 2927, 3251, 3457, 1, 1, 51941, 520853, 37307, 1, 262597, 1, 3719, 3061, 53101, 1, 1, 12451, 1, 1, 269897, 1, 38767, 11579, 1, 78167, 10973, 1499, 3323, 15803, 277297, 111217, 39827, 2063, 1933, 13709, 1, 1, 283289, 16231, 9187, 114221, 1, 11717, 1, 577169, 1, 580213, 290869, 1, 41771, 1, 1, 84199, 59093, 592469, 1, 1, 1, 1787, 1, 120349, 301649, 20857, 8663, 1, 60953, 87299, 306329, 1, 6551, 1, 309469, 21397, 8887, 623669, 1, 626833, 44887, 126001, 1, 1, 1, 8963, 1, 91367, 1, 5897, 46027, 129197, 323797, 129841, 1, 15913, 1, 13381, 65729, 658913, 7027, 18919, 331897, 1, 1, 15551, 67033, 671969, 9623, 675253, 338449, 19387, 1, 1, 341749, 97879, 1, 1, 9859, 1, 3181, 1, 1, 4817, 1777, 1, 1, 705169, 1, 1, 355109, 142381, 50971, 4933, 1699, 1, 1, 722069, 1, 1, 363589, 145777, 365297, 1, 11839, 735733, 1, 15727, 1723, 1, 1, 149213, 12893, 4283, 2521, 752993, 1, 2039, 75821, 759953, 1, 1, 1, 1, 54907, 2843, 1, 110567, 77573, 3907, 389629, 4463, 391397, 156913, 56167, 25423, 78989, 19309, 2267, 795233, 398509, 1, 400297, 1, 402089, 1, 80777, 809569, 1, 18911, 407489, 1, 8353, 2311, 8747, 1, 1, 26699, 1, 1, 6829, 4073, 59771, 6709, 1, 842293, 1, 845969, 1, 121379, 1, 170669, 427597, 1, 429449, 860753, 12323, 6599, 2113, 16381, 2143, 34877, 1, 1, 438769, 879413, 88129, 1, 1, 1, 63487, 178141, 1, 178897, 1, 4703, 90017, 4157, 90397, 31237, 453889, 1, 11117, 182701, 9341, 917333, 3677, 921169, 13187, 1, 1, 26539, 1, 37309, 467329, 1997, 1, 940469, 13463, 1, 10067, 3109, 1, 3593, 6719,

6. Sequence of the polynom (only primes)

53, 5, 31, 7, 107, 71, 103, 47, 131, 41, 331, 367, 191, 79, 29, 83, 211, 61, 43, 431, 97, 149, 353, 67, 593, 397, 173, 1013, 109, 167, 709, 797, 337, 127, 1873, 197, 2069, 2273, 1297, 541, 1409, 419, 3169, 3413, 733, 271, 157, 2029, 599, 433, 461, 1009, 1069, 2749, 5653, 613, 3229, 199, 7669, 277, 587, 4297, 251, 9173, 937, 1367, 977, 9973, 727, 5297, 2161, 787, 239, 229, 1667, 12113, 359, 6397, 521, 947, 1373, 7349, 3089, 1621, 383, 16993, 8629, 701, 3613, 2659, 1889, 661, 389, 2819, 10009, 1471, 4177, 10589, 311, 761, 2237, 11489, 4657, 683, 12109, 24533, 25169, 2549, 1867, 13397, 13729, 27793, 29153, 487, 2207, 31253, 4567, 32693, 16529, 6833, 2467, 34913, 3529, 673, 36433, 449, 1063, 18797, 619, 3917, 39569, 571, 859, 20389, 8237, 2971, 43669, 4409, 6359, 22469, 3271, 569, 47093, 47969, 997, 9949, 25097, 1447, 881, 1663, 743, 739, 499, 3847, 27397, 1579, 839, 5669, 8167, 1153, 953, 11821, 4327, 8867, 6257, 63073, 1831, 32297, 1613, 67169, 967, 68213, 34369, 1979, 34897, 7193, 72469, 73553, 37049, 14929, 15149, 38149, 10979, 7741, 77969, 7853, 11299, 39829, 3209, 16273, 773, 757, 1187, 2699, 12119, 42709, 1493, 43889, 1319, 2083, 2111, 18397, 691, 2663, 769, 94433, 1901, 9629, 6967, 677, 1051, 1021, 100693, 10133, 2081, 1307, 51949, 21169, 7607, 1291, 10781, 3499, 1559, 109793, 55229, 55897, 56569, 116533, 23581, 23857, 17239, 122069, 12277, 2141, 24977, 8971, 25261, 1549, 127733, 129169, 991, 67129, 2213, 13721, 9907, 4027, 70849, 142453, 14321, 5881, 73897, 10667, 3491, 3049, 4943, 1453, 4423, 77797, 31277, 3853, 15877, 159569, 3041, 80989, 4651, 82609, 23719, 1567, 169313, 877, 1103, 1753, 1381, 86729, 3557, 1181, 17681, 2879, 35869, 36209, 883, 1439, 6361, 93529, 7517, 94397, 5419, 2027, 191413, 6661, 3881, 194933, 39341, 3187, 99689, 200273, 20117, 28867, 20297, 203873, 14627, 1327, 1949, 14887, 209333, 2609, 107897, 8669, 2221, 2767, 220469, 3163, 5171, 1033, 1459, 32579, 22901, 3299, 231893, 118369, 1171, 23869, 3929, 4813, 34519, 121309, 17471, 49117, 123289, 8537, 2423, 25057, 2687, 1237, 127297, 4139, 4861, 2677, 261713, 3079, 267893, 26893, 38567, 272053, 19507, 54829, 137597, 55249, 278353, 27941, 141829, 1627, 142897, 57373, 9323, 29009, 291169, 1489, 147209, 8443, 3617, 2053, 42839, 30097, 6427, 5741, 1427, 61297, 2129, 1597, 7283, 158269, 63533, 3253, 322193, 324469, 32561, 46679, 2447, 65809, 5693, 9467, 2003, 4783, 1759, 33713, 338293, 24247, 172069, 2719, 34649, 49667, 6977, 350033, 25087, 70481, 176797, 70957, 1423, 35837, 1657, 361973, 3449, 73361, 6053, 371669, 6133, 187669, 1733, 15161, 190129, 54499, 38273, 383969, 5503, 5443, 1301, 4789, 39521, 1879, 1283, 56999, 16061, 28771, 5147, 5827, 8209, 7121, 207797, 209089, 419473, 6011, 422069, 42337, 30427, 214297, 8161, 8677, 43649, 4481, 88093, 220897, 64067, 1451, 3709, 12967, 227597, 91309, 32707, 46061, 6619, 3659, 2671, 5717, 94033, 5483, 67559, 475669, 478433, 34471, 96797, 242689, 69539, 48817, 7307, 1693, 2269, 246889, 3727, 2999, 2531, 10337, 253969, 101873, 2011, 2927, 3251, 3457, 51941, 520853, 37307, 262597, 3719, 3061, 53101, 12451, 269897, 38767, 11579, 78167, 10973, 1499, 3323, 15803, 277297, 111217, 39827, 2063, 1933, 13709, 283289, 16231, 9187, 114221, 11717, 577169, 580213, 290869, 41771, 84199, 59093, 592469, 1787, 120349, 301649, 20857, 8663, 60953, 87299, 306329, 6551, 309469, 21397, 8887, 623669, 626833, 44887, 126001, 8963, 91367, 5897, 46027, 129197, 323797, 129841, 15913, 13381, 65729, 658913, 7027, 18919, 331897, 15551, 67033, 671969, 9623, 675253, 338449, 19387, 341749, 97879, 9859, 3181, 4817, 1777, 705169, 355109, 142381, 50971, 4933, 1699, 722069, 363589, 145777, 365297, 11839, 735733, 15727, 1723, 149213, 12893, 4283, 2521, 752993, 2039, 75821, 759953, 54907, 2843, 110567, 77573, 3907, 389629, 4463, 391397, 156913, 56167, 25423, 78989, 19309, 2267, 795233, 398509, 400297, 402089, 80777, 809569, 18911, 407489, 8353, 2311, 8747, 26699, 6829, 4073, 59771, 6709, 842293, 845969, 121379, 170669, 427597, 429449, 860753, 12323, 6599, 2113, 16381, 2143, 34877, 438769, 879413, 88129, 63487, 178141, 178897, 4703, 90017, 4157, 90397, 31237, 453889, 11117, 182701, 9341, 917333, 3677, 921169, 13187, 26539, 37309, 467329, 1997, 940469, 13463, 10067, 3109, 3593, 6719,

7. Distribution of the primes

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

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
21005030200.5000000.3000000.2000005.0000004.2857146.666667
31.0006351974380.6350000.1970000.43800012.7000006.56666721.900000
410.0006.7621.3945.3680.6762000.1394000.53680010.6488197.07614212.255708
5100.00068.32810.94057.3880.6832800.1094000.57388010.1047037.84791910.690760
61.000.000685.09688.455596.6410.6850960.0884550.59664110.0265788.08546610.396616
710.000.0006.861.878747.1586.114.7200.6861880.0747160.61147210.0159378.44675810.248575
8100.000.00068.694.9726.461.33762.233.6350.6869500.0646130.62233610.0111058.64788510.177675
91.000.000.000687.566.54356.935.184630.631.3590.6875670.0569350.63063110.0089788.81167210.133288
1010.000.000.0006.880.684.635509.091.3946.371.593.2410.6880680.0509090.63715910.0073008.94159610.103515


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
388621.0000000.7500000.2500001.6000001.5000002.000000
416141040.8750000.6250000.2500001.7500001.6666672.000000
532191270.5937500.3750000.2187501.3571431.2000001.750000
664271890.4218750.2812500.1406251.4210531.5000001.285714
71286536290.5078120.2812500.2265622.4074082.0000003.222222
825614464800.5625000.2500000.3125002.2153851.7777782.758621
95123121122000.6093750.2187500.3906252.1666671.7500002.500000
101.0246522014510.6367190.1962890.4404302.0897441.7946432.255000
112.0481.3433659780.6557620.1782230.4775392.0598161.8159202.168514
124.0962.7346602.0740.6674800.1611330.5063482.0357411.8082192.120654
138.1925.5361.1684.3680.6757810.1425780.5332032.0248721.7696972.106075
1416.38411.1262.1788.9480.6790770.1329350.5461432.0097541.8647262.048535
1532.76822.3474.03018.3170.6819760.1229860.5589902.0085381.8503212.047050
1665.53644.7957.46437.3310.6835170.1138920.5696262.0045201.8521092.038052
17131.07289.59613.94075.6560.6835630.1063540.5772092.0001341.8676312.026627
18262.144179.42326.053153.3700.6844440.0993840.5850602.0025781.8689382.027202
19524.288359.06348.858310.2050.6848580.0931890.5916692.0012091.8753312.022592
201.048.576718.38092.398625.9820.6851010.0881180.5969832.0007071.8911542.017962
212.097.1521.437.574174.9591.262.6150.6854890.0834270.6020622.0011331.8935372.017015
224.194.3042.876.586332.4842.544.1020.6858320.0792700.6065612.0010001.9003542.014947
238.388.6085.755.245634.2715.120.9740.6860790.0756110.6104682.0007211.9076742.012881
2416.777.21611.514.5481.210.55010.303.9980.6863210.0721540.6141662.0007051.9085692.012117
2533.554.43223.037.7492.316.45920.721.2900.6865780.0690360.6175432.0007511.9135592.010995
2667.108.86446.093.7274.439.78741.653.9400.6868500.0661580.6206922.0007911.9166272.010200
27134.217.72892.213.9818.524.49083.689.4910.6870480.0635120.6235352.0005761.9200222.009161
28268.435.456184.479.33116.393.287168.086.0440.6872390.0610700.6261692.0005571.9230812.008449
29536.870.912369.053.74731.578.802337.474.9450.6874160.0588200.6285962.0005151.9263252.007751
301.073.741.824738.287.51360.911.847677.375.6660.6875840.0567290.6308552.0004881.9288842.007188
312.147.483.6481.476.919.763117.653.7831.359.265.9800.6877440.0547870.6329582.0004671.9315422.006665
324.294.967.2962.954.489.315227.501.1292.726.988.1860.6878960.0529690.6349262.0004401.9336492.006221
338.589.934.5925.910.201.656440.384.5165.469.817.1400.6880380.0512680.6367712.0004141.9357462.005809
3417.179.869.18411.822.739.692853.380.16910.969.359.5230.6881740.0496730.6385012.0003951.9378072.005434


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
123120021
244130121
386240123
41610460325
53212570426
664187113456
7128361818104166
8256642836244306
95121125260514516
101.024201100101984936
112.04836518518017641796
124.09666034431632243286
138.1921.16860456456545936
1416.3842.1781.1151.0631.08041.0886
1532.7684.0302.0391.9911.99142.0296
1665.5367.4643.7663.6983.70843.7466
17131.07213.9407.0506.8906.96246.9686
18262.14426.05313.14012.91313.060412.9836
19524.28848.85824.58024.27824.497424.3516
201.048.57692.39846.50445.89446.291446.0976
212.097.152174.95987.87287.08787.648487.3016
224.194.304332.484166.873165.611166.3184166.1566
238.388.608634.271318.364315.907317.4584316.8036
2416.777.2161.210.550607.391603.159605.0224605.5186
2533.554.4322.316.4591.163.0021.153.4571.157.21241.159.2376
2667.108.8644.439.7872.228.2382.211.5492.219.51442.220.2636
27134.217.7288.524.4904.277.3884.247.1024.263.07944.261.4016
28268.435.45616.393.2878.222.8648.170.4238.198.86548.194.4126
29536.870.91231.578.80215.838.93715.739.86515.792.396415.786.3966
301.073.741.82460.911.84730.549.08330.362.76430.456.937430.454.9006
312.147.483.648117.653.78358.992.53558.661.24858.826.883458.826.8906
324.294.967.296227.501.129114.059.846113.441.283113.752.4134113.748.7066
338.589.934.592440.384.516220.777.408219.607.108220.196.6644220.187.8426
3417.179.869.184853.380.169427.785.507425.594.662426.701.1984426.678.9616


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
241100001
382110002
4164221003
5327431213
6649451224
71282916137598
825680423820182121
95122001019946486145
101.024451226225105111132103
112.048978493485244228259247
124.0962.0741.0251.049517505509543
138.1924.3682.1572.2111.0791.0741.1061.109
1416.3848.9484.4294.5192.2222.2072.2632.256
1532.76818.3179.1209.1974.5904.5774.5864.564
1665.53637.33118.61518.7169.3299.3309.3669.306
17131.07275.65637.83137.82518.99918.84118.94418.872
18262.144153.37076.82276.54838.45638.13238.41438.368
19524.288310.205155.096155.10977.84977.25177.77177.334
201.048.576625.982312.636313.346157.079155.781157.200155.922
212.097.1521.262.615631.182631.433316.659314.076317.493314.387
224.194.3042.544.1021.271.4051.272.697638.587633.564638.367633.584
238.388.6085.120.9742.560.1472.560.8271.283.8101.276.1281.285.6211.275.415
2416.777.21610.303.9985.149.9195.154.0792.582.8642.567.4482.586.9992.566.687
2533.554.43220.721.29010.357.64710.363.6435.195.2065.162.3155.201.2505.162.519
2667.108.86441.653.94020.820.23220.833.70810.446.04810.378.23310.451.29510.378.364
27134.217.72883.689.49141.835.41941.854.07220.991.26020.854.05320.991.57920.852.599
28268.435.456168.086.04484.036.42084.049.62442.152.78641.890.93242.155.35341.886.973
29536.870.912337.474.945168.725.814168.749.13184.626.73784.114.74884.632.29984.101.161
301.073.741.824677.375.666338.667.954338.707.712169.850.830168.846.210169.849.042168.829.584
312.147.483.6481.359.265.980679.591.989679.673.991340.817.253338.824.132340.814.533338.810.062
324.294.967.2962.726.988.1861.363.413.0091.363.575.177683.725.854679.784.388683.686.531679.791.413
338.589.934.5925.469.817.1402.734.739.4922.735.077.6481.371.308.2331.363.633.4771.371.247.2041.363.628.226
3417.179.869.18410.969.359.5235.484.336.1475.485.023.3762.749.963.2832.734.731.2532.749.860.2682.734.804.719


8. Check for existing Integer Sequences by OEIS

Found in Database : 53, 5, 31, 7, 107, 71, 1, 103, 47, 131, 41, 1, 331, 1, 367, 191, 79, 29, 83, 211,
Found in Database : 53, 5, 31, 7, 107, 71, 103, 47, 131, 41, 331, 367, 191, 79, 29, 83, 211, 61, 43, 431,
Found in Database : 5, 7, 29, 31, 41, 43, 47, 53, 61, 67, 71, 79, 83, 97, 103, 107, 109, 127, 131, 149,