Inhaltsverzeichnis

Development of
Algorithmic Constructions

10:55:14
Deutsch
20.Apr 2024

Polynom = x^2+22x-37

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) = 37 = 37
f(1) = 7 = 7
f(2) = 11 = 11
f(3) = 19 = 19
f(4) = 67 = 67
f(5) = 49 = 7*7
f(6) = 131 = 131
f(7) = 83 = 83
f(8) = 203 = 7*29
f(9) = 121 = 11*11
f(10) = 283 = 283
f(11) = 163 = 163
f(12) = 371 = 7*53
f(13) = 209 = 11*19
f(14) = 467 = 467
f(15) = 259 = 7*37
f(16) = 571 = 571
f(17) = 313 = 313
f(18) = 683 = 683
f(19) = 371 = 7*53
f(20) = 803 = 11*73
f(21) = 433 = 433
f(22) = 931 = 7*7*19
f(23) = 499 = 499
f(24) = 1067 = 11*97
f(25) = 569 = 569
f(26) = 1211 = 7*173
f(27) = 643 = 643
f(28) = 1363 = 29*47
f(29) = 721 = 7*103
f(30) = 1523 = 1523
f(31) = 803 = 11*73
f(32) = 1691 = 19*89
f(33) = 889 = 7*127
f(34) = 1867 = 1867
f(35) = 979 = 11*89
f(36) = 2051 = 7*293
f(37) = 1073 = 29*37
f(38) = 2243 = 2243
f(39) = 1171 = 1171
f(40) = 2443 = 7*349
f(41) = 1273 = 19*67
f(42) = 2651 = 11*241
f(43) = 1379 = 7*197
f(44) = 2867 = 47*61
f(45) = 1489 = 1489
f(46) = 3091 = 11*281
f(47) = 1603 = 7*229
f(48) = 3323 = 3323
f(49) = 1721 = 1721
f(50) = 3563 = 7*509
f(51) = 1843 = 19*97
f(52) = 3811 = 37*103
f(53) = 1969 = 11*179
f(54) = 4067 = 7*7*83
f(55) = 2099 = 2099
f(56) = 4331 = 61*71
f(57) = 2233 = 7*11*29
f(58) = 4603 = 4603
f(59) = 2371 = 2371
f(60) = 4883 = 19*257
f(61) = 2513 = 7*359
f(62) = 5171 = 5171
f(63) = 2659 = 2659
f(64) = 5467 = 7*11*71
f(65) = 2809 = 53*53
f(66) = 5771 = 29*199
f(67) = 2963 = 2963
f(68) = 6083 = 7*11*79
f(69) = 3121 = 3121
f(70) = 6403 = 19*337
f(71) = 3283 = 7*7*67
f(72) = 6731 = 53*127
f(73) = 3449 = 3449
f(74) = 7067 = 37*191
f(75) = 3619 = 7*11*47
f(76) = 7411 = 7411
f(77) = 3793 = 3793
f(78) = 7763 = 7*1109
f(79) = 3971 = 11*19*19
f(80) = 8123 = 8123
f(81) = 4153 = 4153
f(82) = 8491 = 7*1213
f(83) = 4339 = 4339
f(84) = 8867 = 8867
f(85) = 4529 = 7*647
f(86) = 9251 = 11*29*29
f(87) = 4723 = 4723
f(88) = 9643 = 9643
f(89) = 4921 = 7*19*37
f(90) = 10043 = 11*11*83
f(91) = 5123 = 47*109
f(92) = 10451 = 7*1493
f(93) = 5329 = 73*73
f(94) = 10867 = 10867
f(95) = 5539 = 29*191
f(96) = 11291 = 7*1613
f(97) = 5753 = 11*523
f(98) = 11723 = 19*617
f(99) = 5971 = 7*853
f(100) = 12163 = 12163

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+22x-37

f(0)=37
f(1)=7
f(2)=11
f(3)=19
f(4)=67
f(5)=1
f(6)=131
f(7)=83
f(8)=29
f(9)=1
f(10)=283
f(11)=163
f(12)=53
f(13)=1
f(14)=467
f(15)=1
f(16)=571
f(17)=313
f(18)=683
f(19)=1
f(20)=73
f(21)=433
f(22)=1
f(23)=499
f(24)=97
f(25)=569
f(26)=173
f(27)=643
f(28)=47
f(29)=103
f(30)=1523
f(31)=1
f(32)=89
f(33)=127
f(34)=1867
f(35)=1
f(36)=293
f(37)=1
f(38)=2243
f(39)=1171
f(40)=349
f(41)=1
f(42)=241
f(43)=197
f(44)=61
f(45)=1489
f(46)=281
f(47)=229
f(48)=3323
f(49)=1721
f(50)=509
f(51)=1
f(52)=1
f(53)=179
f(54)=1
f(55)=2099
f(56)=71
f(57)=1
f(58)=4603
f(59)=2371
f(60)=257
f(61)=359
f(62)=5171
f(63)=2659
f(64)=1
f(65)=1
f(66)=199
f(67)=2963
f(68)=79
f(69)=3121
f(70)=337
f(71)=1
f(72)=1
f(73)=3449
f(74)=191
f(75)=1
f(76)=7411
f(77)=3793
f(78)=1109
f(79)=1
f(80)=8123
f(81)=4153
f(82)=1213
f(83)=4339
f(84)=8867
f(85)=647
f(86)=1
f(87)=4723
f(88)=9643
f(89)=1
f(90)=1
f(91)=109
f(92)=1493
f(93)=1
f(94)=10867
f(95)=1
f(96)=1613
f(97)=523
f(98)=617
f(99)=853

b) Substitution of the polynom
The polynom f(x)=x^2+22x-37 could be written as f(y)= y^2-158 with x=y-11

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

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

37, 7, 11, 19, 67, 1, 131, 83, 29, 1, 283, 163, 53, 1, 467, 1, 571, 313, 683, 1, 73, 433, 1, 499, 97, 569, 173, 643, 47, 103, 1523, 1, 89, 127, 1867, 1, 293, 1, 2243, 1171, 349, 1, 241, 197, 61, 1489, 281, 229, 3323, 1721, 509, 1, 1, 179, 1, 2099, 71, 1, 4603, 2371, 257, 359, 5171, 2659, 1, 1, 199, 2963, 79, 3121, 337, 1, 1, 3449, 191, 1, 7411, 3793, 1109, 1, 8123, 4153, 1213, 4339, 8867, 647, 1, 4723, 9643, 1, 1, 109, 1493, 1, 10867, 1, 1613, 523, 617, 853, 12163, 563, 12611, 1, 1, 1, 1933, 6883, 1, 7121, 2069, 1, 1361, 1087, 15467, 271, 15971, 1, 311, 761, 347, 1, 373, 809, 1, 1, 503, 1, 19163, 9721, 1, 1429, 1, 10289, 1, 149, 1129, 1, 1, 11171, 22643, 1, 23251, 11779, 823, 157, 1289, 1, 1, 12721, 25763, 13043, 1, 461, 27067, 1, 2521, 14033, 28403, 2053, 1, 14713, 4253, 1, 30467, 811, 1, 1433, 31883, 1, 32603, 1, 33331, 1, 1, 1, 4973, 1, 1, 17971, 5189, 18353, 1279, 2677, 1993, 1, 38651, 2789, 39443, 1811, 5749, 20323, 41051, 1091, 5981, 21139, 3881, 3079, 613, 1, 1, 457, 1559, 1201, 6581, 1, 661, 2153, 6829, 24121, 547, 1, 2609, 1, 463, 3637, 1093, 25913, 1, 26371, 641, 26833, 1, 27299, 1039, 3967, 709, 1, 56963, 1, 57923, 1, 1, 2699, 1, 1, 8693, 829, 61843, 1, 1, 1667, 953, 4597, 5897, 1, 9413, 33203, 66923, 33721, 1, 1, 69011, 4967, 70067, 3209, 857, 5119, 701, 983, 1, 36913, 6761, 797, 10781, 1, 6961, 787, 593, 1, 78803, 5669, 1193, 3659, 1, 40819, 1, 1, 11909, 1, 84523, 6079, 85691, 1, 1, 6247, 1, 1, 1, 1549, 607, 45523, 13093, 1, 92867, 1, 2543, 47353, 1, 1, 1583, 48593, 1, 1, 631, 1, 1303, 2657, 101603, 1, 1, 1399, 1427, 7487, 105467, 1, 2179, 1, 3727, 54371, 15629, 5003, 110731, 1, 112067, 56369, 1, 1, 10433, 1, 1, 58403, 971, 1597, 16981, 59779, 6329, 1, 1181, 1, 1733, 8839, 1283, 5689, 17981, 3331, 127291, 2207, 1, 1061, 11833, 9349, 131611, 66169, 12097, 1, 4639, 1439, 19429, 68371, 137483, 1, 19853, 69859, 7393, 1, 141971, 71363, 143483, 10303, 3919, 72883, 1, 1567, 7793, 74419, 1, 75193, 151163, 10853, 152723, 76753, 154291, 1, 1973, 1, 1, 7193, 1787, 1, 1, 907, 162251, 1, 14897, 82339, 2267, 1697, 15193, 1, 24109, 84793, 8969, 85619, 1, 1, 2593, 1, 175403, 8011, 2903, 1, 1, 89809, 1, 90659, 16561, 91513, 1, 1301, 1, 1, 1, 94099, 189067, 13567, 190811, 8713, 27509, 1, 194323, 1, 1, 1, 6823, 14197, 3767, 1, 18313, 1, 1, 991, 2663, 1, 5591, 103889, 4259, 104803, 210523, 1373, 11177, 2269, 214211, 1, 1, 108499, 1, 109433, 3011, 1, 2879, 1, 1249, 1, 1, 113209, 227371, 1, 229283, 1, 33029, 1, 8039, 1747, 33581, 10729, 237011, 1, 12577, 119971, 2707, 1, 1, 1999, 34981, 122929, 22441, 123923, 1871, 2357, 3533, 17989, 8719, 1049, 1, 1, 1, 1, 1, 129971, 1601, 4517, 37573, 132019, 24097, 1, 267131, 7057, 24473, 1, 4049, 136163, 1, 137209, 5861, 12569, 2087, 139313, 7559, 1823, 281803, 4877, 1, 20357, 1187, 143569, 1, 1327, 1, 145721, 1, 2011, 4831, 1, 1, 7841, 3083, 1949, 301243, 151171, 1, 1, 1, 153379, 1, 1, 310091, 22229, 28393, 2957, 10847, 22549, 1, 2239, 2399, 4327, 321331, 161233, 46229, 1, 325883, 1, 328171, 14969, 17393, 23687, 3739, 1621, 47869, 1889, 1, 169283, 48533, 8971, 1, 24517, 1217, 2579, 346763, 1, 2749, 15923, 1, 9281, 353867, 16139, 50893, 1, 1, 25703, 2017, 181123, 1, 1, 1, 3463, 4783, 184753, 370723, 185971, 53309, 187193, 1, 2447, 5179, 3109, 3923, 1, 1, 192121, 7867, 10177, 387971, 194609, 1, 2683, 2503, 1, 1, 1, 1, 1, 1367, 200899, 1, 18379, 405611, 1553, 58309, 1, 21617, 29429, 5821, 2137, 2111, 1, 1, 7237, 60149, 4493, 2027, 1, 8699, 1, 1, 30727, 14879, 1, 8191, 1637, 4007, 19913, 62773, 220369, 7247, 1, 63533, 1, 1, 1, 450083, 1723, 41161, 1, 1, 228409, 1, 229763, 1, 21011, 1, 2801, 466331, 3037, 7001, 8111, 1741, 1, 24977, 237971, 6199, 6469, 480091, 240739, 6271, 242129, 10333, 1831, 6691, 1, 1, 1, 494051, 247729, 70981, 1, 499691, 13187, 71789, 251971, 6397, 1, 1, 1, 17623, 36607, 2459, 2029, 1, 259121, 519683, 3889, 74653, 23819, 525467, 1, 27809, 24083, 1, 38053, 534203, 267833, 76733, 1, 1693, 14251, 77573, 4463, 49633, 39103, 5659, 1847, 1, 1, 2423, 1, 79693, 1877, 1607, 25561, 1, 4219, 566851, 40597, 1, 2621, 52081, 1, 575923, 6143, 1, 290243, 582011, 10061, 1, 7927, 588131, 1, 4513, 2719, 594283, 1, 20599, 15761, 85781, 1, 8501, 302563, 7879, 1699, 609803, 43669, 55721, 1, 8677, 1, 10151, 8389, 1, 1, 13309, 313553, 1, 28649, 631867, 45247, 635051, 318323, 10463, 6529, 58313, 11087, 1, 1, 58897, 2557, 1979, 326353, 654323, 46853, 6779, 1, 660811, 47317, 664067, 30259, 13619, 6311, 10009, 336121, 96269, 1, 61561, 48487, 1, 341059, 5651, 1, 687083, 344371, 1, 1, 693731, 1, 99581, 349369, 4297, 1, 703763, 9533, 37217, 1, 710491, 4001, 1, 357779, 8059, 1, 1, 19009, 24967, 51839, 727451, 7757, 730867, 1, 734291, 1, 105389, 1, 741163, 10039, 106373, 3623, 6863, 1, 6211, 376633, 1, 1, 1, 1, 1, 381859, 765467, 383609, 2969, 1, 1, 1907, 776003, 35353, 779531, 55807, 16661, 5857, 1, 20747, 2477, 395971, 1, 397753, 72481, 57077, 9649, 401329, 5399, 1, 21839, 1, 2467, 2351, 815251, 37139, 116981, 410339, 1, 1, 1, 1, 1, 59399, 1, 11287, 1, 419449, 44249, 1, 1, 423121, 13903, 5519, 12713, 8053, 855467, 1, 12101, 430513, 123269, 1, 1, 9239, 1, 3329, 9011, 1, 79801, 1, 3253, 63103, 5639, 443603, 1, 40499, 46993, 1, 1, 1, 900443, 64453, 24439, 453073, 13553, 64997, 4363, 2803, 1, 1, 1, 460721, 131909, 462643, 1, 1, 931067, 42409, 1, 66919, 938803, 1, 134669, 3719, 25583, 1, 135781, 16421, 1, 1, 20389, 6577, 87473, 1, 50849, 9133, 138581, 1, 1, 1, 139709, 1, 13451, 6389, 2731, 493939, 21061, 1, 993851, 7013, 12959, 3067, 5791, 26417, 13063, 503929, 1, 72277, 1013891, 507953, 1017923, 1,

6. Sequence of the polynom (only primes)

37, 7, 11, 19, 67, 131, 83, 29, 283, 163, 53, 467, 571, 313, 683, 73, 433, 499, 97, 569, 173, 643, 47, 103, 1523, 89, 127, 1867, 293, 2243, 1171, 349, 241, 197, 61, 1489, 281, 229, 3323, 1721, 509, 179, 2099, 71, 4603, 2371, 257, 359, 5171, 2659, 199, 2963, 79, 3121, 337, 3449, 191, 7411, 3793, 1109, 8123, 4153, 1213, 4339, 8867, 647, 4723, 9643, 109, 1493, 10867, 1613, 523, 617, 853, 12163, 563, 12611, 1933, 6883, 7121, 2069, 1361, 1087, 15467, 271, 15971, 311, 761, 347, 373, 809, 503, 19163, 9721, 1429, 10289, 149, 1129, 11171, 22643, 23251, 11779, 823, 157, 1289, 12721, 25763, 13043, 461, 27067, 2521, 14033, 28403, 2053, 14713, 4253, 30467, 811, 1433, 31883, 32603, 33331, 4973, 17971, 5189, 18353, 1279, 2677, 1993, 38651, 2789, 39443, 1811, 5749, 20323, 41051, 1091, 5981, 21139, 3881, 3079, 613, 457, 1559, 1201, 6581, 661, 2153, 6829, 24121, 547, 2609, 463, 3637, 1093, 25913, 26371, 641, 26833, 27299, 1039, 3967, 709, 56963, 57923, 2699, 8693, 829, 61843, 1667, 953, 4597, 5897, 9413, 33203, 66923, 33721, 69011, 4967, 70067, 3209, 857, 5119, 701, 983, 36913, 6761, 797, 10781, 6961, 787, 593, 78803, 5669, 1193, 3659, 40819, 11909, 84523, 6079, 85691, 6247, 1549, 607, 45523, 13093, 92867, 2543, 47353, 1583, 48593, 631, 1303, 2657, 101603, 1399, 1427, 7487, 105467, 2179, 3727, 54371, 15629, 5003, 110731, 112067, 56369, 10433, 58403, 971, 1597, 16981, 59779, 6329, 1181, 1733, 8839, 1283, 5689, 17981, 3331, 127291, 2207, 1061, 11833, 9349, 131611, 66169, 12097, 4639, 1439, 19429, 68371, 137483, 19853, 69859, 7393, 141971, 71363, 143483, 10303, 3919, 72883, 1567, 7793, 74419, 75193, 151163, 10853, 152723, 76753, 154291, 1973, 7193, 1787, 907, 162251, 14897, 82339, 2267, 1697, 15193, 24109, 84793, 8969, 85619, 2593, 175403, 8011, 2903, 89809, 90659, 16561, 91513, 1301, 94099, 189067, 13567, 190811, 8713, 27509, 194323, 6823, 14197, 3767, 18313, 991, 2663, 5591, 103889, 4259, 104803, 210523, 1373, 11177, 2269, 214211, 108499, 109433, 3011, 2879, 1249, 113209, 227371, 229283, 33029, 8039, 1747, 33581, 10729, 237011, 12577, 119971, 2707, 1999, 34981, 122929, 22441, 123923, 1871, 2357, 3533, 17989, 8719, 1049, 129971, 1601, 4517, 37573, 132019, 24097, 267131, 7057, 24473, 4049, 136163, 137209, 5861, 12569, 2087, 139313, 7559, 1823, 281803, 4877, 20357, 1187, 143569, 1327, 145721, 2011, 4831, 7841, 3083, 1949, 301243, 151171, 153379, 310091, 22229, 28393, 2957, 10847, 22549, 2239, 2399, 4327, 321331, 161233, 46229, 325883, 328171, 14969, 17393, 23687, 3739, 1621, 47869, 1889, 169283, 48533, 8971, 24517, 1217, 2579, 346763, 2749, 15923, 9281, 353867, 16139, 50893, 25703, 2017, 181123, 3463, 4783, 184753, 370723, 185971, 53309, 187193, 2447, 5179, 3109, 3923, 192121, 7867, 10177, 387971, 194609, 2683, 2503, 1367, 200899, 18379, 405611, 1553, 58309, 21617, 29429, 5821, 2137, 2111, 7237, 60149, 4493, 2027, 8699, 30727, 14879, 8191, 1637, 4007, 19913, 62773, 220369, 7247, 63533, 450083, 1723, 41161, 228409, 229763, 21011, 2801, 466331, 3037, 7001, 8111, 1741, 24977, 237971, 6199, 6469, 480091, 240739, 6271, 242129, 10333, 1831, 6691, 494051, 247729, 70981, 499691, 13187, 71789, 251971, 6397, 17623, 36607, 2459, 2029, 259121, 519683, 3889, 74653, 23819, 525467, 27809, 24083, 38053, 534203, 267833, 76733, 1693, 14251, 77573, 4463, 49633, 39103, 5659, 1847, 2423, 79693, 1877, 1607, 25561, 4219, 566851, 40597, 2621, 52081, 575923, 6143, 290243, 582011, 10061, 7927, 588131, 4513, 2719, 594283, 20599, 15761, 85781, 8501, 302563, 7879, 1699, 609803, 43669, 55721, 8677, 10151, 8389, 13309, 313553, 28649, 631867, 45247, 635051, 318323, 10463, 6529, 58313, 11087, 58897, 2557, 1979, 326353, 654323, 46853, 6779, 660811, 47317, 664067, 30259, 13619, 6311, 10009, 336121, 96269, 61561, 48487, 341059, 5651, 687083, 344371, 693731, 99581, 349369, 4297, 703763, 9533, 37217, 710491, 4001, 357779, 8059, 19009, 24967, 51839, 727451, 7757, 730867, 734291, 105389, 741163, 10039, 106373, 3623, 6863, 6211, 376633, 381859, 765467, 383609, 2969, 1907, 776003, 35353, 779531, 55807, 16661, 5857, 20747, 2477, 395971, 397753, 72481, 57077, 9649, 401329, 5399, 21839, 2467, 2351, 815251, 37139, 116981, 410339, 59399, 11287, 419449, 44249, 423121, 13903, 5519, 12713, 8053, 855467, 12101, 430513, 123269, 9239, 3329, 9011, 79801, 3253, 63103, 5639, 443603, 40499, 46993, 900443, 64453, 24439, 453073, 13553, 64997, 4363, 2803, 460721, 131909, 462643, 931067, 42409, 66919, 938803, 134669, 3719, 25583, 135781, 16421, 20389, 6577, 87473, 50849, 9133, 138581, 139709, 13451, 6389, 2731, 493939, 21061, 993851, 7013, 12959, 3067, 5791, 26417, 13063, 503929, 72277, 1013891, 507953, 1017923,

7. Distribution of the primes

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

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)
1109810.9000000.8000000.9000000.0000000.0000000.000000
21007142290.7100000.4200000.7100007.8888895.25000029.000000
31.0006952494460.6950000.2490000.6950009.7887335.92857115.379311
410.0006.9811.8975.0840.6981000.1897000.69810010.0446047.61847411.399103
5100.00069.87014.53455.3360.6987000.1453400.69870010.0085957.66157110.884343
61.000.000696.953118.182578.7710.6969530.1181820.6969539.9749978.13141610.459213
710.000.0006.962.770995.6065.967.1640.6962770.0995610.6962779.9903008.42434610.310061
8100.000.00069.574.1018.609.59460.964.5070.6957410.0860960.6957419.9923038.64759210.216663
91.000.000.000695.330.05775.880.389619.449.6680.6953300.0758800.6953309.9940938.81346910.160825
1010.000.000.0006.950.255.142678.481.6816.271.773.4610.6950260.0678480.6950269.9956208.94146310.124751


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
245501.2500001.2500000.0000001.6666671.666667-nan
388711.0000000.8750000.1250001.6000001.400000inf
416131120.8125000.6875000.1250001.6250001.5714292.000000
532251870.7812500.5625000.2187501.9230771.6363643.500000
6644729180.7343750.4531250.2812501.8800001.6111112.571429
71288948410.6953120.3750000.3203121.8936171.6551722.277778
825617685910.6875000.3320310.3554691.9775281.7708332.219512
95123501472030.6835940.2871090.3964841.9886361.7294122.230769
101.0247122584540.6953120.2519530.4433592.0342861.7551022.236453
112.0481.4214749470.6938480.2314450.4624021.9957871.8372092.085903
124.0962.8538801.9730.6965330.2148440.4816892.0077411.8565402.083421
138.1925.7111.5954.1160.6971440.1947020.5024412.0017531.8125002.086163
1416.38411.4432.9258.5180.6984250.1785280.5198972.0036771.8338562.069485
1532.76822.8955.33217.5630.6987000.1627200.5359802.0007871.8229062.061869
1665.53645.8089.92135.8870.6989750.1513820.5475922.0007861.8606532.043330
17131.07291.49118.54872.9430.6980210.1415100.5565111.9972711.8695702.032574
18262.144182.95334.527148.4260.6979100.1317100.5662001.9996831.8614952.034822
19524.288365.57065.096300.4740.6972690.1241610.5731091.9981631.8853652.024403
201.048.576730.729123.483607.2460.6968770.1177630.5791151.9988761.8969372.020960
212.097.1521.460.708233.6611.227.0470.6965200.1114180.5851021.9989741.8922522.020675
224.194.3042.920.683444.2012.476.4820.6963450.1059060.5904391.9994981.9010492.018245
238.388.6085.840.708845.0154.995.6930.6962670.1007340.5955331.9997751.9023262.017254
2416.777.21611.679.0701.612.97210.066.0980.6961270.0961410.5999861.9995981.9088092.014955
2533.554.43223.352.6163.086.25420.266.3620.6959620.0919780.6039851.9995271.9133962.013329
2667.108.86446.694.4555.915.60140.778.8540.6958020.0881490.6076521.9995391.9167582.012145
27134.217.72893.371.13611.361.58382.009.5530.6956690.0846500.6110191.9996191.9206142.011080
28268.435.456186.710.58321.850.831164.859.7520.6955510.0814010.6141501.9996601.9232212.010251
29536.870.912373.355.47842.090.757331.264.7210.6954290.0784000.6170291.9996481.9262772.009373
301.073.741.824746.598.59281.178.418665.420.1740.6953240.0756030.6197211.9996991.9286522.008726
312.147.483.6481.492.977.358156.789.9041.336.187.4540.6952220.0730110.6222111.9997061.9314242.008036
324.294.967.2962.985.563.642303.188.9632.682.374.6790.6951310.0705920.6245391.9997381.9337282.007484
338.589.934.5925.970.382.836586.909.3935.383.473.4430.6950440.0683250.6267191.9997511.9357872.006980
3417.179.869.18411.939.422.5741.137.332.51310.802.090.0610.6949660.0662010.6287641.9997751.9378332.006528


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
123210111
245410311
387430511
41611740911
5321811731311
66429171252211
7128482721103611
8256854243206311
951214774733411111
101.0242581301286619011
112.04847422924512135111
124.09688042545521266611
138.1921.5957858103921.20111
1416.3842.9251.4711.4547372.18611
1532.7685.3322.7072.6251.3164.01411
1665.5369.9215.0174.9042.4777.44211
17131.07218.5489.3779.1714.69813.84811
18262.14434.52717.41017.1178.77325.75211
19524.28865.09632.79232.30416.52448.57011
201.048.576123.48362.16561.31831.33892.14311
212.097.152233.661117.463116.19859.268174.39111
224.194.304444.201223.187221.014112.329331.87011
238.388.608845.015424.650420.365213.716631.29711
2416.777.2161.612.972809.916803.056407.4851.205.48511
2533.554.4323.086.2541.548.9801.537.274778.9682.307.28411
2667.108.8645.915.6012.968.4632.947.1381.493.1224.422.47711
27134.217.72811.361.5835.699.3325.662.2512.867.4108.494.17111
28268.435.45621.850.83110.958.67510.892.1565.513.87516.336.95411
29536.870.91242.090.75721.109.48220.981.27510.619.39731.471.35811
301.073.741.82481.178.41840.709.12840.469.29020.474.52360.703.89311
312.147.483.648156.789.90478.614.48578.175.41939.532.973117.256.92911
324.294.967.296303.188.963152.010.469151.178.49476.423.748226.765.21311
338.589.934.592586.909.393294.231.776292.677.617147.902.656439.006.73511
3417.179.869.1841.137.332.513570.132.700567.199.813286.534.404850.798.10711


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
381010010
4162020020
5327343031
664187116183
71284116251141610
825691415026103718
95122039410958267049
101.02445421124311174151118
112.048947462485236162301248
124.0961.9731.002971484370595524
138.1924.1162.0612.0551.0148071.1991.096
1416.3848.5184.3134.2052.1141.7322.4182.254
1532.76817.5638.7828.7814.4033.6594.8934.608
1665.53635.88718.01217.8758.9477.6529.9149.374
17131.07272.94336.50536.43818.15815.70020.12718.958
18262.144148.42674.24874.17837.07932.14040.80638.401
19524.288300.474150.103150.37175.12165.99581.96977.389
201.048.576607.246303.781303.465152.297134.501164.241156.207
212.097.1521.227.047613.863613.184307.899274.146331.141313.861
224.194.3042.476.4821.239.4081.237.074621.510557.088665.085632.799
238.388.6084.995.6932.498.4852.497.2081.253.4791.130.4771.337.0141.274.723
2416.777.21610.066.0985.034.0075.032.0912.526.2032.291.9352.683.7822.564.178
2533.554.43220.266.36210.135.26910.131.0935.085.6664.637.3685.386.2295.157.099
2667.108.86440.778.85420.389.03620.389.81810.229.6119.373.34610.804.39110.371.506
27134.217.72882.009.55341.005.96941.003.58420.573.40618.925.78521.672.41520.837.947
28268.435.456164.859.75282.439.00582.420.74741.345.97038.197.17243.458.65741.857.953
29536.870.912331.264.721165.655.032165.609.68983.063.14577.027.12187.136.02384.038.432
301.073.741.824665.420.174332.737.406332.682.768166.845.061155.223.702174.669.638168.681.773
312.147.483.6481.336.187.454668.141.139668.046.315335.003.879312.595.938350.073.058338.514.579
324.294.967.2962.682.374.6791.341.279.6491.341.095.030672.474.966629.224.595701.524.083679.151.035
338.589.934.5925.383.473.4432.691.924.1242.691.549.3191.349.520.8201.265.949.2941.405.683.5091.362.319.820
3417.179.869.18410.802.090.0615.401.382.2745.400.707.7872.707.681.9492.545.884.9672.816.252.7762.732.270.369


8. Check for existing Integer Sequences by OEIS

Found in Database : 37, 7, 11, 19, 67, 1, 131, 83, 29, 1, 283, 163, 53, 1, 467, 1, 571, 313, 683, 1,
Found in Database : 37, 7, 11, 19, 67, 131, 83, 29, 283, 163, 53, 467, 571, 313, 683, 73, 433, 499, 97, 569, 173, 643, 47, 103, 1523, 89, 127, 1867, 293, 2243, 1171,
Found in Database : 7, 11, 19, 29, 37, 47, 53, 61, 67, 71, 73, 79, 83, 89, 97, 103, 109, 127, 131, 149,