Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:06:49
Deutsch
19.Apr 2024

Polynom = x^2-46x+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) = 7 = 7
f(2) = 29 = 29
f(3) = 35 = 5*7
f(4) = 109 = 109
f(5) = 73 = 73
f(6) = 181 = 181
f(7) = 107 = 107
f(8) = 245 = 5*7*7
f(9) = 137 = 137
f(10) = 301 = 7*43
f(11) = 163 = 163
f(12) = 349 = 349
f(13) = 185 = 5*37
f(14) = 389 = 389
f(15) = 203 = 7*29
f(16) = 421 = 421
f(17) = 217 = 7*31
f(18) = 445 = 5*89
f(19) = 227 = 227
f(20) = 461 = 461
f(21) = 233 = 233
f(22) = 469 = 7*67
f(23) = 235 = 5*47
f(24) = 469 = 7*67
f(25) = 233 = 233
f(26) = 461 = 461
f(27) = 227 = 227
f(28) = 445 = 5*89
f(29) = 217 = 7*31
f(30) = 421 = 421
f(31) = 203 = 7*29
f(32) = 389 = 389
f(33) = 185 = 5*37
f(34) = 349 = 349
f(35) = 163 = 163
f(36) = 301 = 7*43
f(37) = 137 = 137
f(38) = 245 = 5*7*7
f(39) = 107 = 107
f(40) = 181 = 181
f(41) = 73 = 73
f(42) = 109 = 109
f(43) = 35 = 5*7
f(44) = 29 = 29
f(45) = 7 = 7
f(46) = 59 = 59
f(47) = 53 = 53
f(48) = 155 = 5*31
f(49) = 103 = 103
f(50) = 259 = 7*37
f(51) = 157 = 157
f(52) = 371 = 7*53
f(53) = 215 = 5*43
f(54) = 491 = 491
f(55) = 277 = 277
f(56) = 619 = 619
f(57) = 343 = 7*7*7
f(58) = 755 = 5*151
f(59) = 413 = 7*59
f(60) = 899 = 29*31
f(61) = 487 = 487
f(62) = 1051 = 1051
f(63) = 565 = 5*113
f(64) = 1211 = 7*173
f(65) = 647 = 647
f(66) = 1379 = 7*197
f(67) = 733 = 733
f(68) = 1555 = 5*311
f(69) = 823 = 823
f(70) = 1739 = 37*47
f(71) = 917 = 7*131
f(72) = 1931 = 1931
f(73) = 1015 = 5*7*29
f(74) = 2131 = 2131
f(75) = 1117 = 1117
f(76) = 2339 = 2339
f(77) = 1223 = 1223
f(78) = 2555 = 5*7*73
f(79) = 1333 = 31*43
f(80) = 2779 = 7*397
f(81) = 1447 = 1447
f(82) = 3011 = 3011
f(83) = 1565 = 5*313
f(84) = 3251 = 3251
f(85) = 1687 = 7*241
f(86) = 3499 = 3499
f(87) = 1813 = 7*7*37
f(88) = 3755 = 5*751
f(89) = 1943 = 29*67
f(90) = 4019 = 4019
f(91) = 2077 = 31*67
f(92) = 4291 = 7*613
f(93) = 2215 = 5*443
f(94) = 4571 = 7*653
f(95) = 2357 = 2357
f(96) = 4859 = 43*113
f(97) = 2503 = 2503
f(98) = 5155 = 5*1031
f(99) = 2653 = 7*379
f(100) = 5459 = 53*103

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

f(0)=59
f(1)=7
f(2)=29
f(3)=5
f(4)=109
f(5)=73
f(6)=181
f(7)=107
f(8)=1
f(9)=137
f(10)=43
f(11)=163
f(12)=349
f(13)=37
f(14)=389
f(15)=1
f(16)=421
f(17)=31
f(18)=89
f(19)=227
f(20)=461
f(21)=233
f(22)=67
f(23)=47
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)=53
f(48)=1
f(49)=103
f(50)=1
f(51)=157
f(52)=1
f(53)=1
f(54)=491
f(55)=277
f(56)=619
f(57)=1
f(58)=151
f(59)=1
f(60)=1
f(61)=487
f(62)=1051
f(63)=113
f(64)=173
f(65)=647
f(66)=197
f(67)=733
f(68)=311
f(69)=823
f(70)=1
f(71)=131
f(72)=1931
f(73)=1
f(74)=2131
f(75)=1117
f(76)=2339
f(77)=1223
f(78)=1
f(79)=1
f(80)=397
f(81)=1447
f(82)=3011
f(83)=313
f(84)=3251
f(85)=241
f(86)=3499
f(87)=1
f(88)=751
f(89)=1
f(90)=4019
f(91)=1
f(92)=613
f(93)=443
f(94)=653
f(95)=2357
f(96)=1
f(97)=2503
f(98)=1031
f(99)=379

b) Substitution of the polynom
The polynom f(x)=x^2-46x+59 could be written as f(y)= y^2-470 with x=y+23

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-23
f'(x)>2x-47 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

59, 7, 29, 5, 109, 73, 181, 107, 1, 137, 43, 163, 349, 37, 389, 1, 421, 31, 89, 227, 461, 233, 67, 47, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 53, 1, 103, 1, 157, 1, 1, 491, 277, 619, 1, 151, 1, 1, 487, 1051, 113, 173, 647, 197, 733, 311, 823, 1, 131, 1931, 1, 2131, 1117, 2339, 1223, 1, 1, 397, 1447, 3011, 313, 3251, 241, 3499, 1, 751, 1, 4019, 1, 613, 443, 653, 2357, 1, 2503, 1031, 379, 1, 401, 199, 593, 6091, 1, 1, 1, 193, 3463, 229, 3637, 7451, 1, 1, 571, 8179, 1, 1, 4373, 1277, 4567, 1, 953, 263, 4967, 10139, 739, 2111, 769, 10979, 1, 11411, 1163, 1693, 6037, 251, 6263, 2551, 1, 13219, 1, 13691, 1, 383, 7207, 1, 257, 433, 7703, 2237, 1, 1, 1, 16691, 1, 1, 1249, 1, 9013, 631, 1, 2693, 1913, 1, 1, 19979, 10133, 4111, 1489, 21139, 1531, 701, 2203, 1, 11317, 1, 1, 673, 11933, 24179, 331, 577, 359, 821, 1, 26099, 1, 5351, 467, 3917, 13877, 4013, 2843, 28771, 14557, 1, 2129, 1, 2179, 30859, 15607, 1, 1, 659, 563, 1, 16693, 1, 1, 34499, 1, 35251, 509, 36011, 587, 36779, 18583, 1, 18973, 5477, 1, 1, 1, 547, 1, 40739, 2939, 8311, 20983, 42379, 21397, 6173, 4363, 1, 601, 761, 1, 9151, 3299, 46619, 3361, 47491, 4793, 48371, 24407, 1, 857, 1433, 25303, 51059, 599, 51971, 1, 1, 1, 53819, 27143, 1, 521, 1, 28087, 8093, 1, 1087, 937, 58579, 4219, 1, 4289, 60539, 30517, 1663, 6203, 8933, 31517, 1, 1033, 12911, 32533, 65579, 4721, 1129, 1, 67651, 1, 68699, 34613, 1993, 1, 1, 35677, 1, 7243, 1697, 1, 2389, 1, 15031, 37853, 76259, 1, 1579, 7793, 11213, 1, 773, 40093, 1, 1, 81899, 1, 1567, 8363, 84211, 42397, 12197, 811, 2473, 43573, 87739, 1523, 787, 1279, 1, 6481, 1, 1483, 1, 1259, 13397, 1, 1, 1, 3319, 48437, 97499, 1, 19751, 1, 100019, 853, 1, 10193, 14653, 51607, 1, 52253, 21031, 52903, 3671, 1093, 2293, 1549, 1, 54877, 110419, 829, 1, 839, 1, 1, 114451, 1, 115811, 1, 3167, 8419, 1, 1, 1, 60317, 17333, 12203, 1, 61717, 124139, 62423, 25111, 1, 2953, 1303, 128411, 1, 1459, 65287, 18757, 1, 3793, 2153, 134219, 67477, 4679, 1949, 1, 9851, 1, 1621, 28031, 1499, 1, 2297, 1, 1, 1, 72727, 2003, 10499, 1019, 1, 863, 75037, 1, 1, 21773, 76597, 21997, 77383, 1, 78173, 1, 1, 158731, 1, 2393, 80567, 2417, 81373, 4673, 82183, 3371, 82997, 5381, 16763, 168451, 1, 170099, 1, 34351, 86293, 1, 1, 25013, 1, 25253, 88807, 3797, 89653, 1, 1847, 6271, 1, 183571, 18443, 185291, 93077, 26717, 2539, 5393, 1607, 967, 929, 192251, 1, 1481, 13921, 1, 919, 39511, 99223, 28477, 1889, 1, 1, 202931, 101917, 3863, 1, 1, 1, 208379, 1, 6781, 1, 30293, 106487, 30557, 1, 43151, 108343, 217619, 1, 219491, 1, 1, 3833, 223259, 112103, 1, 1, 1, 1, 1, 22993, 230891, 16561, 232819, 16699, 1619, 2741, 236699, 1, 1, 1, 1, 1069, 3323, 1, 1, 17539, 246539, 17681, 1583, 24953, 1, 4057, 1, 1, 1039, 2411, 256579, 1, 258611, 3709, 260651, 18691, 1, 4547, 52951, 132893, 1, 1, 1, 26993, 8741, 1, 273059, 2797, 1, 1, 277259, 3761, 1, 1, 40213, 141277, 1307, 1, 1, 143413, 4297, 20641, 3259, 4159, 2837, 146647, 10151, 1, 1, 3461, 42677, 1, 300931, 30203, 2833, 1, 305339, 1, 61511, 154333, 309779, 1, 1, 1, 44893, 1151, 316499, 1, 1723, 1, 5441, 23011, 2141, 32443, 325571, 1, 6691, 164503, 9433, 165653, 1, 166807, 334771, 4799, 337091, 1, 10949, 170293, 68351, 1, 49157, 5953, 1, 34763, 348811, 1699, 351179, 25169, 2281, 25339, 355939, 178567, 358331, 1, 1777, 1, 7411, 2719, 1, 183383, 1, 26371, 370411, 5309, 7933, 3529, 6361, 6073, 1, 189493, 1873, 2143, 10343, 38393, 385171, 3943, 387659, 27779, 78031, 1, 1493, 2213, 56453, 1367, 56813, 4639, 1, 1, 1, 28859, 405299, 1, 1, 1, 410411, 205847, 58997, 2011, 1, 7187, 1627, 209717, 420731, 6029, 2447, 1, 425939, 213623, 85711, 1, 1987, 1, 2137, 1, 1811, 218887, 1, 1, 1667, 31649, 1429, 222877, 6673, 44843, 1, 3823, 1, 226903, 1, 1, 2017, 32801, 460571, 6599, 463291, 1, 466019, 233693, 1, 1, 1, 1, 1, 47563, 477011, 34171, 12967, 34369, 1, 241973, 2083, 243367, 1, 48953, 1, 246167, 3769, 8537, 2113, 35569, 1, 35771, 1439, 50363, 505051, 3469, 1, 254663, 14593, 256093, 1, 1, 16661, 1, 519371, 37201, 522259, 1, 105031, 263303, 75437, 264757, 75853, 1, 9049, 267677, 1, 38449, 107951, 1, 1, 1, 545651, 54713, 1, 275047, 78797, 1, 1, 9587, 5413, 1, 560531, 1, 4987, 6011, 566539, 284023, 16273, 285533, 1, 287047, 575611, 57713, 13457, 1, 581699, 41659, 1, 5531, 15887, 1, 1, 59243, 1601, 297757, 597059, 1, 4139, 42979, 1, 43201, 1, 60793, 19661, 2803, 87517, 307093, 1, 308663, 1, 310237, 622051, 1, 21559, 44771, 628379, 314983, 126311, 3557, 90677, 3089, 1, 2063, 641131, 321367, 1, 1, 1933, 1, 650779, 2381, 654011, 65563, 93893, 10627, 1, 331063, 132751, 1, 667019, 6823, 12647, 1, 9227, 337607, 676859, 1, 19433, 340903, 1, 1, 2999, 1, 1, 49411, 23911, 1, 1, 2549, 700099, 350887, 100493, 1, 2729, 354247, 1, 355933, 142711, 1, 16673, 7333, 1, 1, 1823, 362717, 1, 364423, 20873, 366133, 3803, 5039, 737411, 10559, 20023, 1, 2687, 3301, 149551, 1, 15331, 376477, 1, 1, 5021, 1, 17713, 1759, 1, 54779, 14503, 1, 2467, 1, 110813, 388727, 111317, 390493, 1, 392263, 2053, 1, 789851, 1, 1, 397597, 1, 5471, 1, 401173, 16411, 10891, 807731, 80953, 7877, 1, 814939, 1, 5281, 2371, 28351, 6983, 117973, 82763, 118493, 1831, 833099, 2659, 4523, 1, 2341, 60161, 1, 2917, 14369, 2347, 121637, 13763, 1, 428503, 858859, 430357, 862571, 1, 11867, 62011, 20233, 1871, 4723, 1, 1, 439687, 1879, 1, 5861, 2251, 888779, 1, 1, 9127, 8377, 449117, 31039, 90203, 1, 12241, 1, 454823, 5881, 1, 915379, 65521, 21377, 13159, 923051, 4243, 926899, 464413, 1, 2861, 1, 468277, 938491, 1, 942371, 1, 6907, 1, 190031, 11071,

6. Sequence of the polynom (only primes)

59, 7, 29, 5, 109, 73, 181, 107, 137, 43, 163, 349, 37, 389, 421, 31, 89, 227, 461, 233, 67, 47, 53, 103, 157, 491, 277, 619, 151, 487, 1051, 113, 173, 647, 197, 733, 311, 823, 131, 1931, 2131, 1117, 2339, 1223, 397, 1447, 3011, 313, 3251, 241, 3499, 751, 4019, 613, 443, 653, 2357, 2503, 1031, 379, 401, 199, 593, 6091, 193, 3463, 229, 3637, 7451, 571, 8179, 4373, 1277, 4567, 953, 263, 4967, 10139, 739, 2111, 769, 10979, 11411, 1163, 1693, 6037, 251, 6263, 2551, 13219, 13691, 383, 7207, 257, 433, 7703, 2237, 16691, 1249, 9013, 631, 2693, 1913, 19979, 10133, 4111, 1489, 21139, 1531, 701, 2203, 11317, 673, 11933, 24179, 331, 577, 359, 821, 26099, 5351, 467, 3917, 13877, 4013, 2843, 28771, 14557, 2129, 2179, 30859, 15607, 659, 563, 16693, 34499, 35251, 509, 36011, 587, 36779, 18583, 18973, 5477, 547, 40739, 2939, 8311, 20983, 42379, 21397, 6173, 4363, 601, 761, 9151, 3299, 46619, 3361, 47491, 4793, 48371, 24407, 857, 1433, 25303, 51059, 599, 51971, 53819, 27143, 521, 28087, 8093, 1087, 937, 58579, 4219, 4289, 60539, 30517, 1663, 6203, 8933, 31517, 1033, 12911, 32533, 65579, 4721, 1129, 67651, 68699, 34613, 1993, 35677, 7243, 1697, 2389, 15031, 37853, 76259, 1579, 7793, 11213, 773, 40093, 81899, 1567, 8363, 84211, 42397, 12197, 811, 2473, 43573, 87739, 1523, 787, 1279, 6481, 1483, 1259, 13397, 3319, 48437, 97499, 19751, 100019, 853, 10193, 14653, 51607, 52253, 21031, 52903, 3671, 1093, 2293, 1549, 54877, 110419, 829, 839, 114451, 115811, 3167, 8419, 60317, 17333, 12203, 61717, 124139, 62423, 25111, 2953, 1303, 128411, 1459, 65287, 18757, 3793, 2153, 134219, 67477, 4679, 1949, 9851, 1621, 28031, 1499, 2297, 72727, 2003, 10499, 1019, 863, 75037, 21773, 76597, 21997, 77383, 78173, 158731, 2393, 80567, 2417, 81373, 4673, 82183, 3371, 82997, 5381, 16763, 168451, 170099, 34351, 86293, 25013, 25253, 88807, 3797, 89653, 1847, 6271, 183571, 18443, 185291, 93077, 26717, 2539, 5393, 1607, 967, 929, 192251, 1481, 13921, 919, 39511, 99223, 28477, 1889, 202931, 101917, 3863, 208379, 6781, 30293, 106487, 30557, 43151, 108343, 217619, 219491, 3833, 223259, 112103, 22993, 230891, 16561, 232819, 16699, 1619, 2741, 236699, 1069, 3323, 17539, 246539, 17681, 1583, 24953, 4057, 1039, 2411, 256579, 258611, 3709, 260651, 18691, 4547, 52951, 132893, 26993, 8741, 273059, 2797, 277259, 3761, 40213, 141277, 1307, 143413, 4297, 20641, 3259, 4159, 2837, 146647, 10151, 3461, 42677, 300931, 30203, 2833, 305339, 61511, 154333, 309779, 44893, 1151, 316499, 1723, 5441, 23011, 2141, 32443, 325571, 6691, 164503, 9433, 165653, 166807, 334771, 4799, 337091, 10949, 170293, 68351, 49157, 5953, 34763, 348811, 1699, 351179, 25169, 2281, 25339, 355939, 178567, 358331, 1777, 7411, 2719, 183383, 26371, 370411, 5309, 7933, 3529, 6361, 6073, 189493, 1873, 2143, 10343, 38393, 385171, 3943, 387659, 27779, 78031, 1493, 2213, 56453, 1367, 56813, 4639, 28859, 405299, 410411, 205847, 58997, 2011, 7187, 1627, 209717, 420731, 6029, 2447, 425939, 213623, 85711, 1987, 2137, 1811, 218887, 1667, 31649, 1429, 222877, 6673, 44843, 3823, 226903, 2017, 32801, 460571, 6599, 463291, 466019, 233693, 47563, 477011, 34171, 12967, 34369, 241973, 2083, 243367, 48953, 246167, 3769, 8537, 2113, 35569, 35771, 1439, 50363, 505051, 3469, 254663, 14593, 256093, 16661, 519371, 37201, 522259, 105031, 263303, 75437, 264757, 75853, 9049, 267677, 38449, 107951, 545651, 54713, 275047, 78797, 9587, 5413, 560531, 4987, 6011, 566539, 284023, 16273, 285533, 287047, 575611, 57713, 13457, 581699, 41659, 5531, 15887, 59243, 1601, 297757, 597059, 4139, 42979, 43201, 60793, 19661, 2803, 87517, 307093, 308663, 310237, 622051, 21559, 44771, 628379, 314983, 126311, 3557, 90677, 3089, 2063, 641131, 321367, 1933, 650779, 2381, 654011, 65563, 93893, 10627, 331063, 132751, 667019, 6823, 12647, 9227, 337607, 676859, 19433, 340903, 2999, 49411, 23911, 2549, 700099, 350887, 100493, 2729, 354247, 355933, 142711, 16673, 7333, 1823, 362717, 364423, 20873, 366133, 3803, 5039, 737411, 10559, 20023, 2687, 3301, 149551, 15331, 376477, 5021, 17713, 1759, 54779, 14503, 2467, 110813, 388727, 111317, 390493, 392263, 2053, 789851, 397597, 5471, 401173, 16411, 10891, 807731, 80953, 7877, 814939, 5281, 2371, 28351, 6983, 117973, 82763, 118493, 1831, 833099, 2659, 4523, 2341, 60161, 2917, 14369, 2347, 121637, 13763, 428503, 858859, 430357, 862571, 11867, 62011, 20233, 1871, 4723, 439687, 1879, 5861, 2251, 888779, 9127, 8377, 449117, 31039, 90203, 12241, 454823, 5881, 915379, 65521, 21377, 13159, 923051, 4243, 926899, 464413, 2861, 468277, 938491, 942371, 6907, 190031, 11071,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-46x+59 and
the reducible primes which appear as divisor for the first time
p | x^2-46x+59 and p < x^2-46x+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)
11010461.0000000.4000001.0000000.0000000.0000000.000000
21005618380.5600000.1800000.5600005.6000004.5000006.333333
31.0006701345360.6700000.1340000.67000011.9642867.44444514.105263
410.0007.0169086.1080.7016000.0908000.70160010.4716426.77611911.395522
5100.00070.3237.22263.1010.7032300.0722200.70323010.0232327.95374410.330877
61.000.000701.94658.528643.4180.7019460.0585280.7019469.9817418.10412610.196637
710.000.0007.003.523494.3736.509.1500.7003520.0494370.7003529.9772968.44677710.116518
8100.000.00069.927.0634.282.53265.644.5310.6992710.0428250.6992719.9845558.66255310.084962
91.000.000.000698.469.63737.788.244660.681.3930.6984700.0377880.6984709.9885458.82380910.064530
1010.000.000.0006.978.596.796338.156.8136.640.439.9830.6978600.0338160.6978609.9912678.94873010.050896


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
41615780.9375000.4375000.5000001.8750001.7500002.000000
532218130.6562500.2500000.4062501.4000001.1428571.625000
6643011190.4687500.1718750.2968751.4285711.3750001.461538
71287422520.5781250.1718750.4062502.4666672.0000002.736842
8256160451150.6250000.1757810.4492192.1621622.0454552.211539
9512335762590.6542970.1484380.5058592.0937501.6888892.252174
101.0246871355520.6708980.1318360.5390622.0507461.7763162.131274
112.0481.4152361.1790.6909180.1152340.5756842.0596801.7481482.135870
124.0962.8584182.4400.6977540.1020510.5957032.0197881.7711862.069551
138.1925.7237624.9610.6986080.0930180.6055912.0024491.8229662.033197
1416.38411.5011.41510.0860.7019650.0863650.6156012.0096101.8569552.033058
1532.76823.0592.64020.4190.7037050.0805660.6231382.0049561.8657242.024489
1665.53646.0524.89041.1620.7026980.0746150.6280821.9971381.8522732.015867
17131.07292.1369.22582.9110.7029420.0703810.6325612.0006951.8865032.014261
18262.144184.19917.201166.9980.7026630.0656170.6370471.9992081.8646072.014184
19524.288368.24232.353335.8890.7023660.0617080.6406571.9991531.8808792.011335
201.048.576736.14361.144674.9990.7020410.0583110.6437291.9990741.8899022.009589
212.097.1521.471.082115.8341.355.2480.7014670.0552340.6462331.9983641.8944462.007778
224.194.3042.939.944220.4202.719.5240.7009370.0525520.6483851.9984911.9028962.006661
238.388.6085.875.428419.8635.455.5650.7004060.0500520.6503541.9984831.9048322.006073
2416.777.21611.744.984802.26910.942.7150.7000560.0478190.6522371.9990011.9107882.005790
2533.554.43223.478.4121.535.16821.943.2440.6997110.0457520.6539601.9990161.9135332.005283
2667.108.86446.936.1252.941.91043.994.2150.6994030.0438380.6555651.9991181.9163442.004909
27134.217.72893.835.7845.652.87088.182.9140.6991310.0421170.6570141.9992231.9214972.004421
28268.435.456187.607.89910.877.083176.730.8160.6988940.0405200.6583741.9993221.9241702.004139
29536.870.912375.094.36320.955.934354.138.4290.6986680.0390330.6596341.9993531.9266132.003829
301.073.741.824749.950.72540.429.088709.521.6370.6984460.0376530.6607941.9993651.9292432.003515
312.147.483.6481.499.479.56778.107.6191.421.371.9480.6982500.0363720.6618781.9994371.9319662.003282
324.294.967.2962.998.175.182151.068.5692.847.106.6130.6980670.0351730.6628941.9994771.9341082.003069
338.589.934.5925.994.881.673292.507.5235.702.374.1500.6978960.0340520.6638441.9995101.9362572.002867
3417.179.869.18411.986.957.175566.945.97111.420.011.2040.6977330.0330010.6647321.9995321.9382272.002676


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
122020110
243120120
384220130
4167430160
5328440170
66411650470
712822101201570
825645172803870
951276274906970
101.0241354887012870
112.04823683153022970
124.096418149269041170
138.192762263499075570
1416.3841.41548093501.40870
1532.7682.6408801.76002.63370
1665.5364.8901.6313.25904.88370
17131.0729.2253.0676.15809.21870
18262.14417.2015.70711.494017.19470
19524.28832.35310.71421.639032.34670
201.048.57661.14420.19140.953061.13770
212.097.152115.83438.40077.4340115.82770
224.194.304220.42073.225147.1950220.41370
238.388.608419.863139.897279.9660419.85670
2416.777.216802.269267.790534.4790802.26270
2533.554.4321.535.168512.3181.022.85001.535.16170
2667.108.8642.941.910981.6861.960.22402.941.90370
27134.217.7285.652.8701.884.4003.768.47005.652.86370
28268.435.45610.877.0833.625.8227.251.261010.877.07670
29536.870.91220.955.9346.983.92513.972.009020.955.92770
301.073.741.82440.429.08813.475.16926.953.919040.429.08170
312.147.483.64878.107.61926.036.32852.071.291078.107.61270
324.294.967.296151.068.56950.358.325100.710.2440151.068.56270
338.589.934.592292.507.52397.498.209195.009.3140292.507.51670
3417.179.869.184566.945.971188.983.139377.962.8320566.945.96470


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
242110101
384221201
4168532411
53213674612
664191184645
71285228249101518
8256115595623233534
951225913012950478874
101.024552294258108116173155
112.0481.179618561244239346350
124.0962.4401.2741.166517486720717
138.1924.9612.5662.3951.0521.0121.4351.462
1416.38410.0865.3084.7782.2212.0602.8922.913
1532.76820.41910.6719.7484.6304.2095.7745.806
1665.53641.16221.42819.7349.3188.71111.59311.540
17131.07282.91143.01839.89319.05817.69623.13023.027
18262.144166.99886.44680.55238.75236.20646.03546.005
19524.288335.889173.377162.51278.36173.54691.83392.149
201.048.576674.999347.896327.103157.326149.520183.822184.331
212.097.1521.355.248697.693657.555316.693302.802366.906368.847
224.194.3042.719.5241.397.3691.322.155638.401610.402733.982736.739
238.388.6085.455.5652.799.7622.655.8031.284.3381.230.8131.466.4731.473.941
2416.777.21610.942.7155.608.5555.334.1602.583.4772.481.3192.933.0942.944.825
2533.554.43221.943.24411.230.71710.712.5275.193.6495.000.0275.863.6015.885.967
2667.108.86443.994.21522.493.75821.500.45710.437.49210.069.87811.723.54611.763.299
27134.217.72888.182.91445.047.84743.135.06720.970.71120.261.99523.435.89423.514.314
28268.435.456176.730.81690.206.14686.524.67042.122.90540.753.91746.850.65347.003.341
29536.870.912354.138.429180.632.009173.506.42084.565.65781.942.98093.667.99093.961.802
301.073.741.824709.521.637361.622.026347.899.611169.731.672164.658.214187.281.701187.850.050
312.147.483.6481.421.371.948723.939.149697.432.799340.566.962330.784.346374.481.336375.539.304
324.294.967.2962.847.106.6131.449.198.7941.397.907.819683.168.470664.333.272748.761.936750.842.935
338.589.934.5925.702.374.1502.900.806.0912.801.568.0591.370.146.4111.333.789.6331.497.235.5841.501.202.522
3417.179.869.18411.420.011.2045.806.146.0805.613.865.1242.747.431.2772.677.188.0412.993.828.1233.001.563.763


8. Check for existing Integer Sequences by OEIS

Found in Database : 59, 7, 29, 5, 109, 73, 181, 107, 1, 137, 43, 163, 349, 37, 389, 1, 421, 31, 89, 227,
Found in Database : 59, 7, 29, 5, 109, 73, 181, 107, 137, 43, 163, 349, 37, 389, 421, 31, 89, 227, 461, 233, 67, 47,
Found in Database : 5, 7, 29, 31, 37, 43, 47, 53, 59, 67, 73, 89, 103, 107, 109, 113, 131, 137,