Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:14:04
Deutsch
20.Apr 2024

Polynom = x^2+138x-163

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) = 163 = 163
f(1) = 3 = 3
f(2) = 117 = 3*3*13
f(3) = 65 = 5*13
f(4) = 405 = 3*3*3*3*5
f(5) = 69 = 3*23
f(6) = 701 = 701
f(7) = 213 = 3*71
f(8) = 1005 = 3*5*67
f(9) = 145 = 5*29
f(10) = 1317 = 3*439
f(11) = 369 = 3*3*41
f(12) = 1637 = 1637
f(13) = 225 = 3*3*5*5
f(14) = 1965 = 3*5*131
f(15) = 533 = 13*41
f(16) = 2301 = 3*13*59
f(17) = 309 = 3*103
f(18) = 2645 = 5*23*23
f(19) = 705 = 3*5*47
f(20) = 2997 = 3*3*3*3*37
f(21) = 397 = 397
f(22) = 3357 = 3*3*373
f(23) = 885 = 3*5*59
f(24) = 3725 = 5*5*149
f(25) = 489 = 3*163
f(26) = 4101 = 3*1367
f(27) = 1073 = 29*37
f(28) = 4485 = 3*5*13*23
f(29) = 585 = 3*3*5*13
f(30) = 4877 = 4877
f(31) = 1269 = 3*3*3*47
f(32) = 5277 = 3*1759
f(33) = 685 = 5*137
f(34) = 5685 = 3*5*379
f(35) = 1473 = 3*491
f(36) = 6101 = 6101
f(37) = 789 = 3*263
f(38) = 6525 = 3*3*5*5*29
f(39) = 1685 = 5*337
f(40) = 6957 = 3*3*773
f(41) = 897 = 3*13*23
f(42) = 7397 = 13*569
f(43) = 1905 = 3*5*127
f(44) = 7845 = 3*5*523
f(45) = 1009 = 1009
f(46) = 8301 = 3*2767
f(47) = 2133 = 3*3*3*79
f(48) = 8765 = 5*1753
f(49) = 1125 = 3*3*5*5*5
f(50) = 9237 = 3*3079
f(51) = 2369 = 23*103
f(52) = 9717 = 3*41*79
f(53) = 1245 = 3*5*83
f(54) = 10205 = 5*13*157
f(55) = 2613 = 3*13*67
f(56) = 10701 = 3*3*29*41
f(57) = 1369 = 37*37
f(58) = 11205 = 3*3*3*5*83
f(59) = 2865 = 3*5*191
f(60) = 11717 = 11717
f(61) = 1497 = 3*499
f(62) = 12237 = 3*4079
f(63) = 3125 = 5*5*5*5*5
f(64) = 12765 = 3*5*23*37
f(65) = 1629 = 3*3*181
f(66) = 13301 = 47*283
f(67) = 3393 = 3*3*13*29
f(68) = 13845 = 3*5*13*71
f(69) = 1765 = 5*353
f(70) = 14397 = 3*4799
f(71) = 3669 = 3*1223
f(72) = 14957 = 14957
f(73) = 1905 = 3*5*127
f(74) = 15525 = 3*3*3*5*5*23
f(75) = 3953 = 59*67
f(76) = 16101 = 3*3*1789
f(77) = 2049 = 3*683
f(78) = 16685 = 5*47*71
f(79) = 4245 = 3*5*283
f(80) = 17277 = 3*13*443
f(81) = 2197 = 13*13*13
f(82) = 17877 = 3*59*101
f(83) = 4545 = 3*3*5*101
f(84) = 18485 = 5*3697
f(85) = 2349 = 3*3*3*3*29
f(86) = 19101 = 3*6367
f(87) = 4853 = 23*211
f(88) = 19725 = 3*5*5*263
f(89) = 2505 = 3*5*167
f(90) = 20357 = 20357
f(91) = 5169 = 3*1723
f(92) = 20997 = 3*3*2333
f(93) = 2665 = 5*13*41
f(94) = 21645 = 3*3*5*13*37
f(95) = 5493 = 3*1831
f(96) = 22301 = 29*769
f(97) = 2829 = 3*23*41
f(98) = 22965 = 3*5*1531
f(99) = 5825 = 5*5*233
f(100) = 23637 = 3*7879

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+138x-163

f(0)=163
f(1)=3
f(2)=13
f(3)=5
f(4)=1
f(5)=23
f(6)=701
f(7)=71
f(8)=67
f(9)=29
f(10)=439
f(11)=41
f(12)=1637
f(13)=1
f(14)=131
f(15)=1
f(16)=59
f(17)=103
f(18)=1
f(19)=47
f(20)=37
f(21)=397
f(22)=373
f(23)=1
f(24)=149
f(25)=1
f(26)=1367
f(27)=1
f(28)=1
f(29)=1
f(30)=4877
f(31)=1
f(32)=1759
f(33)=137
f(34)=379
f(35)=491
f(36)=6101
f(37)=263
f(38)=1
f(39)=337
f(40)=773
f(41)=1
f(42)=569
f(43)=127
f(44)=523
f(45)=1009
f(46)=2767
f(47)=79
f(48)=1753
f(49)=1
f(50)=3079
f(51)=1
f(52)=1
f(53)=83
f(54)=157
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=191
f(60)=11717
f(61)=499
f(62)=4079
f(63)=1
f(64)=1
f(65)=181
f(66)=283
f(67)=1
f(68)=1
f(69)=353
f(70)=4799
f(71)=1223
f(72)=14957
f(73)=1
f(74)=1
f(75)=1
f(76)=1789
f(77)=683
f(78)=1
f(79)=1
f(80)=443
f(81)=1
f(82)=101
f(83)=1
f(84)=3697
f(85)=1
f(86)=6367
f(87)=211
f(88)=1
f(89)=167
f(90)=20357
f(91)=1723
f(92)=2333
f(93)=1
f(94)=1
f(95)=1831
f(96)=769
f(97)=1
f(98)=1531
f(99)=233

b) Substitution of the polynom
The polynom f(x)=x^2+138x-163 could be written as f(y)= y^2-4924 with x=y-69

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+69
f'(x)>2x+137

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

163, 3, 13, 5, 1, 23, 701, 71, 67, 29, 439, 41, 1637, 1, 131, 1, 59, 103, 1, 47, 37, 397, 373, 1, 149, 1, 1367, 1, 1, 1, 4877, 1, 1759, 137, 379, 491, 6101, 263, 1, 337, 773, 1, 569, 127, 523, 1009, 2767, 79, 1753, 1, 3079, 1, 1, 83, 157, 1, 1, 1, 1, 191, 11717, 499, 4079, 1, 1, 181, 283, 1, 1, 353, 4799, 1223, 14957, 1, 1, 1, 1789, 683, 1, 1, 443, 1, 101, 1, 3697, 1, 6367, 211, 1, 167, 20357, 1723, 2333, 1, 1, 1831, 769, 1, 1531, 233, 7879, 1, 24317, 1, 1667, 3169, 659, 1, 5281, 223, 1, 6869, 1031, 1, 197, 2411, 9767, 3709, 2003, 1, 1, 433, 1, 1597, 431, 1, 419, 2791, 251, 857, 3853, 1, 2729, 1, 1, 9173, 1, 521, 1, 1, 12919, 1, 1, 1, 8089, 1, 1, 10433, 937, 1, 43037, 3623, 14639, 1109, 1, 1, 1987, 641, 239, 1, 1, 1999, 48437, 1, 1097, 6229, 1, 4231, 277, 1, 1, 1013, 1, 1, 1, 1, 18367, 6949, 3739, 1, 57077, 2399, 1, 1, 1, 1, 60101, 5051, 1, 1, 20719, 1741, 63197, 1, 4283, 16193, 21767, 1, 1021, 1, 1, 293, 331, 1151, 13921, 1, 23567, 1, 4787, 1, 1, 1, 1, 1, 5011, 6311, 1861, 3203, 1721, 1, 1, 3299, 79757, 1, 1, 1, 27367, 2297, 16657, 1, 971, 21269, 28559, 719, 17377, 317, 1, 853, 1, 1499, 661, 1, 827, 4621, 6203, 1301, 1, 1, 1, 1, 1, 8123, 1663, 823, 1, 25013, 1, 1, 887, 1, 34439, 1, 2683, 1, 21193, 1481, 761, 26993, 7243, 911, 3793, 401, 12373, 2801, 1, 727, 1, 4783, 7699, 1, 38959, 1, 118277, 1, 1, 1, 1091, 10151, 1, 1, 4591, 1, 13933, 1051, 1103, 10631, 42767, 1, 1, 1, 1, 1, 1, 6673, 389, 5623, 135701, 1, 3049, 3449, 15413, 1, 140237, 1, 1, 2741, 1291, 1, 1, 809, 48799, 18397, 1, 1, 5981, 6263, 1, 1, 1, 1279, 154277, 12923, 1, 3917, 10499, 4397, 409, 2221, 2143, 1, 1, 1, 163997, 1, 1, 20809, 1, 14011, 1, 1, 2473, 1, 1, 1, 2677, 1619, 58567, 1, 11827, 2971, 1, 7499, 1, 1, 4057, 7643, 14177, 1187, 1, 4673, 1061, 1747, 1447, 1, 2551, 1657, 1, 1, 38977, 1, 1, 24697, 7351, 3323, 977, 1, 1, 50753, 2719, 1, 1, 5741, 5323, 1, 13963, 1, 9187, 1, 1579, 2141, 23893, 8999, 216917, 3631, 503, 2113, 5659, 1, 1, 1, 1117, 56369, 75479, 1, 45673, 1, 25589, 28909, 1, 1, 234197, 1, 1, 1, 1, 1, 240101, 1, 16139, 1, 81359, 1571, 1, 1, 1, 62273, 1, 10463, 2017, 4219, 84719, 1, 1, 1429, 1, 1, 86767, 1, 17491, 1, 264437, 22123, 9871, 6689, 1, 1, 270701, 1, 1399, 13693, 91639, 3833, 1, 1, 1, 1523, 2287, 23531, 1, 2371, 2441, 1, 31973, 1, 11597, 24251, 97367, 547, 1, 1, 296477, 4133, 99559, 1153, 1543, 12583, 3001, 1, 1, 1, 3797, 1, 309797, 2591, 1, 1327, 8059, 1, 63313, 1, 106279, 1, 3691, 1, 1, 13523, 4021, 1993, 1, 1, 25409, 1201, 110879, 1669, 1, 9337, 337301, 1567, 22643, 17041, 3931, 1, 26489, 1, 1, 1, 1, 29191, 70297, 2939, 117959, 3061, 1, 1, 3119, 1, 1, 45289, 1, 6079, 1249, 15299, 40933, 18481, 1, 1, 373301, 1, 1, 1, 126079, 1, 1, 1, 1, 1, 1549, 1, 77641, 6491, 1, 3769, 3361, 1, 79153, 1, 1289, 1, 26723, 1, 17539, 1, 135319, 10181, 1, 1, 411101, 17183, 1, 20749, 2011, 1, 11321, 1, 28099, 1, 1, 1, 1, 1, 1, 1607, 143999, 1, 86929, 1, 48589, 54829, 3259, 1471, 1, 1423, 148439, 1, 29867, 1, 7639, 1, 1, 11369, 152039, 1, 12401, 1, 1, 115733, 2243, 19403, 3221, 1, 1, 58897, 157519, 2633, 19013, 2207, 1, 9221, 32059, 4019, 1, 40423, 1, 12197, 1, 1, 1, 20563, 6599, 1, 12763, 2311, 10651, 2789, 33563, 1, 2377, 1459, 101833, 1, 56893, 1, 1, 1, 103561, 43271, 4691, 65269, 1, 2917, 2203, 7333, 7673, 5309, 35491, 1, 41177, 1, 1, 1, 60133, 1, 1, 4547, 1, 137153, 6323, 1, 1, 1, 185359, 69697, 1, 9343, 1, 1, 1697, 141653, 1, 1, 571157, 3671, 14723, 1, 1, 1, 580301, 8081, 38891, 5849, 195479, 24499, 3257, 9851, 1, 1, 22063, 1, 1, 5003, 200639, 150869, 4919, 1, 121633, 16937, 203767, 1, 1, 10267, 2927, 25799, 1, 1, 1, 1, 627101, 52391, 42019, 15797, 1, 1, 4273, 1, 1, 160373, 4561, 26863, 1, 10799, 72173, 3539, 72533, 839, 10093, 1, 219767, 165233, 44171, 1, 4241, 18541, 7691, 1, 1949, 56171, 51977, 1, 1, 34033, 1, 28499, 685637, 1, 1997, 1, 230767, 1, 1, 1, 17923, 3727, 2273, 5867, 28229, 1, 26263, 3863, 1, 11903, 715877, 1, 18443, 1, 48179, 10061, 726101, 1, 1, 1, 1, 61223, 1, 6151, 1, 1, 6353, 1, 1, 1, 1, 93997, 907, 1, 4093, 1, 253567, 190613, 3919, 1, 1, 64123, 1, 1, 1913, 1, 778301, 32503, 1, 39181, 261799, 1, 60689, 1, 10567, 99289, 1, 66491, 159937, 6679, 1, 4909, 89653, 1, 1, 1, 271367, 1, 10903, 1, 5039, 1, 1, 41341, 55243, 34603, 36187, 5347, 1, 1, 3217, 70123, 2389, 7043, 56467, 1, 12329, 3947, 170881, 1, 22003, 8269, 287279, 2879, 1, 1, 96589, 217793, 1, 1, 876797, 1979, 7159, 1, 1, 1, 21661, 1, 1, 1, 298559, 1, 899477, 1, 6691, 113149, 7753, 5827, 1, 7607, 3019, 2269, 13313, 2557, 184489, 1, 2357, 4001, 62011, 1, 71849, 1, 1, 46993, 20929, 39323, 945701, 1, 1, 23789, 317839, 983, 1, 1, 64091, 1, 4073, 1, 1, 16187, 1, 1, 36191, 16319, 1, 1, 1, 246773, 1, 2753, 1, 1, 2617, 24977, 66739, 83591, 1005101, 1, 1, 3889, 112573, 42299, 6091, 16987, 1, 3457, 5101, 28537, 8951, 1, 344479, 19913, 1, 8663, 5081, 2999, 116189, 130969, 1, 1, 17863, 1, 2777, 10601, 1, 1, 1, 1, 71363, 26813, 1, 1, 1078757, 9007, 4813, 271253, 13421, 3491, 1, 18223, 365159, 137197, 9907, 6121, 1, 15361, 1, 1, 14831, 1, 85889, 1, 1, 1, 1087, 1, 7193, 47143, 75571, 1,

6. Sequence of the polynom (only primes)

163, 3, 13, 5, 23, 701, 71, 67, 29, 439, 41, 1637, 131, 59, 103, 47, 37, 397, 373, 149, 1367, 4877, 1759, 137, 379, 491, 6101, 263, 337, 773, 569, 127, 523, 1009, 2767, 79, 1753, 3079, 83, 157, 191, 11717, 499, 4079, 181, 283, 353, 4799, 1223, 14957, 1789, 683, 443, 101, 3697, 6367, 211, 167, 20357, 1723, 2333, 1831, 769, 1531, 233, 7879, 24317, 1667, 3169, 659, 5281, 223, 6869, 1031, 197, 2411, 9767, 3709, 2003, 433, 1597, 431, 419, 2791, 251, 857, 3853, 2729, 9173, 521, 12919, 8089, 10433, 937, 43037, 3623, 14639, 1109, 1987, 641, 239, 1999, 48437, 1097, 6229, 4231, 277, 1013, 18367, 6949, 3739, 57077, 2399, 60101, 5051, 20719, 1741, 63197, 4283, 16193, 21767, 1021, 293, 331, 1151, 13921, 23567, 4787, 5011, 6311, 1861, 3203, 1721, 3299, 79757, 27367, 2297, 16657, 971, 21269, 28559, 719, 17377, 317, 853, 1499, 661, 827, 4621, 6203, 1301, 8123, 1663, 823, 25013, 887, 34439, 2683, 21193, 1481, 761, 26993, 7243, 911, 3793, 401, 12373, 2801, 727, 4783, 7699, 38959, 118277, 1091, 10151, 4591, 13933, 1051, 1103, 10631, 42767, 6673, 389, 5623, 135701, 3049, 3449, 15413, 140237, 2741, 1291, 809, 48799, 18397, 5981, 6263, 1279, 154277, 12923, 3917, 10499, 4397, 409, 2221, 2143, 163997, 20809, 14011, 2473, 2677, 1619, 58567, 11827, 2971, 7499, 4057, 7643, 14177, 1187, 4673, 1061, 1747, 1447, 2551, 1657, 38977, 24697, 7351, 3323, 977, 50753, 2719, 5741, 5323, 13963, 9187, 1579, 2141, 23893, 8999, 216917, 3631, 503, 2113, 5659, 1117, 56369, 75479, 45673, 25589, 28909, 234197, 240101, 16139, 81359, 1571, 62273, 10463, 2017, 4219, 84719, 1429, 86767, 17491, 264437, 22123, 9871, 6689, 270701, 1399, 13693, 91639, 3833, 1523, 2287, 23531, 2371, 2441, 31973, 11597, 24251, 97367, 547, 296477, 4133, 99559, 1153, 1543, 12583, 3001, 3797, 309797, 2591, 1327, 8059, 63313, 106279, 3691, 13523, 4021, 1993, 25409, 1201, 110879, 1669, 9337, 337301, 1567, 22643, 17041, 3931, 26489, 29191, 70297, 2939, 117959, 3061, 3119, 45289, 6079, 1249, 15299, 40933, 18481, 373301, 126079, 1549, 77641, 6491, 3769, 3361, 79153, 1289, 26723, 17539, 135319, 10181, 411101, 17183, 20749, 2011, 11321, 28099, 1607, 143999, 86929, 48589, 54829, 3259, 1471, 1423, 148439, 29867, 7639, 11369, 152039, 12401, 115733, 2243, 19403, 3221, 58897, 157519, 2633, 19013, 2207, 9221, 32059, 4019, 40423, 12197, 20563, 6599, 12763, 2311, 10651, 2789, 33563, 2377, 1459, 101833, 56893, 103561, 43271, 4691, 65269, 2917, 2203, 7333, 7673, 5309, 35491, 41177, 60133, 4547, 137153, 6323, 185359, 69697, 9343, 1697, 141653, 571157, 3671, 14723, 580301, 8081, 38891, 5849, 195479, 24499, 3257, 9851, 22063, 5003, 200639, 150869, 4919, 121633, 16937, 203767, 10267, 2927, 25799, 627101, 52391, 42019, 15797, 4273, 160373, 4561, 26863, 10799, 72173, 3539, 72533, 839, 10093, 219767, 165233, 44171, 4241, 18541, 7691, 1949, 56171, 51977, 34033, 28499, 685637, 1997, 230767, 17923, 3727, 2273, 5867, 28229, 26263, 3863, 11903, 715877, 18443, 48179, 10061, 726101, 61223, 6151, 6353, 93997, 907, 4093, 253567, 190613, 3919, 64123, 1913, 778301, 32503, 39181, 261799, 60689, 10567, 99289, 66491, 159937, 6679, 4909, 89653, 271367, 10903, 5039, 41341, 55243, 34603, 36187, 5347, 3217, 70123, 2389, 7043, 56467, 12329, 3947, 170881, 22003, 8269, 287279, 2879, 96589, 217793, 876797, 1979, 7159, 21661, 298559, 899477, 6691, 113149, 7753, 5827, 7607, 3019, 2269, 13313, 2557, 184489, 2357, 4001, 62011, 71849, 46993, 20929, 39323, 945701, 23789, 317839, 983, 64091, 4073, 16187, 36191, 16319, 246773, 2753, 2617, 24977, 66739, 83591, 1005101, 3889, 112573, 42299, 6091, 16987, 3457, 5101, 28537, 8951, 344479, 19913, 8663, 5081, 2999, 116189, 130969, 17863, 2777, 10601, 71363, 26813, 1078757, 9007, 4813, 271253, 13421, 3491, 18223, 365159, 137197, 9907, 6121, 15361, 14831, 85889, 1087, 7193, 47143, 75571,

7. Distribution of the primes

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

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)
1109360.9000000.3000000.6000000.0000000.0000000.000000
21006011490.6000000.1100000.4900006.6666673.6666678.166667
31.000567834840.5670000.0830000.4840009.4500007.5454559.877551
410.0006.0215945.4270.6021000.0594000.54270010.6190477.15662711.212810
5100.00062.3884.47657.9120.6238800.0447600.57912010.3617347.53535410.671089
61.000.000635.47036.203599.2670.6354700.0362030.59926710.1857738.08824810.347890
710.000.0006.441.777305.8046.135.9730.6441780.0305800.61359710.1370288.44692410.239130
8100.000.00065.052.9012.639.56462.413.3370.6505290.0263960.62413310.0985968.63155510.171710
91.000.000.000655.389.28523.207.198632.182.0870.6553890.0232070.63218210.0747138.79205710.128959
1010.000.000.0006.592.538.399207.178.8356.385.359.5640.6592540.0207180.63853610.0589668.92735210.100507


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
243210.7500000.5000000.2500001.0000001.0000001.000000
387340.8750000.3750000.5000002.3333331.5000004.000000
41613490.8125000.2500000.5625001.8571431.3333332.250000
532216150.6562500.1875000.4687501.6153851.5000001.666667
664409310.6250000.1406250.4843751.9047621.5000002.066667
71287715620.6015620.1171880.4843751.9250001.6666672.000000
8256142281140.5546880.1093750.4453121.8441561.8666671.838710
9512286482380.5585940.0937500.4648442.0140851.7142862.087719
101.024582864960.5683590.0839840.4843752.0349651.7916672.084034
112.0481.1891501.0390.5805660.0732420.5073242.0429551.7441862.094758
124.0962.4102752.1350.5883790.0671390.5212402.0269131.8333332.054860
138.1924.9055034.4020.5987550.0614010.5373542.0352701.8290912.061827
1416.3849.9779079.0700.6089480.0553590.5535892.0340471.8031812.060427
1532.76820.1601.65618.5040.6152340.0505370.5646972.0206481.8257992.040132
1665.53640.6703.09037.5800.6205750.0471500.5734252.0173611.8659422.030912
17131.07281.9555.69576.2600.6252670.0434490.5818182.0151221.8430422.029271
18262.144164.88610.656154.2300.6289900.0406490.5883412.0119091.8711152.022423
19524.288331.65520.137311.5180.6325820.0384080.5941732.0114201.8897332.019828
201.048.576666.63937.813628.8260.6357560.0360610.5996952.0100371.8777872.018586
212.097.1521.339.51371.5901.267.9230.6387300.0341370.6045932.0093531.8932642.016334
224.194.3042.689.938136.2212.553.7170.6413310.0324780.6088542.0081461.9027942.014095
238.388.6085.398.800259.5645.139.2360.6435870.0309420.6126452.0070351.9054632.012453
2416.777.21610.834.385495.10710.339.2780.6457800.0295110.6162692.0068141.9074562.011832
2533.554.43221.735.531946.95220.788.5790.6477690.0282210.6195482.0061621.9126212.010641
2667.108.86443.589.1431.814.53541.774.6080.6495290.0270390.6224902.0054331.9161852.009498
27134.217.72887.404.9373.481.51383.923.4240.6512180.0259390.6252782.0052001.9186812.008958
28268.435.456175.223.3266.687.937168.535.3890.6527580.0249150.6278432.0047301.9209862.008204
29536.870.912351.212.29312.875.760338.336.5330.6541840.0239830.6302012.0043691.9252212.007510
301.073.741.824703.864.28724.826.129679.038.1580.6555250.0231210.6324042.0040991.9281292.006990
312.147.483.6481.410.399.79947.927.1791.362.472.6200.6567690.0223180.6344512.0037951.9305142.006474
324.294.967.2962.825.797.94692.629.4992.733.168.4470.6579320.0215670.6363652.0035441.9327132.006036
338.589.934.5925.660.972.620179.231.4295.481.741.1910.6590240.0208650.6381592.0033181.9349282.005636
3417.179.869.18411.339.584.279347.167.55310.992.416.7260.6600510.0202080.6398432.0031161.9369792.005278


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
122100200
242100200
383110210
4164120220
5326230240
6649351260
7128155922110
82562872042220
9512481136102360
101.024862263202640
112.048150351143621120
124.096275672077521980
138.19250313137113223690
1416.38490725065623526700
1532.7681.6564531.20242221.2320
1665.5363.0908272.26279322.2950
17131.0725.6951.5014.1931.47424.2190
18262.14410.6562.8007.8552.75327.9010
19524.28820.1375.32414.8125.217214.9180
201.048.57637.8139.90027.9129.757228.0540
212.097.15271.59018.74352.84618.454253.1340
224.194.304136.22135.618100.60235.1782101.0410
238.388.608259.56467.958191.60566.8772192.6850
2416.777.216495.107129.294365.812127.3282367.7770
2533.554.432946.952246.503700.448243.7532703.1970
2667.108.8641.814.535471.4331.343.101465.72221.348.8110
27134.217.7283.481.513902.3472.579.165891.85322.589.6580
28268.435.4566.687.9371.730.0334.957.9031.712.12924.975.8060
29536.870.91212.875.7603.325.1559.550.6043.292.48529.583.2730
301.073.741.82424.826.1296.402.84118.423.2876.343.680218.482.4470
312.147.483.64847.927.17912.347.52435.579.65412.239.228235.687.9490
324.294.967.29692.629.49923.841.76268.787.73623.638.463268.991.0340
338.589.934.592179.231.42946.093.649133.137.77945.714.2482133.517.1790
3417.179.869.184347.167.55389.212.671257.954.88188.499.6752258.667.8760


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
384220112
4169361323
53215691347
66431151657613
712862313111181023
8256114546023312040
951223812311551654280
101.02449625324311913589153
112.0481.039526513245277205312
124.0962.1351.1091.026496591423625
138.1924.4022.2662.1361.0141.2158961.277
1416.3849.0704.6184.4522.1242.4231.9442.579
1532.76818.5049.3969.1084.3684.9153.9865.235
1665.53637.58019.22818.3528.9439.8628.18210.593
17131.07276.26038.96437.29618.24319.87716.80221.338
18262.144154.23078.65375.57736.83740.11534.31142.967
19524.288311.518158.409153.10974.48280.84870.18086.008
201.048.576628.826319.058309.768151.059162.714142.937172.116
212.097.1521.267.923642.596625.327305.132327.127290.099345.565
224.194.3042.553.7171.293.8711.259.846617.150657.570586.705692.292
238.388.6085.139.2362.602.3232.536.9131.245.2461.319.1811.187.5871.387.222
2416.777.21610.339.2785.230.5565.108.7222.511.1972.648.6452.399.3992.780.037
2533.554.43220.788.57910.510.49710.278.0825.056.0335.318.6384.844.2995.569.609
2667.108.86441.774.60821.109.08320.665.52510.173.41710.679.2079.764.86611.157.118
27134.217.72883.923.42442.390.33741.533.08720.461.40921.430.83819.680.37922.350.798
28268.435.456168.535.38985.098.85883.436.53141.144.70642.991.81039.638.03744.760.836
29536.870.912338.336.533170.773.907167.562.62682.690.12786.224.56679.778.50689.643.334
301.073.741.824679.038.158342.635.183336.402.975166.134.268172.910.082160.482.707179.511.101
312.147.483.6481.362.472.620687.263.794675.208.826333.633.772346.668.918322.745.662359.424.268
324.294.967.2962.733.168.4471.378.214.5091.354.953.938669.831.696694.936.889648.784.137719.615.725
338.589.934.5925.481.741.1912.763.442.8872.718.298.3041.344.441.1791.392.893.5011.303.696.7361.440.709.775
3417.179.869.18410.992.416.7265.539.903.6715.452.513.0552.697.807.1802.791.478.1672.618.994.0962.884.137.283


8. Check for existing Integer Sequences by OEIS

Found in Database : 163, 3, 13, 5, 1, 23, 701, 71, 67, 29, 439, 41, 1637, 1, 131, 1, 59, 103, 1, 47,
Found in Database : 163, 3, 13, 5, 23, 701, 71, 67, 29, 439, 41, 1637, 131, 59, 103, 47, 37, 397, 373, 149, 1367, 4877, 1759, 137, 379, 491, 6101, 263, 337,
Found in Database : 3, 5, 13, 23, 29, 37, 41, 47, 59, 67, 71, 79, 83, 101, 103, 127, 131, 137, 149,