Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:31:25
Deutsch
19.Apr 2024

Polynom = x^2+3x-7

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) = 7 = 7
f(1) = 3 = 3
f(2) = 3 = 3
f(3) = 11 = 11
f(4) = 21 = 3*7
f(5) = 33 = 3*11
f(6) = 47 = 47
f(7) = 63 = 3*3*7
f(8) = 81 = 3*3*3*3
f(9) = 101 = 101
f(10) = 123 = 3*41
f(11) = 147 = 3*7*7
f(12) = 173 = 173
f(13) = 201 = 3*67
f(14) = 231 = 3*7*11
f(15) = 263 = 263
f(16) = 297 = 3*3*3*11
f(17) = 333 = 3*3*37
f(18) = 371 = 7*53
f(19) = 411 = 3*137
f(20) = 453 = 3*151
f(21) = 497 = 7*71
f(22) = 543 = 3*181
f(23) = 591 = 3*197
f(24) = 641 = 641
f(25) = 693 = 3*3*7*11
f(26) = 747 = 3*3*83
f(27) = 803 = 11*73
f(28) = 861 = 3*7*41
f(29) = 921 = 3*307
f(30) = 983 = 983
f(31) = 1047 = 3*349
f(32) = 1113 = 3*7*53
f(33) = 1181 = 1181
f(34) = 1251 = 3*3*139
f(35) = 1323 = 3*3*3*7*7
f(36) = 1397 = 11*127
f(37) = 1473 = 3*491
f(38) = 1551 = 3*11*47
f(39) = 1631 = 7*233
f(40) = 1713 = 3*571
f(41) = 1797 = 3*599
f(42) = 1883 = 7*269
f(43) = 1971 = 3*3*3*73
f(44) = 2061 = 3*3*229
f(45) = 2153 = 2153
f(46) = 2247 = 3*7*107
f(47) = 2343 = 3*11*71
f(48) = 2441 = 2441
f(49) = 2541 = 3*7*11*11
f(50) = 2643 = 3*881
f(51) = 2747 = 41*67
f(52) = 2853 = 3*3*317
f(53) = 2961 = 3*3*7*47
f(54) = 3071 = 37*83
f(55) = 3183 = 3*1061
f(56) = 3297 = 3*7*157
f(57) = 3413 = 3413
f(58) = 3531 = 3*11*107
f(59) = 3651 = 3*1217
f(60) = 3773 = 7*7*7*11
f(61) = 3897 = 3*3*433
f(62) = 4023 = 3*3*3*149
f(63) = 4151 = 7*593
f(64) = 4281 = 3*1427
f(65) = 4413 = 3*1471
f(66) = 4547 = 4547
f(67) = 4683 = 3*7*223
f(68) = 4821 = 3*1607
f(69) = 4961 = 11*11*41
f(70) = 5103 = 3*3*3*3*3*3*7
f(71) = 5247 = 3*3*11*53
f(72) = 5393 = 5393
f(73) = 5541 = 3*1847
f(74) = 5691 = 3*7*271
f(75) = 5843 = 5843
f(76) = 5997 = 3*1999
f(77) = 6153 = 3*7*293
f(78) = 6311 = 6311
f(79) = 6471 = 3*3*719
f(80) = 6633 = 3*3*11*67
f(81) = 6797 = 7*971
f(82) = 6963 = 3*11*211
f(83) = 7131 = 3*2377
f(84) = 7301 = 7*7*149
f(85) = 7473 = 3*47*53
f(86) = 7647 = 3*2549
f(87) = 7823 = 7823
f(88) = 8001 = 3*3*7*127
f(89) = 8181 = 3*3*3*3*101
f(90) = 8363 = 8363
f(91) = 8547 = 3*7*11*37
f(92) = 8733 = 3*41*71
f(93) = 8921 = 11*811
f(94) = 9111 = 3*3037
f(95) = 9303 = 3*7*443
f(96) = 9497 = 9497
f(97) = 9693 = 3*3*3*359
f(98) = 9891 = 3*3*7*157
f(99) = 10091 = 10091
f(100) = 10293 = 3*47*73

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+3x-7

f(0)=7
f(1)=3
f(2)=1
f(3)=11
f(4)=1
f(5)=1
f(6)=47
f(7)=1
f(8)=1
f(9)=101
f(10)=41
f(11)=1
f(12)=173
f(13)=67
f(14)=1
f(15)=263
f(16)=1
f(17)=37
f(18)=53
f(19)=137
f(20)=151
f(21)=71
f(22)=181
f(23)=197
f(24)=641
f(25)=1
f(26)=83
f(27)=73
f(28)=1
f(29)=307
f(30)=983
f(31)=349
f(32)=1
f(33)=1181
f(34)=139
f(35)=1
f(36)=127
f(37)=491
f(38)=1
f(39)=233
f(40)=571
f(41)=599
f(42)=269
f(43)=1
f(44)=229
f(45)=2153
f(46)=107
f(47)=1
f(48)=2441
f(49)=1
f(50)=881
f(51)=1
f(52)=317
f(53)=1
f(54)=1
f(55)=1061
f(56)=157
f(57)=3413
f(58)=1
f(59)=1217
f(60)=1
f(61)=433
f(62)=149
f(63)=593
f(64)=1427
f(65)=1471
f(66)=4547
f(67)=223
f(68)=1607
f(69)=1
f(70)=1
f(71)=1
f(72)=5393
f(73)=1847
f(74)=271
f(75)=5843
f(76)=1999
f(77)=293
f(78)=6311
f(79)=719
f(80)=1
f(81)=971
f(82)=211
f(83)=2377
f(84)=1
f(85)=1
f(86)=2549
f(87)=7823
f(88)=1
f(89)=1
f(90)=8363
f(91)=1
f(92)=1
f(93)=811
f(94)=3037
f(95)=443
f(96)=9497
f(97)=359
f(98)=1
f(99)=10091

b) Substitution of the polynom
The polynom f(x)=x^2+3x-7 could be written as f(y)= y^2-9.25 with x=y-1.5

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

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

7, 3, 1, 11, 1, 1, 47, 1, 1, 101, 41, 1, 173, 67, 1, 263, 1, 37, 53, 137, 151, 71, 181, 197, 641, 1, 83, 73, 1, 307, 983, 349, 1, 1181, 139, 1, 127, 491, 1, 233, 571, 599, 269, 1, 229, 2153, 107, 1, 2441, 1, 881, 1, 317, 1, 1, 1061, 157, 3413, 1, 1217, 1, 433, 149, 593, 1427, 1471, 4547, 223, 1607, 1, 1, 1, 5393, 1847, 271, 5843, 1999, 293, 6311, 719, 1, 971, 211, 2377, 1, 1, 2549, 7823, 1, 1, 8363, 1, 1, 811, 3037, 443, 9497, 359, 1, 10091, 1, 3499, 1, 3637, 337, 1619, 1283, 1307, 11981, 1, 1, 12647, 613, 397, 13331, 1, 1, 14033, 1, 691, 14753, 4999, 5081, 2213, 1, 1777, 1, 5501, 1, 17021, 823, 5849, 379, 1, 2039, 1693, 6299, 1, 367, 6577, 953, 20297, 2287, 773, 3023, 7151, 659, 1, 677, 7547, 22943, 1, 2617, 1, 1151, 8161, 1, 761, 1, 2341, 2897, 419, 26723, 1, 9127, 1, 9349, 9461, 373, 3229, 1, 1, 1433, 1, 751, 1483, 10499, 601, 1193, 1, 32933, 1009, 1, 34031, 11467, 1, 5021, 3947, 3989, 1, 1, 1, 1, 1801, 1, 38603, 619, 1459, 39791, 13397, 1933, 3727, 1, 1, 42221, 1579, 4783, 887, 14627, 14767, 6389, 1, 1381, 1, 1, 1, 47297, 2273, 16057, 48611, 1, 2357, 49943, 509, 1, 4663, 1, 17401, 7523, 17707, 1, 1103, 673, 1, 1, 2663, 1709, 56873, 2731, 521, 58313, 1, 941, 59771, 1, 1, 839, 1871, 20747, 8963, 7027, 787, 1, 21587, 21757, 1, 1, 22271, 6121, 1, 1, 68897, 1, 3331, 70481, 23671, 3407, 6553, 8069, 739, 10529, 24749, 1, 1, 617, 1, 2081, 1231, 1, 1, 1, 1, 80363, 1, 3881, 82073, 3061, 1321, 1783, 2557, 1, 1, 28711, 1, 12473, 9767, 9833, 1, 4271, 30097, 8263, 4357, 2791, 1117, 10369, 1, 94547, 31721, 4561, 96401, 32341, 1, 1, 1, 11059, 1, 33599, 33811, 102071, 1, 733, 103997, 1, 11699, 9631, 35531, 5107, 107903, 36187, 743, 109883, 1, 1373, 1453, 37517, 1, 1, 1, 937, 115931, 1, 13033, 929, 5651, 3617, 1, 3659, 5783, 1823, 13649, 1, 124247, 41651, 41887, 2579, 3851, 1039, 1669, 1, 4813, 877, 6257, 44041, 132851, 6361, 44771, 12277, 1, 1, 1, 1, 6607, 139493, 46747, 46997, 20249, 1, 1447, 2939, 1, 1, 146297, 1, 49277, 821, 2371, 1, 4079, 4597, 1, 13933, 51349, 1, 155621, 1931, 17467, 22571, 1291, 53197, 2083, 53731, 4909, 2293, 1, 18269, 165233, 7907, 55621, 2297, 56167, 1, 1, 1, 1, 3673, 863, 58099, 1, 58657, 58937, 1, 1, 19927, 16381, 1, 60631, 182747, 1249, 61487, 3943, 1, 2969, 1553, 62927, 1, 190523, 63799, 64091, 1, 21559, 7219, 1, 1237, 5987, 198461, 1, 66749, 2833, 1069, 22549, 203843, 1, 1399, 3083, 6287, 9923, 1, 23357, 23459, 30293, 70991, 1, 30689, 71917, 72227, 1, 3469, 1, 220421, 1, 74101, 223247, 74731, 1, 2113, 2803, 1, 228953, 6967, 1877, 33119, 1063, 1163, 33533, 26189, 26297, 2221, 1033, 79867, 21871, 11503, 80849, 243533, 1, 1, 4651, 82499, 11833, 1, 83497, 7621, 5153, 1, 28279, 1, 1, 1, 258563, 1, 1, 1, 1, 29297, 1187, 1, 12703, 267797, 89611, 1, 1949, 1, 10111, 3559, 1951, 1109, 5657, 1, 1, 1, 1489, 31387, 1, 13553, 1, 286751, 2593, 13757, 289973, 1, 4637, 293213, 1, 8951, 1, 1, 99551, 42821, 33427, 1, 4523, 2069, 101749, 3691, 1, 1409, 1, 1279, 4951, 313031, 104717, 15013, 7717, 1997, 106217, 4153, 1, 3253, 1, 108107, 1, 6949, 15607, 2963, 330041, 1, 1, 333497, 10141, 15991, 1, 1, 1, 1, 12653, 1, 49139, 10459, 1723, 4513, 1637, 1, 351047, 5591, 1, 3511, 16943, 1, 32563, 119797, 1, 361793, 1, 1, 365411, 122207, 122611, 52721, 1487, 11257, 1439, 1259, 1, 376373, 17981, 1, 1, 1, 2713, 1, 3889, 6131, 35227, 129581, 1, 2591, 3191, 131249, 1, 44029, 14723, 5179, 133349, 12161, 402581, 19231, 1627, 406397, 1, 45439, 410231, 1, 1787, 414083, 1, 19841, 417953, 1, 46727, 8609, 3001, 141481, 60821, 12941, 142787, 1, 6841, 1, 1861, 1, 145417, 6163, 146299, 20963, 1, 1, 1, 10867, 148961, 2819, 64223, 150301, 1, 9257, 50549, 1, 457643, 1987, 1, 1, 22051, 1, 465797, 51907, 1, 1, 14281, 1, 43093, 1481, 158927, 1, 17761, 53437, 68903, 161237, 1601, 1, 3319, 14827, 2711, 1, 54833, 494903, 165437, 1, 499133, 166849, 1, 503381, 5099, 18749, 1543, 169691, 170167, 73133, 1, 1699, 516233, 1, 57679, 1, 1, 174481, 4133, 175447, 1, 3371, 58967, 8447, 1, 178361, 1, 1, 179827, 180317, 77489, 1, 6733, 2347, 26111, 16661, 551297, 2393, 3931, 555761, 20639, 1, 560243, 4567, 26821, 8429, 17159, 189251, 7393, 63419, 63587, 81971, 1, 4091, 2741, 1, 193799, 1, 9277, 1973, 587513, 4789, 28123, 592121, 197887, 4049, 2269, 22159, 1, 1621, 1, 201499, 86579, 1, 203057, 610733, 9719, 68207, 615431, 2671, 206191, 56377, 207241, 1, 15241, 1, 3323, 1, 210407, 5701, 1, 2099, 1, 1, 1, 1, 7759, 1, 215737, 2467, 1, 19759, 1, 6619, 10427, 1, 1, 31513, 12517, 221677, 1, 95471, 1, 8291, 1, 224951, 225499, 3041, 32371, 227147, 1, 3623, 1, 1, 1, 1, 18731, 231571, 33161, 698051, 77747, 77933, 2137, 234917, 21407, 101159, 1, 237161, 713171, 1, 26539, 9839, 34283, 5867, 2689, 1, 34607, 1, 27043, 11617, 10949, 2953, 245671, 105533, 246817, 247391, 9661, 82847, 7549, 749081, 35753, 4733, 754283, 1, 1, 759503, 2063, 1, 10771, 23227, 36583, 769997, 1, 257837, 110753, 1, 86533, 111509, 1, 1, 71443, 37507, 1, 791201, 1, 1, 1, 266111, 5443, 72901, 267901, 1, 7993, 89899, 1, 116099, 271499, 2543, 1, 1, 1, 823547, 1, 91909, 829001, 39563, 277549, 20353, 278767, 1, 839963, 1, 1913, 1, 1, 283051, 121571, 4243, 284897, 122363, 1, 1, 1, 41141, 26237, 21163, 1, 290471, 16477, 32413, 13921, 6323, 2143, 3821, 10657, 26861, 296099, 1, 99119, 1, 127979, 6367, 299881, 2417, 3911, 1, 1, 14431, 1, 912971, 304961, 1, 1, 306877, 1, 1, 11437, 9377, 132893, 310727, 311371, 2729, 3767, 313307, 941861, 1, 1, 17881, 4111, 317197, 953543, 4363, 1, 1, 2887, 1, 2179, 29311, 323077, 12613, 324391, 6133, 139589, 36263, 1, 983063, 6701, 4507, 1, 1, 30091, 994997, 110777, 1, 2389,

6. Sequence of the polynom (only primes)

7, 3, 11, 47, 101, 41, 173, 67, 263, 37, 53, 137, 151, 71, 181, 197, 641, 83, 73, 307, 983, 349, 1181, 139, 127, 491, 233, 571, 599, 269, 229, 2153, 107, 2441, 881, 317, 1061, 157, 3413, 1217, 433, 149, 593, 1427, 1471, 4547, 223, 1607, 5393, 1847, 271, 5843, 1999, 293, 6311, 719, 971, 211, 2377, 2549, 7823, 8363, 811, 3037, 443, 9497, 359, 10091, 3499, 3637, 337, 1619, 1283, 1307, 11981, 12647, 613, 397, 13331, 14033, 691, 14753, 4999, 5081, 2213, 1777, 5501, 17021, 823, 5849, 379, 2039, 1693, 6299, 367, 6577, 953, 20297, 2287, 773, 3023, 7151, 659, 677, 7547, 22943, 2617, 1151, 8161, 761, 2341, 2897, 419, 26723, 9127, 9349, 9461, 373, 3229, 1433, 751, 1483, 10499, 601, 1193, 32933, 1009, 34031, 11467, 5021, 3947, 3989, 1801, 38603, 619, 1459, 39791, 13397, 1933, 3727, 42221, 1579, 4783, 887, 14627, 14767, 6389, 1381, 47297, 2273, 16057, 48611, 2357, 49943, 509, 4663, 17401, 7523, 17707, 1103, 673, 2663, 1709, 56873, 2731, 521, 58313, 941, 59771, 839, 1871, 20747, 8963, 7027, 787, 21587, 21757, 22271, 6121, 68897, 3331, 70481, 23671, 3407, 6553, 8069, 739, 10529, 24749, 617, 2081, 1231, 80363, 3881, 82073, 3061, 1321, 1783, 2557, 28711, 12473, 9767, 9833, 4271, 30097, 8263, 4357, 2791, 1117, 10369, 94547, 31721, 4561, 96401, 32341, 11059, 33599, 33811, 102071, 733, 103997, 11699, 9631, 35531, 5107, 107903, 36187, 743, 109883, 1373, 1453, 37517, 937, 115931, 13033, 929, 5651, 3617, 3659, 5783, 1823, 13649, 124247, 41651, 41887, 2579, 3851, 1039, 1669, 4813, 877, 6257, 44041, 132851, 6361, 44771, 12277, 6607, 139493, 46747, 46997, 20249, 1447, 2939, 146297, 49277, 821, 2371, 4079, 4597, 13933, 51349, 155621, 1931, 17467, 22571, 1291, 53197, 2083, 53731, 4909, 2293, 18269, 165233, 7907, 55621, 2297, 56167, 3673, 863, 58099, 58657, 58937, 19927, 16381, 60631, 182747, 1249, 61487, 3943, 2969, 1553, 62927, 190523, 63799, 64091, 21559, 7219, 1237, 5987, 198461, 66749, 2833, 1069, 22549, 203843, 1399, 3083, 6287, 9923, 23357, 23459, 30293, 70991, 30689, 71917, 72227, 3469, 220421, 74101, 223247, 74731, 2113, 2803, 228953, 6967, 1877, 33119, 1063, 1163, 33533, 26189, 26297, 2221, 1033, 79867, 21871, 11503, 80849, 243533, 4651, 82499, 11833, 83497, 7621, 5153, 28279, 258563, 29297, 1187, 12703, 267797, 89611, 1949, 10111, 3559, 1951, 1109, 5657, 1489, 31387, 13553, 286751, 2593, 13757, 289973, 4637, 293213, 8951, 99551, 42821, 33427, 4523, 2069, 101749, 3691, 1409, 1279, 4951, 313031, 104717, 15013, 7717, 1997, 106217, 4153, 3253, 108107, 6949, 15607, 2963, 330041, 333497, 10141, 15991, 12653, 49139, 10459, 1723, 4513, 1637, 351047, 5591, 3511, 16943, 32563, 119797, 361793, 365411, 122207, 122611, 52721, 1487, 11257, 1439, 1259, 376373, 17981, 2713, 3889, 6131, 35227, 129581, 2591, 3191, 131249, 44029, 14723, 5179, 133349, 12161, 402581, 19231, 1627, 406397, 45439, 410231, 1787, 414083, 19841, 417953, 46727, 8609, 3001, 141481, 60821, 12941, 142787, 6841, 1861, 145417, 6163, 146299, 20963, 10867, 148961, 2819, 64223, 150301, 9257, 50549, 457643, 1987, 22051, 465797, 51907, 14281, 43093, 1481, 158927, 17761, 53437, 68903, 161237, 1601, 3319, 14827, 2711, 54833, 494903, 165437, 499133, 166849, 503381, 5099, 18749, 1543, 169691, 170167, 73133, 1699, 516233, 57679, 174481, 4133, 175447, 3371, 58967, 8447, 178361, 179827, 180317, 77489, 6733, 2347, 26111, 16661, 551297, 2393, 3931, 555761, 20639, 560243, 4567, 26821, 8429, 17159, 189251, 7393, 63419, 63587, 81971, 4091, 2741, 193799, 9277, 1973, 587513, 4789, 28123, 592121, 197887, 4049, 2269, 22159, 1621, 201499, 86579, 203057, 610733, 9719, 68207, 615431, 2671, 206191, 56377, 207241, 15241, 3323, 210407, 5701, 2099, 7759, 215737, 2467, 19759, 6619, 10427, 31513, 12517, 221677, 95471, 8291, 224951, 225499, 3041, 32371, 227147, 3623, 18731, 231571, 33161, 698051, 77747, 77933, 2137, 234917, 21407, 101159, 237161, 713171, 26539, 9839, 34283, 5867, 2689, 34607, 27043, 11617, 10949, 2953, 245671, 105533, 246817, 247391, 9661, 82847, 7549, 749081, 35753, 4733, 754283, 759503, 2063, 10771, 23227, 36583, 769997, 257837, 110753, 86533, 111509, 71443, 37507, 791201, 266111, 5443, 72901, 267901, 7993, 89899, 116099, 271499, 2543, 823547, 91909, 829001, 39563, 277549, 20353, 278767, 839963, 1913, 283051, 121571, 4243, 284897, 122363, 41141, 26237, 21163, 290471, 16477, 32413, 13921, 6323, 2143, 3821, 10657, 26861, 296099, 99119, 127979, 6367, 299881, 2417, 3911, 14431, 912971, 304961, 306877, 11437, 9377, 132893, 310727, 311371, 2729, 3767, 313307, 941861, 17881, 4111, 317197, 953543, 4363, 2887, 2179, 29311, 323077, 12613, 324391, 6133, 139589, 36263, 983063, 6701, 4507, 30091, 994997, 110777, 2389,

7. Distribution of the primes

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

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)
1106510.6000000.5000000.1000000.0000000.0000000.000000
21006822460.6800000.2200000.46000011.3333334.40000046.000000
31.0007021125900.7020000.1120000.59000010.3235295.09090912.826087
410.0007.0047866.2180.7004000.0786000.6218009.9772087.01785710.538983
5100.00069.9205.99263.9280.6992000.0599200.6392809.9828677.62341010.281119
61.000.000698.23448.817649.4170.6982340.0488170.6494179.9861848.14702910.158569
710.000.0006.971.835413.1166.558.7190.6971830.0413120.6558729.9849558.46254310.099396
8100.000.00069.639.4573.581.43966.058.0180.6963950.0358140.6605809.9886848.66933110.071786
91.000.000.000695.882.80331.593.894664.288.9090.6958830.0315940.6642899.9926528.82156410.056144
1010.000.000.0006.954.833.499282.773.3786.672.060.1210.6954830.0282770.6672069.9942608.95025410.043913


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
243300.7500000.7500000.0000001.5000001.500000-nan
384400.5000000.5000000.0000001.3333331.333333-nan
4169720.5625000.4375000.1250002.2500001.750000inf
5322210120.6875000.3125000.3750002.4444441.4285716.000000
6644414300.6875000.2187500.4687502.0000001.4000002.500000
71288727600.6796880.2109380.4687501.9772731.9285712.000000
8256177421350.6914060.1640620.5273442.0344831.5555562.250000
9512359682910.7011720.1328120.5683592.0282491.6190482.155555
101.0247181156030.7011720.1123050.5888672.0000001.6911762.072165
112.0481.4332071.2260.6997070.1010740.5986331.9958221.8000002.033168
124.0962.8673562.5110.6999510.0869140.6130372.0006981.7198072.048124
138.1925.7316655.0660.6995850.0811770.6184081.9989541.8679772.017523
1416.38411.4831.19310.2900.7008670.0728150.6280522.0036641.7939852.031188
1532.76822.9392.20220.7370.7000430.0672000.6328431.9976491.8457672.015258
1665.53645.8664.13741.7290.6998600.0631260.6367341.9994771.8787472.012297
17131.07291.6607.64384.0170.6993100.0583110.6409991.9984301.8474742.013396
18262.144183.19614.292168.9040.6988370.0545200.6443181.9986471.8699462.010355
19524.288366.08326.961339.1220.6982480.0514240.6468241.9983131.8864402.007780
201.048.576732.15051.037681.1130.6982330.0486730.6495601.9999561.8929942.008460
212.097.1521.463.32296.5521.366.7700.6977660.0460400.6517271.9986641.8918042.006671
224.194.3042.925.185184.2782.740.9070.6974180.0439350.6534831.9990031.9085882.005390
238.388.6085.848.849350.6805.498.1690.6972370.0418040.6554331.9994801.9029942.005967
2416.777.21611.693.696670.30211.023.3940.6969990.0399530.6570451.9993161.9114352.004921
2533.554.43223.377.9381.282.90222.095.0360.6967170.0382330.6584831.9991921.9139162.004377
2667.108.86446.742.3972.459.92144.282.4760.6965160.0366560.6598601.9994231.9174662.004182
27134.217.72893.458.0894.725.97388.732.1160.6963170.0352110.6611061.9994291.9211892.003775
28268.435.456186.873.0599.088.876177.784.1830.6961560.0338590.6622981.9995391.9231762.003606
29536.870.912373.664.62717.515.225356.149.4020.6960050.0326250.6633801.9995641.9271062.003268
301.073.741.824747.183.03133.802.048713.380.9830.6958680.0314810.6643881.9996091.9298672.003039
312.147.483.6481.494.081.40165.307.2841.428.774.1170.6957360.0304110.6653251.9996191.9320512.002820
324.294.967.2962.987.645.780126.323.6192.861.322.1610.6956150.0294120.6662031.9996541.9342962.002641
338.589.934.5925.974.335.764244.599.1905.729.736.5740.6955040.0284750.6670291.9996801.9362902.002479
3417.179.869.18411.946.961.514474.099.55111.472.861.9630.6954050.0275960.6678081.9997141.9382712.002337
3534.359.738.36823.890.714.499919.848.22822.970.866.2710.6953110.0267710.6685401.9997311.9402012.002191
3668.719.476.73647.775.467.3891.786.239.20845.989.228.1810.6952250.0259930.6692311.9997501.9418852.002068


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
122100101
243110201
384120202
4167150223
53210171234
664141113254
7128271247767
8256421391111911
95126816518201515
101.024115111230312925
112.048207120450525451
124.096356135388868993
138.1926651662162161165177
1416.3841.19311.190294298296305
1532.7682.20212.199543564536559
1665.5364.13714.1341.0241.0581.0251.030
17131.0727.64317.6401.8971.9271.8901.929
18262.14414.292114.2893.5243.5733.5943.601
19524.28826.961126.9586.6606.7976.7896.715
201.048.57651.037151.03412.75312.68012.80912.795
212.097.15296.552196.54924.03024.01924.23024.273
224.194.304184.2781184.27545.99845.81646.37146.093
238.388.608350.6801350.67787.57987.49288.10587.504
2416.777.216670.3021670.299167.261167.321168.217167.503
2533.554.4321.282.90211.282.899320.184320.402321.360320.956
2667.108.8642.459.92112.459.918614.381614.542615.775615.223
27134.217.7284.725.97314.725.9701.180.9671.181.1841.181.4321.182.390
28268.435.4569.088.87619.088.8732.271.8922.271.3432.272.1532.273.488
29536.870.91217.515.225117.515.2224.376.9074.378.9594.379.4484.379.911
301.073.741.82433.802.048133.802.0458.449.2988.451.0358.449.9458.451.770
312.147.483.64865.307.284165.307.28116.327.50016.327.98616.326.94516.324.853
324.294.967.296126.323.6191126.323.61631.586.21331.581.28131.578.15431.577.971
338.589.934.592244.599.1901244.599.18761.155.34761.146.59661.149.59761.147.650
3417.179.869.184474.099.5511474.099.548118.524.496118.530.080118.515.689118.529.286
3534.359.738.368919.848.2281919.848.225229.967.325229.970.347229.950.064229.960.492
3668.719.476.7361.786.239.20811.786.239.205446.558.495446.559.577446.555.494446.565.642


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
120000000
240000000
380000000
4162111100
53212663342
66430121888104
712860283212171813
8256135647129383731
951229115014168767869
101.024603303300136163160144
112.0481.226620606292321311302
124.0962.5111.2761.235605627637642
138.1925.0662.5552.5111.2191.2611.2741.312
1416.38410.2905.1205.1702.5022.5642.5752.649
1532.76820.73710.31410.4235.1525.1735.2185.194
1665.53641.72920.85120.87810.41710.52510.37510.412
17131.07284.01741.98542.03220.96221.14020.95320.962
18262.144168.90484.40284.50242.00142.39042.25342.260
19524.288339.122169.532169.59084.49184.91484.75084.967
201.048.576681.113340.262340.851170.052170.343170.375170.343
212.097.1521.366.770683.671683.099341.327341.579342.105341.759
224.194.3042.740.9071.370.4521.370.455684.377685.138685.928685.464
238.388.6085.498.1692.749.9232.748.2461.373.5781.374.8211.374.8971.374.873
2416.777.21611.023.3945.513.3315.510.0632.754.3602.757.1122.755.7892.756.133
2533.554.43222.095.03611.050.18011.044.8565.521.9765.524.8575.523.6765.524.527
2667.108.86444.282.47622.143.35322.139.12311.069.75711.072.91711.069.01011.070.792
27134.217.72888.732.11644.369.14944.362.96722.180.03022.185.58122.182.75722.183.748
28268.435.456177.784.18388.897.46888.886.71544.448.34044.449.35344.438.13344.448.357
29536.870.912356.149.402178.084.151178.065.25189.037.65489.039.41689.031.70589.040.627
301.073.741.824713.380.983356.705.590356.675.393178.339.809178.354.206178.343.188178.343.780
312.147.483.6481.428.774.117714.408.340714.365.777357.204.920357.186.420357.192.840357.189.937
324.294.967.2962.861.322.1611.430.691.7661.430.630.395715.327.848715.323.663715.363.173715.307.477
338.589.934.5925.729.736.5742.864.844.8992.864.891.6751.432.443.2511.432.423.7851.432.448.0101.432.421.528
3417.179.869.18411.472.861.9635.736.345.4015.736.516.5622.868.176.2742.868.213.1092.868.254.2742.868.218.306
3534.359.738.36822.970.866.27111.485.027.43911.485.838.8325.742.707.9785.742.696.2615.742.672.9825.742.789.050
3668.719.476.73645.989.228.18122.993.690.53122.995.537.65011.497.273.35811.497.302.38711.497.216.17111.497.436.265


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 3, 1, 11, 1, 1, 47, 1, 1, 101, 41, 1, 173, 67, 1, 263, 1, 37, 53, 137,
Found in Database : 7, 3, 11, 47, 101, 41, 173, 67, 263, 37, 53, 137, 151, 71, 181, 197, 641, 83, 73, 307, 983, 349, 1181, 139, 127, 491, 233,
Found in Database : 3, 7, 11, 37, 41, 47, 53, 67, 71, 73, 83, 101, 107, 127, 137, 139, 149,