Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:28:35
Deutsch
20.Apr 2024

Polynom = x^2+1x-19

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) = 19 = 19
f(1) = 17 = 17
f(2) = 13 = 13
f(3) = 7 = 7
f(4) = 1 = 1
f(5) = 11 = 11
f(6) = 23 = 23
f(7) = 37 = 37
f(8) = 53 = 53
f(9) = 71 = 71
f(10) = 91 = 7*13
f(11) = 113 = 113
f(12) = 137 = 137
f(13) = 163 = 163
f(14) = 191 = 191
f(15) = 221 = 13*17
f(16) = 253 = 11*23
f(17) = 287 = 7*41
f(18) = 323 = 17*19
f(19) = 361 = 19*19
f(20) = 401 = 401
f(21) = 443 = 443
f(22) = 487 = 487
f(23) = 533 = 13*41
f(24) = 581 = 7*83
f(25) = 631 = 631
f(26) = 683 = 683
f(27) = 737 = 11*67
f(28) = 793 = 13*61
f(29) = 851 = 23*37
f(30) = 911 = 911
f(31) = 973 = 7*139
f(32) = 1037 = 17*61
f(33) = 1103 = 1103
f(34) = 1171 = 1171
f(35) = 1241 = 17*73
f(36) = 1313 = 13*101
f(37) = 1387 = 19*73
f(38) = 1463 = 7*11*19
f(39) = 1541 = 23*67
f(40) = 1621 = 1621
f(41) = 1703 = 13*131
f(42) = 1787 = 1787
f(43) = 1873 = 1873
f(44) = 1961 = 37*53
f(45) = 2051 = 7*293
f(46) = 2143 = 2143
f(47) = 2237 = 2237
f(48) = 2333 = 2333
f(49) = 2431 = 11*13*17
f(50) = 2531 = 2531
f(51) = 2633 = 2633
f(52) = 2737 = 7*17*23
f(53) = 2843 = 2843
f(54) = 2951 = 13*227
f(55) = 3061 = 3061
f(56) = 3173 = 19*167
f(57) = 3287 = 19*173
f(58) = 3403 = 41*83
f(59) = 3521 = 7*503
f(60) = 3641 = 11*331
f(61) = 3763 = 53*71
f(62) = 3887 = 13*13*23
f(63) = 4013 = 4013
f(64) = 4141 = 41*101
f(65) = 4271 = 4271
f(66) = 4403 = 7*17*37
f(67) = 4537 = 13*349
f(68) = 4673 = 4673
f(69) = 4811 = 17*283
f(70) = 4951 = 4951
f(71) = 5093 = 11*463
f(72) = 5237 = 5237
f(73) = 5383 = 7*769
f(74) = 5531 = 5531
f(75) = 5681 = 13*19*23
f(76) = 5833 = 19*307
f(77) = 5987 = 5987
f(78) = 6143 = 6143
f(79) = 6301 = 6301
f(80) = 6461 = 7*13*71
f(81) = 6623 = 37*179
f(82) = 6787 = 11*617
f(83) = 6953 = 17*409
f(84) = 7121 = 7121
f(85) = 7291 = 23*317
f(86) = 7463 = 17*439
f(87) = 7637 = 7*1091
f(88) = 7813 = 13*601
f(89) = 7991 = 61*131
f(90) = 8171 = 8171
f(91) = 8353 = 8353
f(92) = 8537 = 8537
f(93) = 8723 = 11*13*61
f(94) = 8911 = 7*19*67
f(95) = 9101 = 19*479
f(96) = 9293 = 9293
f(97) = 9487 = 53*179
f(98) = 9683 = 23*421
f(99) = 9881 = 41*241
f(100) = 10081 = 17*593

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+1x-19

f(0)=19
f(1)=17
f(2)=13
f(3)=7
f(4)=1
f(5)=11
f(6)=23
f(7)=37
f(8)=53
f(9)=71
f(10)=1
f(11)=113
f(12)=137
f(13)=163
f(14)=191
f(15)=1
f(16)=1
f(17)=41
f(18)=1
f(19)=1
f(20)=401
f(21)=443
f(22)=487
f(23)=1
f(24)=83
f(25)=631
f(26)=683
f(27)=67
f(28)=61
f(29)=1
f(30)=911
f(31)=139
f(32)=1
f(33)=1103
f(34)=1171
f(35)=73
f(36)=101
f(37)=1
f(38)=1
f(39)=1
f(40)=1621
f(41)=131
f(42)=1787
f(43)=1873
f(44)=1
f(45)=293
f(46)=2143
f(47)=2237
f(48)=2333
f(49)=1
f(50)=2531
f(51)=2633
f(52)=1
f(53)=2843
f(54)=227
f(55)=3061
f(56)=167
f(57)=173
f(58)=1
f(59)=503
f(60)=331
f(61)=1
f(62)=1
f(63)=4013
f(64)=1
f(65)=4271
f(66)=1
f(67)=349
f(68)=4673
f(69)=283
f(70)=4951
f(71)=463
f(72)=5237
f(73)=769
f(74)=5531
f(75)=1
f(76)=307
f(77)=5987
f(78)=6143
f(79)=6301
f(80)=1
f(81)=179
f(82)=617
f(83)=409
f(84)=7121
f(85)=317
f(86)=439
f(87)=1091
f(88)=601
f(89)=1
f(90)=8171
f(91)=8353
f(92)=8537
f(93)=1
f(94)=1
f(95)=479
f(96)=9293
f(97)=1
f(98)=421
f(99)=241

b) Substitution of the polynom
The polynom f(x)=x^2+1x-19 could be written as f(y)= y^2-19.25 with x=y-0.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+0.5
f'(x)>2x

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

19, 17, 13, 7, 1, 11, 23, 37, 53, 71, 1, 113, 137, 163, 191, 1, 1, 41, 1, 1, 401, 443, 487, 1, 83, 631, 683, 67, 61, 1, 911, 139, 1, 1103, 1171, 73, 101, 1, 1, 1, 1621, 131, 1787, 1873, 1, 293, 2143, 2237, 2333, 1, 2531, 2633, 1, 2843, 227, 3061, 167, 173, 1, 503, 331, 1, 1, 4013, 1, 4271, 1, 349, 4673, 283, 4951, 463, 5237, 769, 5531, 1, 307, 5987, 6143, 6301, 1, 179, 617, 409, 7121, 317, 439, 1091, 601, 1, 8171, 8353, 8537, 1, 1, 479, 9293, 1, 421, 241, 593, 1, 10487, 1, 991, 271, 1, 1, 1, 11971, 1, 12413, 12637, 677, 1, 1, 13553, 811, 379, 1097, 853, 641, 2141, 15233, 1, 15731, 1453, 1249, 16493, 2393, 17011, 751, 1, 937, 1063, 18341, 2659, 1, 19163, 19441, 1, 1, 20287, 2939, 907, 1627, 523, 21737, 2003, 1, 1, 1, 1223, 1811, 1, 653, 24473, 3541, 1931, 2311, 25741, 389, 26387, 26713, 3863, 1, 2131, 1, 1669, 28711, 1, 1, 1, 449, 30431, 30781, 1, 1, 4549, 2477, 32561, 1, 33287, 461, 2617, 1, 34763, 857, 2089, 1889, 1, 36653, 1, 37423, 37811, 38201, 38593, 2999, 39383, 5683, 1747, 40583, 2411, 1, 41801, 1, 6089, 43037, 2287, 2309, 3407, 733, 45137, 1, 1, 761, 46853, 47287, 3671, 2833, 1, 49043, 1, 1, 607, 4621, 51283, 1, 1, 1423, 1, 1, 54037, 54503, 7853, 55441, 1, 499, 563, 3373, 863, 8329, 58787, 59273, 4597, 60251, 1, 1, 8819, 4787, 62731, 1709, 63737, 3779, 887, 9323, 1, 5099, 6073, 2927, 1, 1, 757, 1693, 69941, 3709, 1, 71537, 72073, 1, 1, 73693, 1217, 1, 1061, 1, 1, 1, 77543, 78101, 7151, 1, 3469, 883, 4259, 4289, 599, 4861, 1, 83791, 709, 7723, 3719, 1213, 86711, 1303, 6761, 12641, 89083, 89681, 90281, 6991, 8317, 1, 1, 4057, 93923, 1, 95153, 1, 2351, 13859, 1, 8933, 7607, 4327, 100153, 100787, 14489, 102061, 102701, 6079, 1, 5507, 1, 1, 2011, 1, 4691, 1487, 109211, 109873, 15791, 1823, 111871, 787, 113213, 1867, 1, 1, 1, 1, 6173, 117973, 118661, 1, 1559, 120737, 9341, 122131, 1087, 1, 1, 1373, 125651, 7433, 1531, 11617, 7559, 129221, 977, 1, 1, 132113, 1871, 133571, 10331, 1, 12343, 136511, 137251, 137993, 8161, 139483, 1, 8293, 1, 3851, 143243, 1, 1, 20789, 1, 1, 6427, 1069, 3643, 11549, 21559, 8923, 1, 1, 1, 154823, 2551, 22343, 823, 6869, 1, 1, 1, 14653, 1, 941, 163601, 12647, 9719, 7219, 166853, 1409, 168491, 169313, 15467, 13151, 4643, 3257, 1, 9173, 1, 175961, 7687, 1, 178487, 1, 180181, 181031, 1, 4457, 183593, 2753, 1151, 14321, 3529, 4583, 1, 2671, 1, 1439, 192263, 1, 1, 2909, 195787, 1, 1, 18041, 199343, 200237, 1447, 202031, 202931, 1, 15749, 8941, 206551, 1, 997, 947, 30029, 3461, 12473, 1231, 213887, 1901, 1, 2381, 9461, 19867, 1, 220411, 17027, 222293, 31891, 1, 1, 1, 9871, 13411, 1601, 32843, 230861, 231823, 1777, 17981, 234721, 4447, 33809, 3347, 6449, 1, 240571, 1093, 1, 1831, 1, 245501, 1, 1, 248483, 10847, 3253, 251483, 1549, 253493, 19577, 255511, 3613, 36791, 1, 1, 7043, 1399, 1, 13877, 37813, 6481, 4373, 20599, 268823, 1, 4441, 1, 1, 274033, 1979, 1, 277183, 278237, 2347, 280351, 21647, 14867, 14923, 25873, 1, 1, 287813, 1, 5471, 291041, 1, 2903, 2473, 22721, 26951, 1, 4091, 8101, 1, 43133, 1, 16007, 305237, 2711, 307451, 28051, 1, 1861, 1, 18413, 2293, 24251, 1, 1, 318641, 2441, 29173, 322037, 14051, 1, 2447, 326593, 327737, 328883, 1, 4943, 1, 1, 334643, 19753, 336961, 1, 26099, 340453, 1319, 342791, 343963, 1, 1657, 18289, 348671, 1, 351037, 20719, 353411, 27277, 20929, 8707, 51169, 1, 27737, 1, 362987, 364193, 15887, 1, 367823, 19423, 1499, 371471, 1993, 2239, 53591, 1, 16417, 378821, 1, 381287, 2137, 1, 385001, 1, 1, 1613, 389981, 391231, 1, 1, 394993, 5581, 1, 1361, 1, 57329, 1, 1427, 10949, 17669, 1, 1, 58603, 411503, 1, 37643, 1, 21929, 21997, 1, 5923, 421831, 18397, 424433, 32749, 427043, 5563, 429661, 1, 432287, 11719, 434921, 1459, 3677, 438887, 3167, 1367, 1, 3931, 445537, 63839, 1, 4451, 450893, 3301, 1, 454931, 65183, 41603, 458987, 2083, 11261, 8737, 1607, 66541, 1, 24659, 469891, 36251, 42967, 5711, 1, 1553, 36781, 6569, 1, 6607, 1, 1, 1, 2609, 1, 6911, 492083, 1, 1, 38177, 497711, 21701, 1847, 501953, 1, 1949, 506213, 2297, 509063, 12451, 30113, 513353, 5657, 516223, 1, 1, 27397, 1, 523433, 1, 40487, 3797, 529237, 530693, 1, 41047, 6949, 1, 10151, 1, 2383, 1, 543887, 1, 546841, 28859, 1523, 2179, 1, 4231, 79393, 32779, 15101, 560233, 1, 10627, 43441, 3517, 51613, 569251, 13921, 44021, 573787, 575303, 4337, 1, 14143, 1, 2017, 1, 1, 4937, 8069, 590573, 1, 593651, 1, 596737, 85469, 599831, 2377, 8999, 46499, 1, 1, 5119, 1, 3623, 36109, 16633, 616991, 1, 88591, 27031, 623291, 1, 1, 628037, 629623, 90173, 48677, 15473, 1, 1, 639181, 37693, 1, 1, 1, 647201, 7817, 17579, 3769, 1, 4783, 656891, 28631, 660137, 3697, 39023, 95003, 2699, 2069, 669923, 61051, 673201, 1, 1, 678133, 679781, 11171, 683083, 5227, 4211, 7561, 62701, 1, 693037, 2371, 1, 36739, 5261, 17107, 9631, 13297, 9677, 64373, 1, 1, 1, 714851, 716543, 55249, 42349, 721631, 103333, 42649, 66067, 3209, 1, 2963, 13841, 4567, 19919, 738721, 56957, 10453, 1, 67783, 1, 1, 750803, 32719, 3413, 756011, 757751, 108499, 7537, 3089, 3659, 5851, 2027, 769987, 2689, 773501, 1, 59771, 1, 780553, 19081, 1, 1, 1, 9511, 791191, 1, 4759, 1, 42017, 61547, 21673, 73063, 805487, 12049, 1, 810881, 1987, 47911, 35491, 818101, 819911, 117389, 1, 825353, 15607, 12373, 1, 3371, 1, 836291, 7417, 49409, 22751, 1, 1, 9311, 849143, 4919, 852833, 2917, 1, 37321, 122891, 1, 78541, 45569, 45667, 1, 3943, 124753, 875141, 2243, 10589, 67751, 2269, 1, 1, 888287, 14593, 1, 1, 1, 14717, 128519, 2063, 2797, 1, 907237, 53479, 24623, 130423, 914873, 916787, 7013, 3079, 22501, 924463, 1, 928313, 1, 13913, 22783, 55061, 49367, 1, 3259, 1, 3163, 1, 949631, 951581, 1, 1, 3533, 2749, 5557, 963323, 41969, 138179, 1, 74707, 13331, 3019, 51427, 1, 10781, 1, 5503, 987023, 989011, 3917, 2039, 1, 1, 1,

6. Sequence of the polynom (only primes)

19, 17, 13, 7, 11, 23, 37, 53, 71, 113, 137, 163, 191, 41, 401, 443, 487, 83, 631, 683, 67, 61, 911, 139, 1103, 1171, 73, 101, 1621, 131, 1787, 1873, 293, 2143, 2237, 2333, 2531, 2633, 2843, 227, 3061, 167, 173, 503, 331, 4013, 4271, 349, 4673, 283, 4951, 463, 5237, 769, 5531, 307, 5987, 6143, 6301, 179, 617, 409, 7121, 317, 439, 1091, 601, 8171, 8353, 8537, 479, 9293, 421, 241, 593, 10487, 991, 271, 11971, 12413, 12637, 677, 13553, 811, 379, 1097, 853, 641, 2141, 15233, 15731, 1453, 1249, 16493, 2393, 17011, 751, 937, 1063, 18341, 2659, 19163, 19441, 20287, 2939, 907, 1627, 523, 21737, 2003, 1223, 1811, 653, 24473, 3541, 1931, 2311, 25741, 389, 26387, 26713, 3863, 2131, 1669, 28711, 449, 30431, 30781, 4549, 2477, 32561, 33287, 461, 2617, 34763, 857, 2089, 1889, 36653, 37423, 37811, 38201, 38593, 2999, 39383, 5683, 1747, 40583, 2411, 41801, 6089, 43037, 2287, 2309, 3407, 733, 45137, 761, 46853, 47287, 3671, 2833, 49043, 607, 4621, 51283, 1423, 54037, 54503, 7853, 55441, 499, 563, 3373, 863, 8329, 58787, 59273, 4597, 60251, 8819, 4787, 62731, 1709, 63737, 3779, 887, 9323, 5099, 6073, 2927, 757, 1693, 69941, 3709, 71537, 72073, 73693, 1217, 1061, 77543, 78101, 7151, 3469, 883, 4259, 4289, 599, 4861, 83791, 709, 7723, 3719, 1213, 86711, 1303, 6761, 12641, 89083, 89681, 90281, 6991, 8317, 4057, 93923, 95153, 2351, 13859, 8933, 7607, 4327, 100153, 100787, 14489, 102061, 102701, 6079, 5507, 2011, 4691, 1487, 109211, 109873, 15791, 1823, 111871, 787, 113213, 1867, 6173, 117973, 118661, 1559, 120737, 9341, 122131, 1087, 1373, 125651, 7433, 1531, 11617, 7559, 129221, 977, 132113, 1871, 133571, 10331, 12343, 136511, 137251, 137993, 8161, 139483, 8293, 3851, 143243, 20789, 6427, 1069, 3643, 11549, 21559, 8923, 154823, 2551, 22343, 823, 6869, 14653, 941, 163601, 12647, 9719, 7219, 166853, 1409, 168491, 169313, 15467, 13151, 4643, 3257, 9173, 175961, 7687, 178487, 180181, 181031, 4457, 183593, 2753, 1151, 14321, 3529, 4583, 2671, 1439, 192263, 2909, 195787, 18041, 199343, 200237, 1447, 202031, 202931, 15749, 8941, 206551, 997, 947, 30029, 3461, 12473, 1231, 213887, 1901, 2381, 9461, 19867, 220411, 17027, 222293, 31891, 9871, 13411, 1601, 32843, 230861, 231823, 1777, 17981, 234721, 4447, 33809, 3347, 6449, 240571, 1093, 1831, 245501, 248483, 10847, 3253, 251483, 1549, 253493, 19577, 255511, 3613, 36791, 7043, 1399, 13877, 37813, 6481, 4373, 20599, 268823, 4441, 274033, 1979, 277183, 278237, 2347, 280351, 21647, 14867, 14923, 25873, 287813, 5471, 291041, 2903, 2473, 22721, 26951, 4091, 8101, 43133, 16007, 305237, 2711, 307451, 28051, 1861, 18413, 2293, 24251, 318641, 2441, 29173, 322037, 14051, 2447, 326593, 327737, 328883, 4943, 334643, 19753, 336961, 26099, 340453, 1319, 342791, 343963, 1657, 18289, 348671, 351037, 20719, 353411, 27277, 20929, 8707, 51169, 27737, 362987, 364193, 15887, 367823, 19423, 1499, 371471, 1993, 2239, 53591, 16417, 378821, 381287, 2137, 385001, 1613, 389981, 391231, 394993, 5581, 1361, 57329, 1427, 10949, 17669, 58603, 411503, 37643, 21929, 21997, 5923, 421831, 18397, 424433, 32749, 427043, 5563, 429661, 432287, 11719, 434921, 1459, 3677, 438887, 3167, 1367, 3931, 445537, 63839, 4451, 450893, 3301, 454931, 65183, 41603, 458987, 2083, 11261, 8737, 1607, 66541, 24659, 469891, 36251, 42967, 5711, 1553, 36781, 6569, 6607, 2609, 6911, 492083, 38177, 497711, 21701, 1847, 501953, 1949, 506213, 2297, 509063, 12451, 30113, 513353, 5657, 516223, 27397, 523433, 40487, 3797, 529237, 530693, 41047, 6949, 10151, 2383, 543887, 546841, 28859, 1523, 2179, 4231, 79393, 32779, 15101, 560233, 10627, 43441, 3517, 51613, 569251, 13921, 44021, 573787, 575303, 4337, 14143, 2017, 4937, 8069, 590573, 593651, 596737, 85469, 599831, 2377, 8999, 46499, 5119, 3623, 36109, 16633, 616991, 88591, 27031, 623291, 628037, 629623, 90173, 48677, 15473, 639181, 37693, 647201, 7817, 17579, 3769, 4783, 656891, 28631, 660137, 3697, 39023, 95003, 2699, 2069, 669923, 61051, 673201, 678133, 679781, 11171, 683083, 5227, 4211, 7561, 62701, 693037, 2371, 36739, 5261, 17107, 9631, 13297, 9677, 64373, 714851, 716543, 55249, 42349, 721631, 103333, 42649, 66067, 3209, 2963, 13841, 4567, 19919, 738721, 56957, 10453, 67783, 750803, 32719, 3413, 756011, 757751, 108499, 7537, 3089, 3659, 5851, 2027, 769987, 2689, 773501, 59771, 780553, 19081, 9511, 791191, 4759, 42017, 61547, 21673, 73063, 805487, 12049, 810881, 1987, 47911, 35491, 818101, 819911, 117389, 825353, 15607, 12373, 3371, 836291, 7417, 49409, 22751, 9311, 849143, 4919, 852833, 2917, 37321, 122891, 78541, 45569, 45667, 3943, 124753, 875141, 2243, 10589, 67751, 2269, 888287, 14593, 14717, 128519, 2063, 2797, 907237, 53479, 24623, 130423, 914873, 916787, 7013, 3079, 22501, 924463, 928313, 13913, 22783, 55061, 49367, 3259, 3163, 949631, 951581, 3533, 2749, 5557, 963323, 41969, 138179, 74707, 13331, 3019, 51427, 10781, 5503, 987023, 989011, 3917, 2039,

7. Distribution of the primes

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

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)
1109900.9000000.9000000.9000000.0000000.0000000.000000
21007545300.7500000.4500000.7500008.3333335.000000inf
31.0007342654690.7340000.2650000.7340009.7866675.88888915.633333
410.0007.2381.9385.3000.7238000.1938000.7238009.8610357.31320811.300640
5100.00071.82514.87656.9490.7182500.1487600.7182509.9233227.67595510.745094
61.000.000714.410121.610592.8000.7144100.1216100.7144109.9465378.17491210.409313
710.000.0007.109.9831.026.3786.083.6050.7109980.1026380.7109989.9522458.43991510.262491
8100.000.00070.851.6688.908.83861.942.8300.7085170.0890880.7085179.9650968.67988010.181929
91.000.000.000706.661.30278.609.966628.051.3360.7066610.0786100.7066619.9738148.82381810.139209
1010.000.000.0007.051.922.917703.536.3026.348.386.6150.7051920.0703540.7051929.9792128.94970910.108070


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)
123301.5000001.5000000.0000000.0000000.0000000.000000
244401.0000001.0000000.0000001.3333331.333333-nan
388801.0000001.0000000.0000002.0000002.000000-nan
416131300.8125000.8125000.0000001.6250001.625000-nan
532241950.7500000.5937500.1562501.8461541.461538inf
6644632140.7187500.5000000.2187501.9166671.6842112.800000
71289453410.7343750.4140620.3203122.0434781.6562502.928571
825618891970.7343750.3554690.3789062.0000001.7169812.365854
95123751542210.7324220.3007810.4316411.9946811.6923082.278351
101.0247502734770.7324220.2666020.4658202.0000001.7727272.158371
112.0481.4975009970.7309570.2441410.4868161.9960001.8315022.090147
124.0962.9778952.0820.7268070.2185060.5083011.9886441.7900002.088265
138.1925.9531.6334.3200.7266850.1993410.5273441.9996641.8245812.074928
1416.38411.8662.9398.9270.7242430.1793820.5448611.9932811.7997552.066435
1532.76823.6615.46418.1970.7220760.1667480.5553281.9940171.8591362.038423
1665.53647.16710.18436.9830.7197110.1553960.5643161.9934491.8638362.032368
17131.07294.13518.96175.1740.7181930.1446610.5735321.9957811.8618422.032664
18262.144187.90735.691152.2160.7168080.1361500.5806581.9961441.8823372.024849
19524.288375.17267.177307.9950.7155840.1281300.5874541.9965831.8821832.023407
201.048.576749.012126.903622.1090.7143140.1210240.5932891.9964501.8890842.019867
212.097.1521.495.799240.3371.255.4620.7132530.1146020.5986511.9970291.8938642.018074
224.194.3042.987.074457.4792.529.5950.7121740.1090710.6031021.9969761.9034902.014872
238.388.6085.965.866871.8305.094.0360.7111870.1039300.6072561.9972271.9057272.013775
2416.777.21611.917.8731.665.24710.252.6260.7103610.0992560.6111041.9976771.9100592.012672
2533.554.43223.811.1263.188.25520.622.8710.7096270.0950170.6146091.9979341.9145842.011472
2667.108.86447.573.2266.118.95041.454.2760.7088960.0911790.6177171.9979411.9192162.010112
27134.217.72895.059.38311.755.92883.303.4550.7082480.0875880.6206591.9981701.9212332.009526
28268.435.456189.964.97422.616.382167.348.5920.7076750.0842530.6234221.9983821.9238282.008903
29536.870.912379.637.39343.580.543336.056.8500.7071300.0811750.6259551.9984601.9269462.008125
301.073.741.824758.716.71784.103.392674.613.3250.7066100.0783270.6282831.9985301.9298382.007438
312.147.483.6481.516.414.553162.493.4971.353.921.0560.7061360.0756670.6304691.9986571.9320682.006959
324.294.967.2963.030.923.392314.285.8792.716.637.5130.7056920.0731750.6325161.9987431.9341442.006496
338.589.934.5926.058.303.114608.553.9695.449.749.1450.7052790.0708450.6344341.9988311.9363072.006064
3417.179.869.18412.110.001.0871.179.526.69710.930.474.3900.7048950.0686570.6362371.9989101.9382452.005684


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
123211110
244311111
388441232
41613583334
532197124537
6643212206989
712853173612141413
825691316024242122
95121545110339413737
101.0242738918468706372
112.048500163337123130122125
124.096895309586222235218220
138.1921.6335621.071398409413413
1416.3842.9399831.956708730778723
1532.7685.4641.8523.6121.3421.3791.4241.319
1665.53610.1843.4196.7652.4912.5872.6212.485
17131.07218.9616.34912.6124.6604.7684.7684.765
18262.14435.69111.94023.7518.7728.9559.0298.935
19524.28867.17722.45044.72716.68416.84216.85216.799
201.048.576126.90342.37584.52831.61631.69531.77131.821
212.097.152240.33780.216160.12159.98360.13459.99860.222
224.194.304457.479152.645304.834114.420114.440114.158114.461
238.388.608871.830290.545581.285218.176218.007217.584218.063
2416.777.2161.665.247554.9201.110.327416.274415.973416.405416.595
2533.554.4323.188.2551.062.2412.126.014797.170796.616797.169797.300
2667.108.8646.118.9502.038.2854.080.6651.530.5291.529.0601.529.1601.530.201
27134.217.72811.755.9283.917.2377.838.6912.939.1012.937.8092.938.7602.940.258
28268.435.45622.616.3827.538.15515.078.2275.652.4495.653.4955.654.0035.656.435
29536.870.91243.580.54314.523.89829.056.64510.893.54310.892.29310.896.77810.897.929
301.073.741.82484.103.39228.028.83356.074.55921.025.21021.024.08921.026.70521.027.388
312.147.483.648162.493.49754.154.860108.338.63740.621.40040.622.17240.626.37940.623.546
324.294.967.296314.285.879104.750.353209.535.52678.561.71078.575.91578.576.46478.571.790
338.589.934.592608.553.969202.847.653405.706.316152.132.374152.139.811152.148.786152.132.998
3417.179.869.1841.179.526.697393.177.331786.349.366294.876.945294.871.407294.889.610294.888.735


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
4160000000
5325321310
66414592642
71284122191112117
825697484922302520
951222110112046576058
101.024477229248109121124123
112.048997490507241252255249
124.0962.0821.0141.068500538534510
138.1924.3202.1372.1831.0571.1031.0961.064
1416.3848.9274.4524.4752.1772.2302.2912.229
1532.76818.1979.0819.1164.4794.5514.5994.568
1665.53636.98318.45218.5319.1579.2389.2899.299
17131.07275.17437.51237.66218.70918.78118.87318.811
18262.144152.21676.09176.12537.98238.19437.96038.080
19524.288307.995153.814154.18176.89076.99677.13776.972
201.048.576622.109310.252311.857155.210155.674155.679155.546
212.097.1521.255.462626.835628.627313.250313.740314.164314.308
224.194.3042.529.5951.262.6601.266.935631.932632.321632.342633.000
238.388.6085.094.0362.542.7332.551.3031.272.0091.273.9361.273.8001.274.291
2416.777.21610.252.6265.118.8365.133.7902.562.2022.563.6552.562.9662.563.803
2533.554.43220.622.87110.294.23010.328.6415.155.5465.156.2235.155.2515.155.851
2667.108.86441.454.27620.690.46520.763.81110.364.18410.366.07710.359.54910.364.466
27134.217.72883.303.45541.588.83941.714.61620.824.41420.826.63920.827.43920.824.963
28268.435.456167.348.59283.557.51383.791.07941.835.30541.838.48941.839.84541.834.953
29536.870.912336.056.850167.801.716168.255.13484.006.77684.017.51284.019.83084.012.732
301.073.741.824674.613.325336.852.295337.761.030168.660.082168.652.557168.656.033168.644.653
312.147.483.6481.353.921.056676.027.137677.893.919338.469.920338.480.039338.494.021338.477.076
324.294.967.2962.716.637.5131.356.512.0211.360.125.492679.156.984679.154.667679.178.388679.147.474
338.589.934.5925.449.749.1452.721.331.0382.728.418.1071.362.439.2981.362.456.7981.362.427.5111.362.425.538
3417.179.869.18410.930.474.3905.458.285.6355.472.188.7552.732.643.6032.732.650.0102.732.599.3492.732.581.428


8. Check for existing Integer Sequences by OEIS

Found in Database : 19, 17, 13, 7, 1, 11, 23, 37, 53, 71, 1, 113, 137, 163, 191, 1, 1, 41, 1, 1,
Found in Database : 19, 17, 13, 7, 11, 23, 37, 53, 71, 113, 137, 163, 191, 41, 401, 443, 487, 83, 631, 683, 67, 61, 911, 139, 1103, 1171, 73, 101,
Found in Database : 7, 11, 13, 17, 19, 23, 37, 41, 53, 61, 67, 71, 73, 83, 101, 113, 131, 137, 139,