Inhaltsverzeichnis

Development of
Algorithmic Constructions

05:35:32
Deutsch
19.Apr 2024

Polynom = x^2+72x-113

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) = 113 = 113
f(1) = 5 = 5
f(2) = 35 = 5*7
f(3) = 7 = 7
f(4) = 191 = 191
f(5) = 17 = 17
f(6) = 355 = 5*71
f(7) = 55 = 5*11
f(8) = 527 = 17*31
f(9) = 77 = 7*11
f(10) = 707 = 7*101
f(11) = 25 = 5*5
f(12) = 895 = 5*179
f(13) = 31 = 31
f(14) = 1091 = 1091
f(15) = 149 = 149
f(16) = 1295 = 5*7*37
f(17) = 175 = 5*5*7
f(18) = 1507 = 11*137
f(19) = 101 = 101
f(20) = 1727 = 11*157
f(21) = 115 = 5*23
f(22) = 1955 = 5*17*23
f(23) = 259 = 7*37
f(24) = 2191 = 7*313
f(25) = 289 = 17*17
f(26) = 2435 = 5*487
f(27) = 5 = 5
f(28) = 2687 = 2687
f(29) = 11 = 11
f(30) = 2947 = 7*421
f(31) = 385 = 5*7*11
f(32) = 3215 = 5*643
f(33) = 419 = 419
f(34) = 3491 = 3491
f(35) = 227 = 227
f(36) = 3775 = 5*5*151
f(37) = 245 = 5*7*7
f(38) = 4067 = 7*7*83
f(39) = 527 = 17*31
f(40) = 4367 = 11*397
f(41) = 565 = 5*113
f(42) = 4675 = 5*5*11*17
f(43) = 151 = 151
f(44) = 4991 = 7*23*31
f(45) = 161 = 7*23
f(46) = 5315 = 5*1063
f(47) = 685 = 5*137
f(48) = 5647 = 5647
f(49) = 727 = 727
f(50) = 5987 = 5987
f(51) = 385 = 5*7*11
f(52) = 6335 = 5*7*181
f(53) = 407 = 11*37
f(54) = 6691 = 6691
f(55) = 859 = 859
f(56) = 7055 = 5*17*83
f(57) = 905 = 5*181
f(58) = 7427 = 7*1061
f(59) = 119 = 7*17
f(60) = 7807 = 37*211
f(61) = 125 = 5*5*5
f(62) = 8195 = 5*11*149
f(63) = 1049 = 1049
f(64) = 8591 = 11*11*71
f(65) = 1099 = 7*157
f(66) = 8995 = 5*7*257
f(67) = 575 = 5*5*23
f(68) = 9407 = 23*409
f(69) = 601 = 601
f(70) = 9827 = 31*317
f(71) = 1255 = 5*251
f(72) = 10255 = 5*7*293
f(73) = 1309 = 7*11*17
f(74) = 10691 = 10691
f(75) = 341 = 11*31
f(76) = 11135 = 5*17*131
f(77) = 355 = 5*71
f(78) = 11587 = 11587
f(79) = 1477 = 7*211
f(80) = 12047 = 7*1721
f(81) = 1535 = 5*307
f(82) = 12515 = 5*2503
f(83) = 797 = 797
f(84) = 12991 = 11*1181
f(85) = 827 = 827
f(86) = 13475 = 5*5*7*7*11
f(87) = 1715 = 5*7*7*7
f(88) = 13967 = 13967
f(89) = 1777 = 1777
f(90) = 14467 = 17*23*37
f(91) = 115 = 5*23
f(92) = 14975 = 5*5*599
f(93) = 119 = 7*17
f(94) = 15491 = 7*2213
f(95) = 1969 = 11*179
f(96) = 16015 = 5*3203
f(97) = 2035 = 5*11*37
f(98) = 16547 = 16547
f(99) = 1051 = 1051
f(100) = 17087 = 7*2441

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+72x-113

f(0)=113
f(1)=5
f(2)=7
f(3)=1
f(4)=191
f(5)=17
f(6)=71
f(7)=11
f(8)=31
f(9)=1
f(10)=101
f(11)=1
f(12)=179
f(13)=1
f(14)=1091
f(15)=149
f(16)=37
f(17)=1
f(18)=137
f(19)=1
f(20)=157
f(21)=23
f(22)=1
f(23)=1
f(24)=313
f(25)=1
f(26)=487
f(27)=1
f(28)=2687
f(29)=1
f(30)=421
f(31)=1
f(32)=643
f(33)=419
f(34)=3491
f(35)=227
f(36)=151
f(37)=1
f(38)=83
f(39)=1
f(40)=397
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=1
f(46)=1063
f(47)=1
f(48)=5647
f(49)=727
f(50)=5987
f(51)=1
f(52)=181
f(53)=1
f(54)=6691
f(55)=859
f(56)=1
f(57)=1
f(58)=1061
f(59)=1
f(60)=211
f(61)=1
f(62)=1
f(63)=1049
f(64)=1
f(65)=1
f(66)=257
f(67)=1
f(68)=409
f(69)=601
f(70)=317
f(71)=251
f(72)=293
f(73)=1
f(74)=10691
f(75)=1
f(76)=131
f(77)=1
f(78)=11587
f(79)=1
f(80)=1721
f(81)=307
f(82)=2503
f(83)=797
f(84)=1181
f(85)=827
f(86)=1
f(87)=1
f(88)=13967
f(89)=1777
f(90)=1
f(91)=1
f(92)=599
f(93)=1
f(94)=2213
f(95)=1
f(96)=3203
f(97)=1
f(98)=16547
f(99)=1051

b) Substitution of the polynom
The polynom f(x)=x^2+72x-113 could be written as f(y)= y^2-1409 with x=y-36

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+36
f'(x)>2x+71

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

113, 5, 7, 1, 191, 17, 71, 11, 31, 1, 101, 1, 179, 1, 1091, 149, 37, 1, 137, 1, 157, 23, 1, 1, 313, 1, 487, 1, 2687, 1, 421, 1, 643, 419, 3491, 227, 151, 1, 83, 1, 397, 1, 1, 1, 1, 1, 1063, 1, 5647, 727, 5987, 1, 181, 1, 6691, 859, 1, 1, 1061, 1, 211, 1, 1, 1049, 1, 1, 257, 1, 409, 601, 317, 251, 293, 1, 10691, 1, 131, 1, 11587, 1, 1721, 307, 2503, 797, 1181, 827, 1, 1, 13967, 1777, 1, 1, 599, 1, 2213, 1, 3203, 1, 16547, 1051, 2441, 1, 3527, 2239, 18191, 2309, 1, 1, 1, 613, 1171, 1, 4099, 1, 1, 1, 4339, 1, 22307, 1, 1, 1, 673, 373, 1423, 383, 4967, 1, 331, 461, 2377, 1, 173, 1697, 743, 1, 1, 1, 28867, 1, 29567, 1, 1, 547, 1823, 3919, 6343, 401, 457, 1, 431, 839, 617, 4289, 1, 1, 1013, 1, 2131, 199, 1609, 1, 7559, 1, 1, 2437, 7879, 1, 1297, 5077, 5861, 1, 761, 1321, 3881, 1, 8707, 1, 1, 2801, 45247, 571, 1, 1, 1, 1, 1, 1, 48767, 769, 49667, 1, 1, 6379, 1, 1, 953, 661, 7621, 1, 54287, 1, 11047, 1741, 677, 1, 1, 1, 1571, 1, 59107, 1, 1, 541, 61091, 7699, 1129, 1, 5737, 1, 9161, 1, 1, 8209, 66191, 269, 1, 1, 2969, 1, 2237, 1747, 14083, 1, 1459, 2251, 2903, 1, 1, 9277, 971, 1, 607, 281, 76991, 1, 919, 1, 11321, 907, 80387, 1, 709, 1283, 11813, 1487, 1, 2111, 85027, 5351, 1, 1, 1, 647, 88591, 11149, 17959, 1, 13001, 1, 92227, 1, 18691, 1069, 1, 1, 2741, 1, 97187, 12227, 5791, 2477, 1, 1, 9181, 1, 4091, 1, 103567, 1861, 1, 1319, 1, 1, 6323, 1229, 3109, 1, 4789, 3463, 111487, 701, 22567, 2027, 1483, 1, 1, 1453, 116927, 7351, 16901, 1, 1, 1, 1, 1, 24499, 1, 1, 1, 5449, 1, 1, 1, 18313, 1151, 2357, 3259, 1, 16477, 132547, 1, 1, 4211, 863, 17029, 5479, 1, 1, 1, 139967, 1759, 5659, 773, 6217, 1, 4129, 1, 1, 1, 13417, 3709, 4261, 2677, 4861, 9467, 823, 1913, 1, 1, 1, 1, 1847, 4931, 158591, 1, 1, 1, 161807, 20327, 1, 2053, 3001, 1481, 23813, 20939, 1, 4229, 169987, 1, 1, 1, 2039, 1979, 174991, 1, 1, 1, 1, 1, 7829, 4523, 1, 1, 2383, 1, 2179, 1163, 186947, 1381, 188687, 1, 5441, 1087, 192191, 1097, 38791, 4871, 27961, 3511, 197507, 1, 1733, 1, 1, 3607, 1, 1019, 204707, 1, 206527, 2593, 5953, 1, 210191, 2399, 42407, 1, 213887, 1, 1, 5417, 1, 1607, 219491, 1, 1, 1, 20297, 28027, 225167, 5653, 1, 509, 32713, 3593, 46183, 1, 232847, 2657, 1973, 1, 1, 1, 238691, 29959, 48131, 1, 1, 1, 1, 1, 1, 30949, 2089, 4457, 50119, 1, 252607, 1, 254627, 1, 7333, 1039, 258691, 2029, 52147, 1, 1, 1, 24077, 1, 1, 16747, 15823, 2411, 1549, 6803, 1579, 1, 3877, 1, 1, 1, 1, 35069, 1, 1, 16691, 2543, 40841, 1, 5237, 1, 1, 1583, 8353, 1, 1, 1, 1103, 1489, 59779, 1, 43013, 1, 60659, 1, 17971, 38327, 43961, 1, 61991, 9721, 1, 9791, 5717, 1, 1, 39727, 1, 4001, 3779, 20147, 1249, 1, 1, 1, 328067, 1, 10657, 1, 1901, 41729, 334991, 42019, 6133, 4231, 1, 1, 14869, 1, 4051, 43189, 4177, 1553, 9973, 1, 351427, 4007, 353807, 1, 10177, 3191, 358591, 1, 1, 1811, 33037, 1, 4751, 1, 73651, 1, 1, 46489, 1523, 1, 10151, 2141, 1471, 1, 76103, 1, 54713, 48029, 1, 2417, 387967, 12163, 1, 1399, 1429, 49279, 395491, 1, 3461, 1, 57221, 50227, 1, 1, 2617, 1, 58313, 1, 1, 10301, 11171, 51827, 1657, 1, 1, 26237, 38281, 1427, 1, 1, 60901, 1, 1, 2689, 86311, 4919, 434191, 1, 1783, 5477, 14177, 27551, 442147, 11087, 1, 1, 2393, 7013, 1637, 1, 3457, 8111, 1, 11423, 1, 1, 460991, 1, 13249, 1, 2971, 58477, 1499, 1, 2551, 2113, 3989, 59509, 8681, 11971, 1, 1, 69001, 1, 97159, 60899, 15761, 2663, 4273, 1, 4153, 1, 1, 733, 99971, 62659, 10259, 1, 101107, 6337, 1, 63727, 46477, 1831, 1, 16111, 516991, 1, 4159, 13033, 1, 1, 1, 1, 21143, 1, 1, 1, 15269, 13397, 537347, 8419, 49117, 1693, 1, 1, 1723, 4027, 109831, 6883, 552127, 4943, 79301, 1, 1, 6359, 561091, 17581, 1, 1, 567107, 1, 6869, 1, 1, 1, 1, 36107, 1, 14519, 3253, 72977, 83621, 1, 1, 1, 25717, 1, 1, 2129, 85381, 2203, 1, 7529, 4831, 75679, 7883, 10867, 11093, 3823, 613247, 19213, 616387, 2207, 1, 4567, 1, 3547, 1, 1, 3907, 11261, 4243, 3169, 127079, 1, 3209, 1, 1667, 3217, 1, 1, 2243, 8123, 2659, 1, 9221, 82039, 1, 1, 661187, 1, 4127, 1, 133543, 2699, 670991, 1, 3853, 1, 1987, 42451, 1, 1, 27367, 1, 98213, 1, 138163, 1, 4597, 7907, 2693, 1, 140167, 1, 1801, 1, 141511, 1, 101561, 1, 64937, 1, 13049, 22481, 3323, 12907, 144899, 3631, 7207, 1, 731327, 1, 2999, 8369, 1, 92489, 6449, 1, 106441, 1, 20231, 18757, 1, 94219, 1, 6761, 4337, 1, 44851, 95527, 5591, 1, 4397, 1, 772991, 1, 155303, 19457, 780047, 1, 1, 9817, 157427, 49307, 71881, 5827, 2063, 2843, 1, 6247, 801407, 1, 1, 14407, 115513, 9209, 162439, 1, 9829, 1, 2389, 1, 1, 4483, 22343, 1, 1, 1, 10831, 1, 1, 1, 168263, 52697, 120713, 7561, 1, 1933, 852367, 1, 3331, 1, 1, 13463, 863491, 4703, 7541, 21727, 11311, 7793, 1, 10957, 175687, 110039, 1, 15787, 1, 1, 889727, 1, 1, 1, 1, 16057, 1, 56437, 2549, 2267, 39509, 1, 1, 22861, 16661, 1, 2467, 1, 1, 3307, 9187, 1, 931747, 1, 187123, 1, 134213, 117679, 7547, 23633, 30557, 29663, 7993, 1, 1, 1, 87181, 1, 192583, 1, 3733, 1, 970787, 1, 1, 1009, 139813, 1, 1, 1, 1, 1, 58271, 1, 1, 1, 3947, 2719, 18229, 5023, 20543, 1, 1010627, 6329, 202931, 31771, 1, 1, 29221, 1, 27751, 64301, 1030847, 12911, 29569, 18517, 2591, 3517, 3793, 1, 4139, 1, 1, 1, 8443, 1, 62323, 66347, 30389, 1, 1067747, 12157,

6. Sequence of the polynom (only primes)

113, 5, 7, 191, 17, 71, 11, 31, 101, 179, 1091, 149, 37, 137, 157, 23, 313, 487, 2687, 421, 643, 419, 3491, 227, 151, 83, 397, 1063, 5647, 727, 5987, 181, 6691, 859, 1061, 211, 1049, 257, 409, 601, 317, 251, 293, 10691, 131, 11587, 1721, 307, 2503, 797, 1181, 827, 13967, 1777, 599, 2213, 3203, 16547, 1051, 2441, 3527, 2239, 18191, 2309, 613, 1171, 4099, 4339, 22307, 673, 373, 1423, 383, 4967, 331, 461, 2377, 173, 1697, 743, 28867, 29567, 547, 1823, 3919, 6343, 401, 457, 431, 839, 617, 4289, 1013, 2131, 199, 1609, 7559, 2437, 7879, 1297, 5077, 5861, 761, 1321, 3881, 8707, 2801, 45247, 571, 48767, 769, 49667, 6379, 953, 661, 7621, 54287, 11047, 1741, 677, 1571, 59107, 541, 61091, 7699, 1129, 5737, 9161, 8209, 66191, 269, 2969, 2237, 1747, 14083, 1459, 2251, 2903, 9277, 971, 607, 281, 76991, 919, 11321, 907, 80387, 709, 1283, 11813, 1487, 2111, 85027, 5351, 647, 88591, 11149, 17959, 13001, 92227, 18691, 1069, 2741, 97187, 12227, 5791, 2477, 9181, 4091, 103567, 1861, 1319, 6323, 1229, 3109, 4789, 3463, 111487, 701, 22567, 2027, 1483, 1453, 116927, 7351, 16901, 24499, 5449, 18313, 1151, 2357, 3259, 16477, 132547, 4211, 863, 17029, 5479, 139967, 1759, 5659, 773, 6217, 4129, 13417, 3709, 4261, 2677, 4861, 9467, 823, 1913, 1847, 4931, 158591, 161807, 20327, 2053, 3001, 1481, 23813, 20939, 4229, 169987, 2039, 1979, 174991, 7829, 4523, 2383, 2179, 1163, 186947, 1381, 188687, 5441, 1087, 192191, 1097, 38791, 4871, 27961, 3511, 197507, 1733, 3607, 1019, 204707, 206527, 2593, 5953, 210191, 2399, 42407, 213887, 5417, 1607, 219491, 20297, 28027, 225167, 5653, 509, 32713, 3593, 46183, 232847, 2657, 1973, 238691, 29959, 48131, 30949, 2089, 4457, 50119, 252607, 254627, 7333, 1039, 258691, 2029, 52147, 24077, 16747, 15823, 2411, 1549, 6803, 1579, 3877, 35069, 16691, 2543, 40841, 5237, 1583, 8353, 1103, 1489, 59779, 43013, 60659, 17971, 38327, 43961, 61991, 9721, 9791, 5717, 39727, 4001, 3779, 20147, 1249, 328067, 10657, 1901, 41729, 334991, 42019, 6133, 4231, 14869, 4051, 43189, 4177, 1553, 9973, 351427, 4007, 353807, 10177, 3191, 358591, 1811, 33037, 4751, 73651, 46489, 1523, 10151, 2141, 1471, 76103, 54713, 48029, 2417, 387967, 12163, 1399, 1429, 49279, 395491, 3461, 57221, 50227, 2617, 58313, 10301, 11171, 51827, 1657, 26237, 38281, 1427, 60901, 2689, 86311, 4919, 434191, 1783, 5477, 14177, 27551, 442147, 11087, 2393, 7013, 1637, 3457, 8111, 11423, 460991, 13249, 2971, 58477, 1499, 2551, 2113, 3989, 59509, 8681, 11971, 69001, 97159, 60899, 15761, 2663, 4273, 4153, 733, 99971, 62659, 10259, 101107, 6337, 63727, 46477, 1831, 16111, 516991, 4159, 13033, 21143, 15269, 13397, 537347, 8419, 49117, 1693, 1723, 4027, 109831, 6883, 552127, 4943, 79301, 6359, 561091, 17581, 567107, 6869, 36107, 14519, 3253, 72977, 83621, 25717, 2129, 85381, 2203, 7529, 4831, 75679, 7883, 10867, 11093, 3823, 613247, 19213, 616387, 2207, 4567, 3547, 3907, 11261, 4243, 3169, 127079, 3209, 1667, 3217, 2243, 8123, 2659, 9221, 82039, 661187, 4127, 133543, 2699, 670991, 3853, 1987, 42451, 27367, 98213, 138163, 4597, 7907, 2693, 140167, 1801, 141511, 101561, 64937, 13049, 22481, 3323, 12907, 144899, 3631, 7207, 731327, 2999, 8369, 92489, 6449, 106441, 20231, 18757, 94219, 6761, 4337, 44851, 95527, 5591, 4397, 772991, 155303, 19457, 780047, 9817, 157427, 49307, 71881, 5827, 2063, 2843, 6247, 801407, 14407, 115513, 9209, 162439, 9829, 2389, 4483, 22343, 10831, 168263, 52697, 120713, 7561, 1933, 852367, 3331, 13463, 863491, 4703, 7541, 21727, 11311, 7793, 10957, 175687, 110039, 15787, 889727, 16057, 56437, 2549, 2267, 39509, 22861, 16661, 2467, 3307, 9187, 931747, 187123, 134213, 117679, 7547, 23633, 30557, 29663, 7993, 87181, 192583, 3733, 970787, 1009, 139813, 58271, 3947, 2719, 18229, 5023, 20543, 1010627, 6329, 202931, 31771, 29221, 27751, 64301, 1030847, 12911, 29569, 18517, 2591, 3517, 3793, 4139, 8443, 62323, 66347, 30389, 1067747, 12157,

7. Distribution of the primes

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

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)
1108440.8000000.4000000.4000000.0000000.0000000.000000
21005725320.5700000.2500000.3200007.1250006.2500008.000000
31.0005921824100.5920000.1820000.41000010.3859657.28000012.812500
410.0006.1641.3584.8060.6164000.1358000.48060010.4121627.46153811.721951
5100.00063.52110.25153.2700.6352100.1025100.53270010.3051597.54860111.084062
61.000.000644.93682.356562.5800.6449360.0823560.56258010.1531148.03394810.560916
710.000.0006.521.960691.3745.830.5860.6521960.0691370.58305910.1125698.39494410.364012
8100.000.00065.749.1485.939.48159.809.6670.6574920.0593950.59809710.0811958.59083710.257917
91.000.000.000661.542.28452.110.965609.431.3190.6615420.0521110.60943110.0616108.77365610.189511
1010.000.000.0006.647.595.487464.436.4386.183.159.0490.6647600.0464440.61831610.0486338.91245210.145785


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
244311.0000000.7500000.2500001.3333331.5000001.000000
387430.8750000.5000000.3750001.7500001.3333333.000000
41612660.7500000.3750000.3750001.7142861.5000002.000000
532197120.5937500.2187500.3750001.5833331.1666672.000000
6643516190.5468750.2500000.2968751.8421052.2857141.583333
71287232400.5625000.2500000.3125002.0571432.0000002.105263
825614458860.5625000.2265620.3359382.0000001.8125002.150000
95122931051880.5722660.2050780.3671882.0347221.8103452.186047
101.0246061864200.5917970.1816410.4101562.0682591.7714292.234043
112.0481.2283438850.5996090.1674800.4321292.0264031.8440862.107143
124.0962.4846251.8590.6064450.1525880.4538572.0228011.8221572.100565
138.1925.0261.1413.8850.6135250.1392820.4742432.0233501.8256002.089833
1416.38410.1752.0938.0820.6210330.1277470.4932862.0244731.8343562.080309
1532.76820.5883.84716.7410.6282960.1174010.5108952.0233911.8380322.071393
1665.53641.4787.01134.4670.6329040.1069790.5259252.0146691.8224592.058838
17131.07283.46213.08370.3790.6367650.0998150.5369492.0121991.8660682.041924
18262.144167.59424.367143.2270.6393200.0929530.5463682.0080281.8624932.035081
19524.288336.76045.696291.0640.6423190.0871580.5551612.0093801.8753232.032187
201.048.576676.61586.016590.5990.6452700.0820310.5632392.0091911.8823532.029104
212.097.1521.358.394162.7351.195.6590.6477330.0775980.5701352.0076321.8919152.024485
224.194.3042.725.506308.3862.417.1200.6498110.0735250.5762862.0064181.8950202.021580
238.388.6085.466.946587.1174.879.8290.6517110.0699900.5817212.0058461.9038382.018861
2416.777.21610.964.4271.117.6659.846.7620.6535310.0666180.5869132.0055851.9036502.017850
2533.554.43221.984.3822.133.66019.850.7220.6551860.0635880.5915982.0050641.9090342.015965
2667.108.86444.068.0274.085.35039.982.6770.6566650.0608760.5957882.0045151.9147152.014167
27134.217.72888.322.9337.831.89380.491.0400.6580570.0583520.5997052.0042411.9170682.013148
28268.435.456176.992.29815.042.530161.949.7680.6593480.0560380.6033102.0039221.9206762.012022
29536.870.912354.623.01628.933.311325.689.7050.6605370.0538920.6066442.0036071.9234342.011054
301.073.741.824710.444.55855.742.273654.702.2850.6616530.0519140.6097392.0033801.9265782.010203
312.147.483.6481.423.106.223107.545.2771.315.560.9460.6626850.0500800.6126062.0031211.9293312.009403
324.294.967.2962.850.405.260207.759.6402.642.645.6200.6636620.0483730.6152892.0029461.9318342.008759
338.589.934.5925.708.604.572401.831.8575.306.772.7150.6645690.0467790.6177902.0027341.9341192.008129
3417.179.869.18411.431.883.684778.001.41410.653.882.2700.6654230.0452860.6201382.0025711.9361372.007601


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
122021010
243031011
384042011
4166062121
5327072122
664164123724
712832112151368
825658253311221015
9512105465912411636
101.0241868610020702670
112.0483431561874111549138
124.0966252873387321589248
138.1921.141521620145407155434
1416.3842.0939451.148279755291768
1532.7683.8471.7282.1195281.3835331.403
1665.5367.0113.1263.8859212.5169732.601
17131.07213.0835.8797.2041.7734.7271.7544.829
18262.14424.36710.99813.3693.2488.9183.2448.957
19524.28845.69620.63125.0655.98416.7656.10616.841
201.048.57686.01638.77047.24611.36031.58011.50531.571
212.097.152162.73573.24889.48721.36959.96321.63959.764
224.194.304308.386138.901169.48540.401113.71540.698113.572
238.388.608587.117263.938323.17976.726216.87777.316216.198
2416.777.2161.117.665501.815615.850146.072413.094146.641411.858
2533.554.4322.133.660957.6131.176.047278.558788.593279.377787.132
2667.108.8644.085.3501.833.3642.251.986532.2261.510.250533.8281.509.046
27134.217.7287.831.8933.512.5644.319.3291.018.1922.896.3991.020.5292.896.773
28268.435.45615.042.5306.740.9808.301.5501.954.1655.565.6021.955.0655.567.698
29536.870.91228.933.31112.962.78515.970.5263.754.43410.710.7673.753.91810.714.192
301.073.741.82455.742.27324.961.90030.780.3737.222.06220.647.7327.224.22320.648.256
312.147.483.648107.545.27748.154.87159.390.40613.918.65739.855.33613.919.01839.852.266
324.294.967.296207.759.64092.998.840114.760.80026.854.79677.026.21026.859.81977.018.815
338.589.934.592401.831.857179.821.771222.010.08651.889.078149.019.83151.896.835149.026.113
3417.179.869.184778.001.414348.072.031429.929.383100.367.775288.624.425100.374.140288.635.074


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
241100001
383210003
4166330123
53212842244
664191362476
71284022187111111
825686454121212123
9512188989044415152
101.02442021720310198109112
112.048885463422211224229221
124.0961.859971888462471466460
138.1923.8851.9861.899960978971976
1416.3848.0824.1043.9782.0212.0151.9982.048
1532.76816.7418.5038.2384.2204.1684.1494.204
1665.53634.46717.50016.9678.6348.5968.6938.544
17131.07270.37935.57034.80917.70917.52517.59917.546
18262.144143.22772.11471.11335.92235.61935.87835.808
19524.288291.064146.661144.40372.92372.48073.15172.510
201.048.576590.599297.368293.231147.974147.319148.166147.140
212.097.1521.195.659601.851593.808299.883298.688299.351297.737
224.194.3042.417.1201.216.9471.200.173605.437603.592605.560602.531
238.388.6084.879.8292.455.9682.423.8611.221.8211.217.9471.223.1061.216.955
2416.777.2169.846.7624.953.2794.893.4832.466.2602.456.3352.466.4782.457.689
2533.554.43219.850.7229.980.1099.870.6134.971.0704.952.2354.972.5184.954.899
2667.108.86439.982.67720.098.68819.883.98910.012.8139.976.79610.013.2779.979.791
27134.217.72880.491.04040.453.85340.037.18720.153.09120.089.22620.155.89620.092.827
28268.435.456161.949.76881.373.24680.576.52240.556.57640.421.23240.548.39640.423.564
29536.870.912325.689.705163.605.097162.084.60881.547.45381.296.68781.539.75881.305.807
301.073.741.824654.702.285328.833.918325.868.367163.910.053163.436.345163.911.106163.444.781
312.147.483.6481.315.560.946660.664.342654.896.604329.338.353328.414.694329.350.485328.457.414
324.294.967.2962.642.645.6201.326.884.0051.315.761.615661.515.774659.773.292661.555.965659.800.589
338.589.934.5925.306.772.7152.664.201.2232.642.571.4921.328.334.0821.325.021.6981.328.401.8971.325.015.038
3417.179.869.18410.653.882.2705.347.881.9555.306.000.3152.666.683.6912.660.236.8702.666.730.6652.660.231.044


8. Check for existing Integer Sequences by OEIS

Found in Database : 113, 5, 7, 1, 191, 17, 71, 11, 31, 1, 101, 1, 179, 1, 1091, 149, 37, 1, 137, 1,
Found in Database : 113, 5, 7, 191, 17, 71, 11, 31, 101, 179, 1091, 149, 37, 137, 157, 23, 313, 487, 2687, 421, 643, 419, 3491, 227, 151, 83,
Found in Database : 5, 7, 11, 17, 23, 31, 37, 71, 83, 101, 113, 131, 137, 149,