Inhaltsverzeichnis

Development of
Algorithmic Constructions

16:05:33
Deutsch
19.Apr 2024

Polynom = x^2+12x+179

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) = 179 = 179
f(1) = 3 = 3
f(2) = 207 = 3*3*23
f(3) = 7 = 7
f(4) = 243 = 3*3*3*3*3
f(5) = 33 = 3*11
f(6) = 287 = 7*41
f(7) = 39 = 3*13
f(8) = 339 = 3*113
f(9) = 23 = 23
f(10) = 399 = 3*7*19
f(11) = 27 = 3*3*3
f(12) = 467 = 467
f(13) = 63 = 3*3*7
f(14) = 543 = 3*181
f(15) = 73 = 73
f(16) = 627 = 3*11*19
f(17) = 21 = 3*7
f(18) = 719 = 719
f(19) = 3 = 3
f(20) = 819 = 3*3*7*13
f(21) = 109 = 109
f(22) = 927 = 3*3*103
f(23) = 123 = 3*41
f(24) = 1043 = 7*149
f(25) = 69 = 3*23
f(26) = 1167 = 3*389
f(27) = 77 = 7*11
f(28) = 1299 = 3*433
f(29) = 171 = 3*3*19
f(30) = 1439 = 1439
f(31) = 189 = 3*3*3*7
f(32) = 1587 = 3*23*23
f(33) = 13 = 13
f(34) = 1743 = 3*7*83
f(35) = 57 = 3*19
f(36) = 1907 = 1907
f(37) = 249 = 3*83
f(38) = 2079 = 3*3*3*7*11
f(39) = 271 = 271
f(40) = 2259 = 3*3*251
f(41) = 147 = 3*7*7
f(42) = 2447 = 2447
f(43) = 159 = 3*53
f(44) = 2643 = 3*881
f(45) = 343 = 7*7*7
f(46) = 2847 = 3*13*73
f(47) = 369 = 3*3*41
f(48) = 3059 = 7*19*23
f(49) = 99 = 3*3*11
f(50) = 3279 = 3*1093
f(51) = 53 = 53
f(52) = 3507 = 3*7*167
f(53) = 453 = 3*151
f(54) = 3743 = 19*197
f(55) = 483 = 3*7*23
f(56) = 3987 = 3*3*443
f(57) = 257 = 257
f(58) = 4239 = 3*3*3*157
f(59) = 273 = 3*7*13
f(60) = 4499 = 11*409
f(61) = 579 = 3*193
f(62) = 4767 = 3*7*227
f(63) = 613 = 613
f(64) = 5043 = 3*41*41
f(65) = 81 = 3*3*3*3
f(66) = 5327 = 7*761
f(67) = 171 = 3*3*19
f(68) = 5619 = 3*1873
f(69) = 721 = 7*103
f(70) = 5919 = 3*1973
f(71) = 759 = 3*11*23
f(72) = 6227 = 13*479
f(73) = 399 = 3*7*19
f(74) = 6543 = 3*3*727
f(75) = 419 = 419
f(76) = 6867 = 3*3*7*109
f(77) = 879 = 3*293
f(78) = 7199 = 23*313
f(79) = 921 = 3*307
f(80) = 7539 = 3*7*359
f(81) = 241 = 241
f(82) = 7887 = 3*11*239
f(83) = 63 = 3*3*7
f(84) = 8243 = 8243
f(85) = 1053 = 3*3*3*3*13
f(86) = 8607 = 3*19*151
f(87) = 1099 = 7*157
f(88) = 8979 = 3*41*73
f(89) = 573 = 3*191
f(90) = 9359 = 7*7*191
f(91) = 597 = 3*199
f(92) = 9747 = 3*3*3*19*19
f(93) = 1243 = 11*113
f(94) = 10143 = 3*3*7*7*23
f(95) = 1293 = 3*431
f(96) = 10547 = 53*199
f(97) = 21 = 3*7
f(98) = 10959 = 3*13*281
f(99) = 349 = 349
f(100) = 11379 = 3*3793

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+12x+179

f(0)=179
f(1)=3
f(2)=23
f(3)=7
f(4)=1
f(5)=11
f(6)=41
f(7)=13
f(8)=113
f(9)=1
f(10)=19
f(11)=1
f(12)=467
f(13)=1
f(14)=181
f(15)=73
f(16)=1
f(17)=1
f(18)=719
f(19)=1
f(20)=1
f(21)=109
f(22)=103
f(23)=1
f(24)=149
f(25)=1
f(26)=389
f(27)=1
f(28)=433
f(29)=1
f(30)=1439
f(31)=1
f(32)=1
f(33)=1
f(34)=83
f(35)=1
f(36)=1907
f(37)=1
f(38)=1
f(39)=271
f(40)=251
f(41)=1
f(42)=2447
f(43)=53
f(44)=881
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1093
f(51)=1
f(52)=167
f(53)=151
f(54)=197
f(55)=1
f(56)=443
f(57)=257
f(58)=157
f(59)=1
f(60)=409
f(61)=193
f(62)=227
f(63)=613
f(64)=1
f(65)=1
f(66)=761
f(67)=1
f(68)=1873
f(69)=1
f(70)=1973
f(71)=1
f(72)=479
f(73)=1
f(74)=727
f(75)=419
f(76)=1
f(77)=293
f(78)=313
f(79)=307
f(80)=359
f(81)=241
f(82)=239
f(83)=1
f(84)=8243
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=191
f(90)=1
f(91)=199
f(92)=1
f(93)=1
f(94)=1
f(95)=431
f(96)=1
f(97)=1
f(98)=281
f(99)=349

b) Substitution of the polynom
The polynom f(x)=x^2+12x+179 could be written as f(y)= y^2+143 with x=y-6

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+6
f'(x)>2x+11

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

179, 3, 23, 7, 1, 11, 41, 13, 113, 1, 19, 1, 467, 1, 181, 73, 1, 1, 719, 1, 1, 109, 103, 1, 149, 1, 389, 1, 433, 1, 1439, 1, 1, 1, 83, 1, 1907, 1, 1, 271, 251, 1, 2447, 53, 881, 1, 1, 1, 1, 1, 1093, 1, 167, 151, 197, 1, 443, 257, 157, 1, 409, 193, 227, 613, 1, 1, 761, 1, 1873, 1, 1973, 1, 479, 1, 727, 419, 1, 293, 313, 307, 359, 241, 239, 1, 8243, 1, 1, 1, 1, 191, 1, 199, 1, 1, 1, 431, 1, 1, 281, 349, 3793, 1, 11807, 1, 1, 1, 4229, 269, 1877, 557, 1511, 1, 521, 1, 14543, 1, 5009, 1, 739, 1, 1, 1, 787, 1049, 1, 1, 1597, 743, 2011, 1, 1, 1, 2741, 811, 6581, 2503, 967, 1, 20879, 1, 311, 2719, 7349, 1, 22643, 1, 1, 1, 1, 1, 1, 1033, 8369, 1, 8581, 1, 26387, 1, 9013, 1, 1319, 1, 1493, 1, 461, 3673, 367, 1, 1601, 641, 1, 1, 1, 1, 4649, 457, 853, 1051, 1619, 1, 34739, 1, 3943, 4483, 4027, 1, 1609, 1, 1, 1, 12853, 541, 1, 1, 13381, 1, 13649, 1723, 41759, 1, 1, 2687, 1, 1, 1, 1861, 1, 5689, 15313, 1, 883, 1, 15889, 859, 1471, 1, 1, 1039, 5591, 1, 1, 2153, 52127, 1, 17681, 1, 17989, 1, 1, 769, 2659, 7039, 823, 1193, 1, 1213, 593, 1, 1, 1, 60659, 1, 20549, 971, 1, 877, 63647, 1, 3079, 4073, 21893, 1, 1627, 2801, 1, 1, 7643, 1, 907, 733, 23633, 8929, 1, 1, 73043, 1, 24709, 1, 25073, 1, 1, 3203, 1229, 2437, 2909, 1, 599, 3343, 1171, 1453, 1, 1, 4373, 1, 28081, 1, 1, 3583, 86579, 1, 1, 1, 9883, 1, 827, 1, 30449, 821, 30853, 647, 13397, 1, 2879, 11953, 4583, 1009, 7499, 1, 1, 12421, 1, 1, 101267, 1, 1, 6449, 653, 1451, 15017, 1, 1867, 1, 1, 1129, 1, 1, 12263, 13879, 1, 2341, 113039, 1, 1, 757, 941, 1, 1, 1, 1, 1, 39953, 5023, 17321, 5081, 13627, 1, 1, 1, 1151, 751, 42293, 1, 2251, 1, 5641, 1, 6247, 1499, 1, 5557, 19157, 1, 5021, 1217, 15227, 5741, 1669, 829, 4243, 1, 1, 1, 911, 1997, 6883, 1, 1, 1, 1433, 1, 1, 2677, 5581, 6311, 1, 797, 1, 4831, 1, 1, 1, 1, 1289, 1, 53381, 1, 8513, 1, 2593, 20521, 1, 1, 23801, 1, 56081, 3019, 56629, 2371, 171539, 1, 4441, 1, 1, 7321, 3331, 1, 1, 1399, 19991, 1, 181619, 7603, 1153, 1, 61681, 1291, 26681, 1303, 3307, 23671, 9059, 7963, 1699, 1, 1, 3041, 1, 1, 197279, 1, 9479, 12497, 66949, 1, 28949, 1, 2963, 1, 1, 1, 1, 1, 1, 1, 3361, 8861, 19417, 1, 10259, 13523, 1, 1, 1, 1019, 73681, 991, 3911, 1, 32117, 1, 1, 1, 1, 4783, 5623, 1, 77489, 29179, 7103, 1, 236339, 1, 1621, 7477, 1097, 1, 4943, 10133, 2087, 1, 1013, 1, 10789, 1483, 1, 31393, 12007, 1, 6199, 1, 1109, 2473, 86069, 1543, 13697, 5443, 1, 2351, 1277, 11057, 2003, 1, 1, 4211, 1, 1, 1201, 1, 91573, 34471, 1741, 1, 25357, 1, 1487, 1, 1, 1, 1, 1, 95813, 1, 1163, 1, 291743, 1, 1, 1, 1, 1, 22943, 12473, 1, 37693, 1, 1, 304847, 3187, 5387, 5503, 103093, 1, 44501, 1, 4547, 1789, 1, 1, 2027, 1901, 1, 1, 35863, 1, 325043, 13591, 1, 2161, 109873, 2297, 47417, 1, 111409, 1, 112181, 14071, 338867, 1, 12637, 1, 1, 1, 345887, 14461, 1, 21839, 6151, 1, 32089, 4919, 118453, 6367, 9173, 3739, 51449, 1, 40283, 1, 1931, 1, 15973, 1, 123269, 23189, 1, 1, 374687, 1, 17959, 1, 11503, 3967, 54581, 15971, 42727, 1, 43003, 8089, 1, 1, 1, 1, 18787, 1, 20897, 1, 1, 6263, 134033, 1, 1, 1301, 1, 1, 1, 8563, 58901, 1, 3373, 52021, 1, 1, 420047, 1, 10837, 1, 6163, 2539, 427859, 8941, 6833, 26987, 5347, 1, 5659, 18211, 7691, 1, 1, 1, 1579, 1, 1, 1, 21383, 1, 1, 9439, 7213, 2477, 3907, 2729, 6299, 1, 154181, 1, 1, 6481, 9551, 1, 156913, 1553, 3221, 1, 476243, 2843, 1, 1, 1, 1, 3209, 2531, 1, 1, 8599, 6827, 5417, 3433, 1, 1, 8747, 1, 1951, 1, 1, 7901, 2683, 5297, 509939, 1, 24419, 64279, 171889, 1, 518543, 1, 1, 9337, 174773, 1, 1, 5507, 1, 4153, 8461, 22271, 535967, 1, 179633, 33773, 1657, 1, 1, 1, 26083, 5281, 183569, 1, 1, 5783, 1, 9967, 5653, 1, 13723, 1, 1, 35447, 2083, 7919, 571679, 1, 27367, 1637, 192581, 1, 580787, 1, 64871, 10453, 21737, 1, 1, 12323, 17971, 74323, 28387, 2767, 26053, 1, 10567, 1, 201809, 3613, 46811, 2311, 1, 38327, 68311, 12841, 12611, 1, 207029, 11119, 1, 1, 57037, 1, 210193, 4159, 1, 1, 636947, 1, 1, 2111, 71483, 1, 1801, 1, 16661, 1, 5309, 2273, 1, 9137, 219829, 3593, 1, 13841, 1, 1987, 74363, 6451, 1, 4013, 675827, 7057, 1, 1, 227473, 3167, 97961, 9547, 229681, 1, 1, 1, 2707, 1, 1, 87589, 11149, 1, 3109, 7369, 33767, 3863, 4481, 1, 715859, 1, 1, 1, 240881, 30181, 1, 30323, 27017, 1, 11633, 1913, 1, 1, 1, 92683, 247729, 1, 5011, 5197, 1, 93979, 1, 2861, 1, 1, 84503, 1, 28297, 31907, 1, 1, 1, 48299, 1, 1, 33829, 10831, 1, 1, 261713, 1, 788687, 1, 1, 1, 88423, 1, 114197, 16691, 14087, 1, 1, 1, 1871, 1, 24659, 12743, 272453, 1, 2237, 34283, 4363, 5437, 7079, 17293, 5167, 1, 6793, 1, 1, 11681, 7459, 1, 1, 1, 40487, 2731, 1, 1, 13613, 53717, 1, 1, 865043, 1, 289589, 2221, 15307, 1, 9629, 3049, 293329, 110233, 42083, 36901, 2543, 2647, 1, 55823, 9041, 1, 2029, 2887, 1, 1, 1, 1, 1, 1, 3671, 1, 1, 19163, 921743, 2749, 1, 1, 14753, 1, 49121, 4871, 4057, 29347, 4297, 1, 1, 13151, 13751, 1, 1, 19889, 2789, 3631, 106727, 5231, 1, 10067, 1, 1, 324113, 121789, 25033, 1, 89113, 1, 46867, 61637, 329393, 41257, 3457, 1, 1, 1, 111127, 1, 9749, 1, 1, 126271,

6. Sequence of the polynom (only primes)

179, 3, 23, 7, 11, 41, 13, 113, 19, 467, 181, 73, 719, 109, 103, 149, 389, 433, 1439, 83, 1907, 271, 251, 2447, 53, 881, 1093, 167, 151, 197, 443, 257, 157, 409, 193, 227, 613, 761, 1873, 1973, 479, 727, 419, 293, 313, 307, 359, 241, 239, 8243, 191, 199, 431, 281, 349, 3793, 11807, 4229, 269, 1877, 557, 1511, 521, 14543, 5009, 739, 787, 1049, 1597, 743, 2011, 2741, 811, 6581, 2503, 967, 20879, 311, 2719, 7349, 22643, 1033, 8369, 8581, 26387, 9013, 1319, 1493, 461, 3673, 367, 1601, 641, 4649, 457, 853, 1051, 1619, 34739, 3943, 4483, 4027, 1609, 12853, 541, 13381, 13649, 1723, 41759, 2687, 1861, 5689, 15313, 883, 15889, 859, 1471, 1039, 5591, 2153, 52127, 17681, 17989, 769, 2659, 7039, 823, 1193, 1213, 593, 60659, 20549, 971, 877, 63647, 3079, 4073, 21893, 1627, 2801, 7643, 907, 733, 23633, 8929, 73043, 24709, 25073, 3203, 1229, 2437, 2909, 599, 3343, 1171, 1453, 4373, 28081, 3583, 86579, 9883, 827, 30449, 821, 30853, 647, 13397, 2879, 11953, 4583, 1009, 7499, 12421, 101267, 6449, 653, 1451, 15017, 1867, 1129, 12263, 13879, 2341, 113039, 757, 941, 39953, 5023, 17321, 5081, 13627, 1151, 751, 42293, 2251, 5641, 6247, 1499, 5557, 19157, 5021, 1217, 15227, 5741, 1669, 829, 4243, 911, 1997, 6883, 1433, 2677, 5581, 6311, 797, 4831, 1289, 53381, 8513, 2593, 20521, 23801, 56081, 3019, 56629, 2371, 171539, 4441, 7321, 3331, 1399, 19991, 181619, 7603, 1153, 61681, 1291, 26681, 1303, 3307, 23671, 9059, 7963, 1699, 3041, 197279, 9479, 12497, 66949, 28949, 2963, 3361, 8861, 19417, 10259, 13523, 1019, 73681, 991, 3911, 32117, 4783, 5623, 77489, 29179, 7103, 236339, 1621, 7477, 1097, 4943, 10133, 2087, 1013, 10789, 1483, 31393, 12007, 6199, 1109, 2473, 86069, 1543, 13697, 5443, 2351, 1277, 11057, 2003, 4211, 1201, 91573, 34471, 1741, 25357, 1487, 95813, 1163, 291743, 22943, 12473, 37693, 304847, 3187, 5387, 5503, 103093, 44501, 4547, 1789, 2027, 1901, 35863, 325043, 13591, 2161, 109873, 2297, 47417, 111409, 112181, 14071, 338867, 12637, 345887, 14461, 21839, 6151, 32089, 4919, 118453, 6367, 9173, 3739, 51449, 40283, 1931, 15973, 123269, 23189, 374687, 17959, 11503, 3967, 54581, 15971, 42727, 43003, 8089, 18787, 20897, 6263, 134033, 1301, 8563, 58901, 3373, 52021, 420047, 10837, 6163, 2539, 427859, 8941, 6833, 26987, 5347, 5659, 18211, 7691, 1579, 21383, 9439, 7213, 2477, 3907, 2729, 6299, 154181, 6481, 9551, 156913, 1553, 3221, 476243, 2843, 3209, 2531, 8599, 6827, 5417, 3433, 8747, 1951, 7901, 2683, 5297, 509939, 24419, 64279, 171889, 518543, 9337, 174773, 5507, 4153, 8461, 22271, 535967, 179633, 33773, 1657, 26083, 5281, 183569, 5783, 9967, 5653, 13723, 35447, 2083, 7919, 571679, 27367, 1637, 192581, 580787, 64871, 10453, 21737, 12323, 17971, 74323, 28387, 2767, 26053, 10567, 201809, 3613, 46811, 2311, 38327, 68311, 12841, 12611, 207029, 11119, 57037, 210193, 4159, 636947, 2111, 71483, 1801, 16661, 5309, 2273, 9137, 219829, 3593, 13841, 1987, 74363, 6451, 4013, 675827, 7057, 227473, 3167, 97961, 9547, 229681, 2707, 87589, 11149, 3109, 7369, 33767, 3863, 4481, 715859, 240881, 30181, 30323, 27017, 11633, 1913, 92683, 247729, 5011, 5197, 93979, 2861, 84503, 28297, 31907, 48299, 33829, 10831, 261713, 788687, 88423, 114197, 16691, 14087, 1871, 24659, 12743, 272453, 2237, 34283, 4363, 5437, 7079, 17293, 5167, 6793, 11681, 7459, 40487, 2731, 13613, 53717, 865043, 289589, 2221, 15307, 9629, 3049, 293329, 110233, 42083, 36901, 2543, 2647, 55823, 9041, 2029, 2887, 3671, 19163, 921743, 2749, 14753, 49121, 4871, 4057, 29347, 4297, 13151, 13751, 19889, 2789, 3631, 106727, 5231, 10067, 324113, 121789, 25033, 89113, 46867, 61637, 329393, 41257, 3457, 111127, 9749, 126271,

7. Distribution of the primes

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

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)
1108170.8000000.1000000.800000
2100547470.5400000.0700000.5400006.7500007.0000006.714286
31.000567455220.5670000.0450000.56700010.5000006.42857111.106383
410.0006.0593515.7080.6059000.0351000.60590010.6860677.80000010.934866
5100.00062.4832.81259.6710.6248300.0281200.62483010.3124288.01139610.453924
61.000.000637.20022.772614.4280.6372000.0227720.63720010.1979748.09815110.296928
710.000.0006.455.896192.7246.263.1720.6455900.0192720.64559010.1316638.46320110.193501
8100.000.00065.171.1221.670.47063.500.6520.6517110.0167050.65171110.0948228.66768010.138737
91.000.000.000656.438.43614.733.015641.705.4210.6564380.0147330.65643810.0725368.81968210.105494
1010.000.000.0006.601.865.964131.850.4426.470.015.5220.6601870.0131850.66018710.0570978.94931810.082532


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)
123121.5000000.5000001.000000
244131.0000000.2500000.7500001.3333331.0000001.500000
388171.0000000.1250000.8750002.0000001.0000002.333333
41611290.6875000.1250000.5625001.3750002.0000001.285714
532184140.5625000.1250000.4375001.6363642.0000001.555556
664356290.5468750.0937500.4531251.9444441.5000002.071429
7128699600.5390620.0703120.4687501.9714291.5000002.068965
8256139171220.5429690.0664060.4765622.0144931.8888892.033333
9512287252620.5605470.0488280.5117192.0647481.4705882.147541
101.024587465410.5732420.0449220.5283202.0452961.8400002.064885
112.0481.194781.1160.5830080.0380860.5449222.0340711.6956522.062847
124.0962.4521492.3030.5986330.0363770.5622562.0536011.9102562.063620
138.1924.9462954.6510.6037600.0360110.5677492.0171291.9798662.019540
1416.3849.9955539.4420.6100460.0337520.5762942.0208251.8745762.030101
1532.76820.2031.03319.1700.6165470.0315250.5850222.0213111.8679932.030290
1665.53640.7581.94038.8180.6219180.0296020.5923162.0174231.8780252.024935
17131.07282.1013.60078.5010.6263810.0274660.5989152.0143531.8556702.022284
18262.144165.3656.688158.6770.6308170.0255130.6053052.0141651.8577782.021337
19524.288332.55312.614319.9390.6342950.0240590.6102352.0110241.8860652.016291
201.048.576668.35823.805644.5530.6373960.0227020.6146942.0097791.8871892.014612
212.097.1521.342.63145.1781.297.4530.6402160.0215430.6186742.0088501.8978372.012950
224.194.3042.695.85485.8892.609.9650.6427420.0204780.6222642.0078891.9011242.011607
238.388.6085.410.986163.5265.247.4600.6450400.0194940.6255462.0071511.9039232.010548
2416.777.21610.856.540312.59510.543.9450.6471000.0186320.6284682.0063881.9115922.009343
2533.554.43221.777.451597.90421.179.5470.6490190.0178190.6312002.0059291.9127112.008693
2667.108.86443.672.0771.147.58442.524.4930.6507650.0171000.6336642.0053801.9193452.007809
27134.217.72887.561.2222.204.24885.356.9740.6523820.0164230.6359592.0049711.9207732.007243
28268.435.456175.523.8864.239.783171.284.1030.6538770.0157940.6380832.0045851.9234602.006680
29536.870.912351.792.6388.169.449343.623.1890.6552650.0152170.6400482.0042441.9268552.006159
301.073.741.824704.980.40915.763.189689.217.2200.6565640.0146810.6418842.0039661.9295292.005735
312.147.483.6481.412.550.77030.451.9061.382.098.8640.6577700.0141800.6435902.0036741.9318372.005317
324.294.967.2962.829.957.49058.900.3222.771.057.1680.6589010.0137140.6451872.0034381.9342082.004963
338.589.934.5925.669.038.543114.049.4995.554.989.0440.6599630.0132770.6466862.0032241.9363142.004646
3417.179.869.18411.355.196.270221.063.69011.134.132.5800.6609590.0128680.6480922.0030201.9383142.004348


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
121010100
241010100
381010100
4162020200
5324040202
6646060303
71289090405
8256170170809
951225025014011
101.02446046025021
112.04878078043035
124.0961490149079070
138.192295029501490146
1416.384553055302790274
1532.7681.03301.03305180515
1665.5361.94001.94009720968
17131.0723.60003.60001.81901.781
18262.1446.68806.68803.34203.346
19524.28812.614012.61406.30706.307
201.048.57623.805023.805011.932011.873
212.097.15245.178045.178022.650022.528
224.194.30485.889085.889043.008042.881
238.388.608163.5260163.526081.952081.574
2416.777.216312.5950312.5950156.7360155.859
2533.554.432597.9040597.9040299.1870298.717
2667.108.8641.147.58401.147.5840574.3840573.200
27134.217.7282.204.24802.204.24801.102.78501.101.463
28268.435.4564.239.78304.239.78302.120.54402.119.239
29536.870.9128.169.44908.169.44904.084.55504.084.894
301.073.741.82415.763.189015.763.18907.881.12807.882.061
312.147.483.64830.451.906030.451.906015.225.558015.226.348
324.294.967.29658.900.322058.900.322029.450.986029.449.336
338.589.934.592114.049.4990114.049.499057.026.514057.022.985
3417.179.869.184221.063.6900221.063.6900110.530.5440110.533.146


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
122010101
243110102
387133103
4169334113
53214655144
6642913139587
712860253218101616
8256122625737223330
951226213212775537361
101.024541270268146121147127
112.0481.116551562300257313246
124.0962.3031.1561.144610543620530
138.1924.6512.3452.3031.1951.1101.2271.119
1416.3849.4424.7964.6432.4412.2462.5092.246
1532.76819.1709.7649.4034.9984.5605.0244.588
1665.53638.81819.69919.11610.2229.16210.2269.208
17131.07278.50139.61138.88720.47918.75420.63418.634
18262.144158.67780.03978.63541.34037.94341.42937.965
19524.288319.939161.228158.70883.16276.70483.24276.831
201.048.576644.553324.296320.254167.209155.084167.081155.179
212.097.1521.297.453653.199644.251335.367312.617336.269313.200
224.194.3042.609.9651.313.2381.296.724673.891630.627674.264631.183
238.388.6085.247.4602.639.6802.607.7771.352.0691.270.2261.354.2181.270.947
2416.777.21610.543.9455.303.9465.239.9962.715.2572.556.8482.714.6322.557.208
2533.554.43221.179.54710.647.68810.531.8565.446.5345.141.8255.447.3715.143.817
2667.108.86442.524.49321.376.79421.147.69610.921.44710.336.28410.924.80910.341.953
27134.217.72885.356.97442.892.25642.464.71521.899.49320.775.13821.901.87420.780.469
28268.435.456171.284.10386.048.86085.235.24043.895.72541.742.77443.901.26641.744.338
29536.870.912343.623.189172.589.172171.034.01487.978.42683.837.16987.973.73483.833.860
301.073.741.824689.217.220346.102.660343.114.557176.290.276168.314.233176.297.872168.314.839
312.147.483.6481.382.098.864693.915.393688.183.468353.221.907337.818.729353.234.759337.823.469
324.294.967.2962.771.057.1681.391.013.5151.380.043.650707.652.021677.873.455707.649.024677.882.668
338.589.934.5925.554.989.0442.788.101.6112.766.887.4301.417.540.9321.359.922.9841.417.591.0641.359.934.064
3417.179.869.18411.134.132.5805.587.619.7525.546.512.8252.839.350.6482.727.687.2172.839.434.5832.727.660.132


8. Check for existing Integer Sequences by OEIS

Found in Database : 179, 3, 23, 7, 1, 11, 41, 13, 113, 1, 19, 1, 467, 1, 181, 73, 1, 1, 719, 1,
Found in Database : 179, 3, 23, 7, 11, 41, 13, 113, 19, 467, 181, 73, 719, 109, 103, 149, 389, 433, 1439, 83, 1907, 271,
Found in Database : 3, 7, 11, 13, 19, 23, 41, 53, 73, 83, 103, 109, 113, 149,