Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:55:52
Deutsch
20.Apr 2024

Polynom = x^2+28x+67

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) = 67 = 67
f(1) = 3 = 3
f(2) = 127 = 127
f(3) = 5 = 5
f(4) = 195 = 3*5*13
f(5) = 29 = 29
f(6) = 271 = 271
f(7) = 39 = 3*13
f(8) = 355 = 5*71
f(9) = 25 = 5*5
f(10) = 447 = 3*149
f(11) = 31 = 31
f(12) = 547 = 547
f(13) = 75 = 3*5*5
f(14) = 655 = 5*131
f(15) = 89 = 89
f(16) = 771 = 3*257
f(17) = 13 = 13
f(18) = 895 = 5*179
f(19) = 15 = 3*5
f(20) = 1027 = 13*79
f(21) = 137 = 137
f(22) = 1167 = 3*389
f(23) = 155 = 5*31
f(24) = 1315 = 5*263
f(25) = 87 = 3*29
f(26) = 1471 = 1471
f(27) = 97 = 97
f(28) = 1635 = 3*5*109
f(29) = 215 = 5*43
f(30) = 1807 = 13*139
f(31) = 237 = 3*79
f(32) = 1987 = 1987
f(33) = 65 = 5*13
f(34) = 2175 = 3*5*5*29
f(35) = 71 = 71
f(36) = 2371 = 2371
f(37) = 309 = 3*103
f(38) = 2575 = 5*5*103
f(39) = 335 = 5*67
f(40) = 2787 = 3*929
f(41) = 181 = 181
f(42) = 3007 = 31*97
f(43) = 195 = 3*5*13
f(44) = 3235 = 5*647
f(45) = 419 = 419
f(46) = 3471 = 3*13*89
f(47) = 449 = 449
f(48) = 3715 = 5*743
f(49) = 15 = 3*5
f(50) = 3967 = 3967
f(51) = 1 = 1
f(52) = 4227 = 3*1409
f(53) = 545 = 5*109
f(54) = 4495 = 5*29*31
f(55) = 579 = 3*193
f(56) = 4771 = 13*367
f(57) = 307 = 307
f(58) = 5055 = 3*5*337
f(59) = 325 = 5*5*13
f(60) = 5347 = 5347
f(61) = 687 = 3*229
f(62) = 5647 = 5647
f(63) = 725 = 5*5*29
f(64) = 5955 = 3*5*397
f(65) = 191 = 191
f(66) = 6271 = 6271
f(67) = 201 = 3*67
f(68) = 6595 = 5*1319
f(69) = 845 = 5*13*13
f(70) = 6927 = 3*2309
f(71) = 887 = 887
f(72) = 7267 = 13*13*43
f(73) = 465 = 3*5*31
f(74) = 7615 = 5*1523
f(75) = 487 = 487
f(76) = 7971 = 3*2657
f(77) = 1019 = 1019
f(78) = 8335 = 5*1667
f(79) = 1065 = 3*5*71
f(80) = 8707 = 8707
f(81) = 139 = 139
f(82) = 9087 = 3*13*233
f(83) = 145 = 5*29
f(84) = 9475 = 5*5*379
f(85) = 1209 = 3*13*31
f(86) = 9871 = 9871
f(87) = 1259 = 1259
f(88) = 10275 = 3*5*5*137
f(89) = 655 = 5*131
f(90) = 10687 = 10687
f(91) = 681 = 3*227
f(92) = 11107 = 29*383
f(93) = 1415 = 5*283
f(94) = 11535 = 3*5*769
f(95) = 1469 = 13*113
f(96) = 11971 = 11971
f(97) = 381 = 3*127
f(98) = 12415 = 5*13*191
f(99) = 395 = 5*79
f(100) = 12867 = 3*4289

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+28x+67

f(0)=67
f(1)=3
f(2)=127
f(3)=5
f(4)=13
f(5)=29
f(6)=271
f(7)=1
f(8)=71
f(9)=1
f(10)=149
f(11)=31
f(12)=547
f(13)=1
f(14)=131
f(15)=89
f(16)=257
f(17)=1
f(18)=179
f(19)=1
f(20)=79
f(21)=137
f(22)=389
f(23)=1
f(24)=263
f(25)=1
f(26)=1471
f(27)=97
f(28)=109
f(29)=43
f(30)=139
f(31)=1
f(32)=1987
f(33)=1
f(34)=1
f(35)=1
f(36)=2371
f(37)=103
f(38)=1
f(39)=1
f(40)=929
f(41)=181
f(42)=1
f(43)=1
f(44)=647
f(45)=419
f(46)=1
f(47)=449
f(48)=743
f(49)=1
f(50)=3967
f(51)=1
f(52)=1409
f(53)=1
f(54)=1
f(55)=193
f(56)=367
f(57)=307
f(58)=337
f(59)=1
f(60)=5347
f(61)=229
f(62)=5647
f(63)=1
f(64)=397
f(65)=191
f(66)=6271
f(67)=1
f(68)=1319
f(69)=1
f(70)=2309
f(71)=887
f(72)=1
f(73)=1
f(74)=1523
f(75)=487
f(76)=2657
f(77)=1019
f(78)=1667
f(79)=1
f(80)=8707
f(81)=1
f(82)=233
f(83)=1
f(84)=379
f(85)=1
f(86)=9871
f(87)=1259
f(88)=1
f(89)=1
f(90)=10687
f(91)=227
f(92)=383
f(93)=283
f(94)=769
f(95)=113
f(96)=11971
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+28x+67 could be written as f(y)= y^2-129 with x=y-14

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+14
f'(x)>2x+27

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

67, 3, 127, 5, 13, 29, 271, 1, 71, 1, 149, 31, 547, 1, 131, 89, 257, 1, 179, 1, 79, 137, 389, 1, 263, 1, 1471, 97, 109, 43, 139, 1, 1987, 1, 1, 1, 2371, 103, 1, 1, 929, 181, 1, 1, 647, 419, 1, 449, 743, 1, 3967, 1, 1409, 1, 1, 193, 367, 307, 337, 1, 5347, 229, 5647, 1, 397, 191, 6271, 1, 1319, 1, 2309, 887, 1, 1, 1523, 487, 2657, 1019, 1667, 1, 8707, 1, 233, 1, 379, 1, 9871, 1259, 1, 1, 10687, 227, 383, 283, 769, 113, 11971, 1, 1, 1, 4289, 1637, 13327, 1, 1, 877, 1, 907, 1, 1, 1, 1, 1, 1, 3251, 1, 541, 2129, 1153, 439, 17827, 1, 18367, 1, 1, 2399, 19471, 823, 4007, 1, 6869, 653, 21187, 1, 1, 1, 7457, 1, 919, 1, 1, 1, 8069, 613, 4967, 1, 25471, 1, 1741, 661, 1, 1129, 27427, 347, 1873, 1777, 28771, 1213, 1, 1, 773, 953, 1, 1, 6311, 3989, 1, 4079, 6599, 1, 1163, 2131, 11489, 1, 7043, 1483, 2767, 1, 1, 1, 37507, 1579, 38287, 967, 521, 2467, 3067, 839, 1627, 1, 13829, 5237, 42307, 1, 8627, 1361, 14657, 1, 8963, 1, 45667, 1, 1193, 587, 9479, 1993, 48271, 6089, 1, 1, 50047, 1, 3919, 1, 3457, 503, 467, 1109, 10739, 677, 1, 1, 1, 1, 1, 1, 19157, 1811, 1, 491, 59407, 7487, 20129, 761, 1, 1289, 643, 1, 1, 1597, 1, 1, 65407, 1, 1, 8369, 619, 2833, 1, 863, 23189, 1, 70627, 593, 1103, 9029, 1, 1, 14771, 1, 1, 9437, 25349, 1, 1187, 1619, 2699, 1, 1, 1999, 80527, 1, 81667, 1, 5521, 1303, 641, 1, 17027, 2143, 2213, 5431, 983, 1, 3547, 11159, 1033, 1, 3643, 1, 1, 2903, 1, 1, 18947, 1, 95971, 6037, 6481, 1223, 98467, 4129, 3217, 1, 6733, 1, 7867, 1, 1, 1, 34949, 13187, 1, 1, 21491, 1, 2789, 13679, 1, 1, 111427, 1, 37589, 709, 787, 4783, 115471, 14519, 7789, 1, 2749, 2477, 9199, 1, 1613, 1, 1549, 1, 4951, 1, 41729, 15737, 9739, 1061, 883, 1, 1, 1, 26183, 1097, 132367, 1, 1439, 1, 27059, 1, 1, 17189, 1, 1, 139747, 2927, 1031, 1, 1, 17939, 144271, 6043, 2243, 1, 49109, 1, 148867, 1, 1, 18899, 1, 9547, 30707, 1, 1423, 1499, 1801, 1, 1, 1657, 159871, 5021, 2153, 4057, 2297, 6829, 164707, 2069, 853, 1, 167971, 1, 33923, 4261, 57089, 2689, 1, 1, 34919, 21929, 58757, 1, 35591, 1, 1063, 1, 60449, 911, 1181, 1, 4297, 5801, 12433, 1171, 14479, 7879, 189967, 1, 12781, 12037, 1, 4049, 39047, 4903, 1, 1, 1451, 1, 1, 1, 5189, 25409, 8167, 1709, 7103, 1, 1, 2609, 41927, 1, 16267, 1, 14221, 1, 2089, 2251, 217027, 5449, 14593, 27479, 220771, 1, 44531, 1, 1, 1, 17419, 1, 1, 3583, 76757, 3613, 46439, 1, 1, 29387, 6053, 2963, 1, 1, 7741, 30119, 1, 6073, 1277, 2551, 1877, 1543, 1, 2393, 249871, 10453, 1, 1, 84629, 1, 255907, 2141, 1, 32369, 1, 2039, 1, 1, 1, 2549, 2063, 6679, 53639, 1, 270271, 1, 1, 1367, 2161, 1, 2851, 1, 1429, 8741, 280771, 11743, 1951, 1, 95009, 17881, 287167, 1201, 4451, 36299, 97157, 1, 58727, 1, 1151, 4639, 1399, 7477, 12007, 12553, 4513, 1459, 1, 3821, 23599, 12829, 309007, 7753, 20749, 1, 313471, 1, 1, 1, 1, 39887, 3109, 1, 64499, 1, 3733, 40739, 1, 1, 329347, 1291, 1, 1, 66791, 13963, 25867, 42179, 22573, 1, 340927, 7127, 343267, 1, 23041, 1, 1, 3637, 70067, 1, 1321, 1427, 355087, 2969, 1, 1, 1, 22567, 1, 1, 364687, 45737, 9413, 1, 73907, 1931, 371971, 46649, 1, 9391, 12157, 7877, 29179, 1, 25453, 1, 2579, 16063, 77351, 1, 129749, 12203, 12637, 1, 2719, 3803, 132257, 24877, 6143, 1669, 401827, 50387, 134789, 10141, 1, 1, 409471, 3209, 2113, 10333, 414607, 1, 417187, 5231, 1, 26317, 3083, 1, 1, 10657, 142529, 1, 6421, 1, 6659, 54269, 1, 1, 87623, 1831, 1, 27631, 1871, 11119, 6863, 1, 4357, 1, 30097, 1, 4019, 18979, 14737, 1, 30637, 28807, 462271, 1, 1, 1, 1, 1, 16223, 1, 1, 14831, 158657, 59669, 95747, 4001, 37039, 30181, 1481, 1, 19483, 20353, 489871, 61409, 6569, 1, 1, 1, 17183, 1, 33409, 62819, 38767, 10529, 101363, 6353, 169889, 2203, 1, 4283, 103079, 1, 1, 1, 104231, 1, 524047, 65687, 175649, 1, 105971, 11069, 532771, 1553, 1, 1, 1, 1, 41659, 1697, 1, 1, 547471, 1, 1, 6899, 6361, 1, 1, 4649, 1, 5393, 6047, 1, 4523, 1, 568387, 71237, 2411, 14323, 1, 1, 577471, 36187, 1, 14551, 20123, 24379, 586627, 1, 39313, 1, 1, 24763, 1, 1, 4643, 2887, 602047, 1, 1, 1, 202757, 2459, 122279, 1, 614527, 1, 1, 1, 9551, 25933, 1, 39097, 41809, 1, 630307, 1, 633487, 15877, 1, 9973, 20641, 1, 1, 1, 1, 1, 649507, 2713, 130547, 40897, 218657, 6323, 4253, 5507, 1, 20753, 221909, 1, 1997, 27943, 672271, 84239, 1, 1693, 1, 14177, 682147, 1, 45697, 85889, 1, 1, 1, 1, 231809, 1, 2999, 1, 140423, 43987, 18089, 1, 141767, 1, 1, 89237, 238529, 4483, 28759, 7507, 1, 3121, 9677, 1, 729187, 15227, 1933, 1, 49069, 92219, 1, 1, 4793, 1, 248789, 11689, 57679, 6263, 150659, 94379, 1, 47407, 1, 1, 1, 1, 1, 1, 1, 1, 26699, 24251, 51853, 19489, 781327, 1, 784867, 9833, 52561, 1, 791971, 33073, 12239, 1, 266369, 6257, 4159, 1, 32251, 101009, 2389, 1, 2503, 1, 817087, 1, 273569, 20563, 1, 1, 1, 25931, 55441, 5209, 1, 2683, 838927, 21019, 1, 1, 846271, 17669, 169991, 4259, 1, 106937, 857347, 1, 1, 1, 288257, 1, 173699, 7253, 872227, 54631, 9419, 10973, 6067, 1, 883471, 8513, 59149, 5557, 68539, 1, 20809, 1, 11981, 112559, 10139, 18839, 1, 11351, 23333, 3677, 3229, 1, 183527, 1, 1, 3607, 185063, 7727, 1, 116387, 311009, 1, 187379, 19559, 72367, 117839, 1, 4733, 948547, 9901, 32843, 1, 1, 1, 73867, 40093, 2441, 1, 322709, 60631, 31357, 8117, 195203, 2843, 326657, 1, 1, 1, 7211, 123737, 1, 24847, 1, 20789, 7873, 62617, 2677, 25147, 1007887, 1, 77839, 6337, 1, 2447, 1019971, 1, 204803, 1,

6. Sequence of the polynom (only primes)

67, 3, 127, 5, 13, 29, 271, 71, 149, 31, 547, 131, 89, 257, 179, 79, 137, 389, 263, 1471, 97, 109, 43, 139, 1987, 2371, 103, 929, 181, 647, 419, 449, 743, 3967, 1409, 193, 367, 307, 337, 5347, 229, 5647, 397, 191, 6271, 1319, 2309, 887, 1523, 487, 2657, 1019, 1667, 8707, 233, 379, 9871, 1259, 10687, 227, 383, 283, 769, 113, 11971, 4289, 1637, 13327, 877, 907, 3251, 541, 2129, 1153, 439, 17827, 18367, 2399, 19471, 823, 4007, 6869, 653, 21187, 7457, 919, 8069, 613, 4967, 25471, 1741, 661, 1129, 27427, 347, 1873, 1777, 28771, 1213, 773, 953, 6311, 3989, 4079, 6599, 1163, 2131, 11489, 7043, 1483, 2767, 37507, 1579, 38287, 967, 521, 2467, 3067, 839, 1627, 13829, 5237, 42307, 8627, 1361, 14657, 8963, 45667, 1193, 587, 9479, 1993, 48271, 6089, 50047, 3919, 3457, 503, 467, 1109, 10739, 677, 19157, 1811, 491, 59407, 7487, 20129, 761, 1289, 643, 1597, 65407, 8369, 619, 2833, 863, 23189, 70627, 593, 1103, 9029, 14771, 9437, 25349, 1187, 1619, 2699, 1999, 80527, 81667, 5521, 1303, 641, 17027, 2143, 2213, 5431, 983, 3547, 11159, 1033, 3643, 2903, 18947, 95971, 6037, 6481, 1223, 98467, 4129, 3217, 6733, 7867, 34949, 13187, 21491, 2789, 13679, 111427, 37589, 709, 787, 4783, 115471, 14519, 7789, 2749, 2477, 9199, 1613, 1549, 4951, 41729, 15737, 9739, 1061, 883, 26183, 1097, 132367, 1439, 27059, 17189, 139747, 2927, 1031, 17939, 144271, 6043, 2243, 49109, 148867, 18899, 9547, 30707, 1423, 1499, 1801, 1657, 159871, 5021, 2153, 4057, 2297, 6829, 164707, 2069, 853, 167971, 33923, 4261, 57089, 2689, 34919, 21929, 58757, 35591, 1063, 60449, 911, 1181, 4297, 5801, 12433, 1171, 14479, 7879, 189967, 12781, 12037, 4049, 39047, 4903, 1451, 5189, 25409, 8167, 1709, 7103, 2609, 41927, 16267, 14221, 2089, 2251, 217027, 5449, 14593, 27479, 220771, 44531, 17419, 3583, 76757, 3613, 46439, 29387, 6053, 2963, 7741, 30119, 6073, 1277, 2551, 1877, 1543, 2393, 249871, 10453, 84629, 255907, 2141, 32369, 2039, 2549, 2063, 6679, 53639, 270271, 1367, 2161, 2851, 1429, 8741, 280771, 11743, 1951, 95009, 17881, 287167, 1201, 4451, 36299, 97157, 58727, 1151, 4639, 1399, 7477, 12007, 12553, 4513, 1459, 3821, 23599, 12829, 309007, 7753, 20749, 313471, 39887, 3109, 64499, 3733, 40739, 329347, 1291, 66791, 13963, 25867, 42179, 22573, 340927, 7127, 343267, 23041, 3637, 70067, 1321, 1427, 355087, 2969, 22567, 364687, 45737, 9413, 73907, 1931, 371971, 46649, 9391, 12157, 7877, 29179, 25453, 2579, 16063, 77351, 129749, 12203, 12637, 2719, 3803, 132257, 24877, 6143, 1669, 401827, 50387, 134789, 10141, 409471, 3209, 2113, 10333, 414607, 417187, 5231, 26317, 3083, 10657, 142529, 6421, 6659, 54269, 87623, 1831, 27631, 1871, 11119, 6863, 4357, 30097, 4019, 18979, 14737, 30637, 28807, 462271, 16223, 14831, 158657, 59669, 95747, 4001, 37039, 30181, 1481, 19483, 20353, 489871, 61409, 6569, 17183, 33409, 62819, 38767, 10529, 101363, 6353, 169889, 2203, 4283, 103079, 104231, 524047, 65687, 175649, 105971, 11069, 532771, 1553, 41659, 1697, 547471, 6899, 6361, 4649, 5393, 6047, 4523, 568387, 71237, 2411, 14323, 577471, 36187, 14551, 20123, 24379, 586627, 39313, 24763, 4643, 2887, 602047, 202757, 2459, 122279, 614527, 9551, 25933, 39097, 41809, 630307, 633487, 15877, 9973, 20641, 649507, 2713, 130547, 40897, 218657, 6323, 4253, 5507, 20753, 221909, 1997, 27943, 672271, 84239, 1693, 14177, 682147, 45697, 85889, 231809, 2999, 140423, 43987, 18089, 141767, 89237, 238529, 4483, 28759, 7507, 3121, 9677, 729187, 15227, 1933, 49069, 92219, 4793, 248789, 11689, 57679, 6263, 150659, 94379, 47407, 26699, 24251, 51853, 19489, 781327, 784867, 9833, 52561, 791971, 33073, 12239, 266369, 6257, 4159, 32251, 101009, 2389, 2503, 817087, 273569, 20563, 25931, 55441, 5209, 2683, 838927, 21019, 846271, 17669, 169991, 4259, 106937, 857347, 288257, 173699, 7253, 872227, 54631, 9419, 10973, 6067, 883471, 8513, 59149, 5557, 68539, 20809, 11981, 112559, 10139, 18839, 11351, 23333, 3677, 3229, 183527, 3607, 185063, 7727, 116387, 311009, 187379, 19559, 72367, 117839, 4733, 948547, 9901, 32843, 73867, 40093, 2441, 322709, 60631, 31357, 8117, 195203, 2843, 326657, 7211, 123737, 24847, 20789, 7873, 62617, 2677, 25147, 1007887, 77839, 6337, 2447, 1019971, 204803,

7. Distribution of the primes

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

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)
1108350.8000000.3000000.8000000.0000000.0000000.000000
21006415490.6400000.1500000.6400008.0000005.0000009.800000
31.000636935430.6360000.0930000.6360009.9375006.20000011.081633
410.0006.5156525.8630.6515000.0652000.65150010.2437117.01075310.797421
5100.00066.1485.03661.1120.6614800.0503600.66148010.1531857.72392710.423333
61.000.000666.35141.483624.8680.6663510.0414830.66635110.0736388.23729110.224964
710.000.0006.701.169350.1396.351.0300.6701170.0350140.67011710.0565168.44054210.163795
8100.000.00067.293.9803.032.39364.261.5870.6729400.0303240.67294010.0421268.66054110.118294
91.000.000.000675.138.70026.750.253648.388.4470.6751390.0267500.67513910.0326758.82149910.089828
1010.000.000.0006.769.085.861239.407.6376.529.678.2240.6769090.0239410.67690910.0262168.94973410.070628


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
244221.0000000.5000000.5000001.3333331.0000002.000000
387340.8750000.3750000.5000001.7500001.5000002.000000
41613490.8125000.2500000.5625001.8571431.3333332.250000
532246180.7500000.1875000.5625001.8461541.5000002.000000
6644210320.6562500.1562500.5000001.7500001.6666671.777778
71287919600.6171880.1484380.4687501.8809521.9000001.875000
8256160321280.6250000.1250000.5000002.0253161.6842112.133333
9512321512700.6269530.0996090.5273442.0062501.5937502.109375
101.024649945550.6337890.0917970.5419922.0218071.8431372.055556
112.0481.3141641.1500.6416020.0800780.5615232.0246531.7446812.072072
124.0962.6482952.3530.6464840.0720210.5744632.0152211.7987802.046087
138.1925.3255494.7760.6500240.0670170.5830082.0109521.8610172.029749
1416.38410.7129909.7220.6538090.0604250.5933842.0116431.8032792.035595
1532.76821.5381.86619.6720.6572880.0569460.6003422.0106421.8848482.023452
1665.53643.2453.44839.7970.6598660.0526120.6072542.0078471.8478032.023028
17131.07286.7556.42480.3310.6618880.0490110.6128772.0061281.8631092.018519
18262.144173.90112.044161.8570.6633800.0459440.6174352.0045071.8748442.014876
19524.288348.55322.942325.6110.6648120.0437580.6210542.0043181.9048492.011720
201.048.576698.76643.366655.4000.6663950.0413570.6250382.0047631.8902452.012831
212.097.1521.400.03182.0841.317.9470.6675870.0391410.6284462.0035761.8928192.010905
224.194.3042.805.367155.8792.649.4880.6688520.0371640.6316872.0037891.8990182.010314
238.388.6085.619.311297.4095.321.9020.6698740.0354540.6344202.0030571.9079482.008653
2416.777.21611.253.910567.91710.685.9930.6707850.0338500.6369352.0027211.9095492.007927
2533.554.43222.538.4431.085.92521.452.5180.6716980.0323630.6393352.0027211.9121192.007536
2667.108.86445.131.1802.083.13443.048.0460.6725070.0310410.6414662.0024091.9183042.006666
27134.217.72890.362.0674.001.21286.360.8550.6732500.0298110.6434392.0022091.9207662.006150
28268.435.456180.909.7227.697.034173.212.6880.6739410.0286740.6452682.0020541.9236762.005685
29536.870.912362.170.27414.831.428347.338.8460.6745950.0276260.6469692.0019391.9269022.005274
301.073.741.824724.990.38128.616.677696.373.7040.6752000.0266510.6485492.0017941.9294622.004883
312.147.483.6481.451.200.91855.289.1621.395.911.7560.6757680.0257460.6500222.0016831.9320612.004544
324.294.967.2962.904.695.489106.949.1302.797.746.3590.6763020.0249010.6514012.0015801.9343602.004243
338.589.934.5925.813.698.957207.087.7325.606.611.2250.6768040.0241080.6526952.0014831.9363202.003974
3417.179.869.18411.635.503.791401.387.30811.234.116.4830.6772750.0233640.6539122.0013941.9382482.003727


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
122200101
242200101
383300102
4164400202
5326600303
664101000505
71281919008011
825632320015017
951251510026025
101.02494940045049
112.0481641640080084
124.096295295001450150
138.192549549002730276
1416.384990990005010489
1532.7681.8661.866009250941
1665.5363.4483.448001.72801.720
17131.0726.4246.424003.22403.200
18262.14412.04412.044006.05105.993
19524.28822.94222.9420011.523011.419
201.048.57643.36643.3660021.743021.623
212.097.15282.08482.0840041.038041.046
224.194.304155.879155.8790077.869078.010
238.388.608297.409297.40900148.5410148.868
2416.777.216567.917567.91700283.6500284.267
2533.554.4321.085.9251.085.92500542.4640543.461
2667.108.8642.083.1342.083.134001.040.47301.042.661
27134.217.7284.001.2124.001.212001.999.10602.002.106
28268.435.4567.697.0347.697.034003.846.41503.850.619
29536.870.91214.831.42814.831.428007.414.76807.416.660
301.073.741.82428.616.67728.616.6770014.309.881014.306.796
312.147.483.64855.289.16255.289.1620027.644.699027.644.463
324.294.967.296106.949.130106.949.1300053.478.619053.470.511
338.589.934.592207.087.732207.087.73200103.547.0840103.540.648
3417.179.869.184401.387.308401.387.30800200.688.4950200.698.813


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
121000100
242100110
384120121
4169262232
532186114455
6643214179689
712860243515151218
8256128478034332932
951227010816165656872
101.024555234320144138133140
112.0481.150482667280294296280
124.0962.3531.0171.335595594606558
138.1924.7762.1452.6301.2291.1871.1901.170
1416.3849.7224.4305.2912.4282.4122.4942.388
1532.76819.6729.08110.5904.9484.8785.0484.798
1665.53639.79718.42121.37510.0129.77210.1779.836
17131.07280.33137.49642.83420.12719.84420.37819.982
18262.144161.85776.02885.82840.62540.04240.79340.397
19524.288325.611153.639171.97181.80680.56882.48680.751
201.048.576655.400310.433344.966164.748162.550165.537162.565
212.097.1521.317.947626.363691.583331.737326.667332.710326.833
224.194.3042.649.4881.262.6111.386.876667.060656.983667.767657.678
238.388.6085.321.9022.542.5342.779.3671.339.1041.320.6761.340.3081.321.814
2416.777.21610.685.9935.116.3935.569.5992.688.0682.654.7442.689.4172.653.764
2533.554.43221.452.51810.294.33211.158.1855.395.2625.329.9465.397.7205.329.590
2667.108.86443.048.04620.697.04422.351.00110.824.83310.697.73210.830.67310.694.808
27134.217.72886.360.85541.594.35744.766.49721.710.30821.466.15821.718.14521.466.244
28268.435.456173.212.68883.551.75489.660.93343.528.54343.071.53243.539.72743.072.886
29536.870.912347.338.846167.788.505179.550.34087.267.42086.391.10687.277.86886.402.452
301.073.741.824696.373.704336.838.708359.534.995174.941.618173.230.219174.947.866173.254.001
312.147.483.6481.395.911.756676.071.464719.840.291350.606.162347.330.175350.622.168347.353.251
324.294.967.2962.797.746.3591.356.565.6791.441.180.679702.605.509696.250.377702.610.728696.279.745
338.589.934.5925.606.611.2252.721.410.6702.885.200.5541.407.776.2981.395.523.8081.407.781.0511.395.530.068
3417.179.869.18411.234.116.4835.458.443.2355.775.673.2472.820.347.8482.796.715.8132.820.329.5962.796.723.226


8. Check for existing Integer Sequences by OEIS

Found in Database : 67, 3, 127, 5, 13, 29, 271, 1, 71, 1, 149, 31, 547, 1, 131, 89, 257, 1, 179, 1,
Found in Database : 67, 3, 127, 5, 13, 29, 271, 71, 149, 31, 547, 131, 89, 257, 179, 79, 137, 389, 263, 1471, 97, 109, 43, 139, 1987, 2371, 103,
Found in Database : 3, 5, 13, 29, 31, 43, 67, 71, 79, 89, 97, 103, 109, 113, 127, 131, 137, 139, 149,