Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:27:13
Deutsch
20.Apr 2024

Polynom = x^2-140x-3

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) = 3 = 3
f(1) = 71 = 71
f(2) = 279 = 3*3*31
f(3) = 207 = 3*3*23
f(4) = 547 = 547
f(5) = 339 = 3*113
f(6) = 807 = 3*269
f(7) = 467 = 467
f(8) = 1059 = 3*353
f(9) = 591 = 3*197
f(10) = 1303 = 1303
f(11) = 711 = 3*3*79
f(12) = 1539 = 3*3*3*3*19
f(13) = 827 = 827
f(14) = 1767 = 3*19*31
f(15) = 939 = 3*313
f(16) = 1987 = 1987
f(17) = 1047 = 3*349
f(18) = 2199 = 3*733
f(19) = 1151 = 1151
f(20) = 2403 = 3*3*3*89
f(21) = 1251 = 3*3*139
f(22) = 2599 = 23*113
f(23) = 1347 = 3*449
f(24) = 2787 = 3*929
f(25) = 1439 = 1439
f(26) = 2967 = 3*23*43
f(27) = 1527 = 3*509
f(28) = 3139 = 43*73
f(29) = 1611 = 3*3*179
f(30) = 3303 = 3*3*367
f(31) = 1691 = 19*89
f(32) = 3459 = 3*1153
f(33) = 1767 = 3*19*31
f(34) = 3607 = 3607
f(35) = 1839 = 3*613
f(36) = 3747 = 3*1249
f(37) = 1907 = 1907
f(38) = 3879 = 3*3*431
f(39) = 1971 = 3*3*3*73
f(40) = 4003 = 4003
f(41) = 2031 = 3*677
f(42) = 4119 = 3*1373
f(43) = 2087 = 2087
f(44) = 4227 = 3*1409
f(45) = 2139 = 3*23*31
f(46) = 4327 = 4327
f(47) = 2187 = 3*3*3*3*3*3*3
f(48) = 4419 = 3*3*491
f(49) = 2231 = 23*97
f(50) = 4503 = 3*19*79
f(51) = 2271 = 3*757
f(52) = 4579 = 19*241
f(53) = 2307 = 3*769
f(54) = 4647 = 3*1549
f(55) = 2339 = 2339
f(56) = 4707 = 3*3*523
f(57) = 2367 = 3*3*263
f(58) = 4759 = 4759
f(59) = 2391 = 3*797
f(60) = 4803 = 3*1601
f(61) = 2411 = 2411
f(62) = 4839 = 3*1613
f(63) = 2427 = 3*809
f(64) = 4867 = 31*157
f(65) = 2439 = 3*3*271
f(66) = 4887 = 3*3*3*181
f(67) = 2447 = 2447
f(68) = 4899 = 3*23*71
f(69) = 2451 = 3*19*43
f(70) = 4903 = 4903
f(71) = 2451 = 3*19*43
f(72) = 4899 = 3*23*71
f(73) = 2447 = 2447
f(74) = 4887 = 3*3*3*181
f(75) = 2439 = 3*3*271
f(76) = 4867 = 31*157
f(77) = 2427 = 3*809
f(78) = 4839 = 3*1613
f(79) = 2411 = 2411
f(80) = 4803 = 3*1601
f(81) = 2391 = 3*797
f(82) = 4759 = 4759
f(83) = 2367 = 3*3*263
f(84) = 4707 = 3*3*523
f(85) = 2339 = 2339
f(86) = 4647 = 3*1549
f(87) = 2307 = 3*769
f(88) = 4579 = 19*241
f(89) = 2271 = 3*757
f(90) = 4503 = 3*19*79
f(91) = 2231 = 23*97
f(92) = 4419 = 3*3*491
f(93) = 2187 = 3*3*3*3*3*3*3
f(94) = 4327 = 4327
f(95) = 2139 = 3*23*31
f(96) = 4227 = 3*1409
f(97) = 2087 = 2087
f(98) = 4119 = 3*1373
f(99) = 2031 = 3*677
f(100) = 4003 = 4003

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

f(0)=3
f(1)=71
f(2)=31
f(3)=23
f(4)=547
f(5)=113
f(6)=269
f(7)=467
f(8)=353
f(9)=197
f(10)=1303
f(11)=79
f(12)=19
f(13)=827
f(14)=1
f(15)=313
f(16)=1987
f(17)=349
f(18)=733
f(19)=1151
f(20)=89
f(21)=139
f(22)=1
f(23)=449
f(24)=929
f(25)=1439
f(26)=43
f(27)=509
f(28)=73
f(29)=179
f(30)=367
f(31)=1
f(32)=1153
f(33)=1
f(34)=3607
f(35)=613
f(36)=1249
f(37)=1907
f(38)=431
f(39)=1
f(40)=4003
f(41)=677
f(42)=1373
f(43)=2087
f(44)=1409
f(45)=1
f(46)=4327
f(47)=1
f(48)=491
f(49)=97
f(50)=1
f(51)=757
f(52)=241
f(53)=769
f(54)=1549
f(55)=2339
f(56)=523
f(57)=263
f(58)=4759
f(59)=797
f(60)=1601
f(61)=2411
f(62)=1613
f(63)=809
f(64)=157
f(65)=271
f(66)=181
f(67)=2447
f(68)=1
f(69)=1
f(70)=4903
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=1
f(90)=1
f(91)=1
f(92)=1
f(93)=1
f(94)=1
f(95)=1
f(96)=1
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-140x-3 could be written as f(y)= y^2-4903 with x=y+70

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-70
f'(x)>2x-141 with x > 70

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

3, 71, 31, 23, 547, 113, 269, 467, 353, 197, 1303, 79, 19, 827, 1, 313, 1987, 349, 733, 1151, 89, 139, 1, 449, 929, 1439, 43, 509, 73, 179, 367, 1, 1153, 1, 3607, 613, 1249, 1907, 431, 1, 4003, 677, 1373, 2087, 1409, 1, 4327, 1, 491, 97, 1, 757, 241, 769, 1549, 2339, 523, 263, 4759, 797, 1601, 2411, 1613, 809, 157, 271, 181, 2447, 1, 1, 4903, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 281, 1, 191, 1, 1, 1, 1181, 223, 499, 829, 607, 331, 2153, 1, 277, 1, 947, 503, 1, 563, 1187, 1873, 1, 229, 227, 751, 1567, 1, 1699, 883, 5501, 317, 1, 3061, 2111, 1091, 6761, 1163, 2399, 3709, 283, 1, 8093, 1, 2851, 1, 1, 1543, 9497, 541, 1109, 5113, 3491, 1787, 10973, 1871, 1, 5869, 1, 1, 659, 2131, 1, 6661, 1, 2311, 1, 1, 1, 7489, 5087, 2591, 1, 2687, 5471, 8353, 1889, 1, 17597, 1, 6067, 487, 6271, 3187, 19433, 1097, 743, 443, 6899, 1, 21341, 1, 7331, 11161, 839, 1277, 23321, 3943, 421, 1, 433, 1, 25373, 1429, 2897, 1, 1, 4523, 887, 4643, 409, 14293, 3217, 1, 1291, 5011, 1, 811, 10399, 1, 1031, 599, 3637, 16561, 11171, 5651, 34301, 5783, 11699, 17749, 3989, 2017, 36713, 1, 12511, 18973, 673, 1, 2063, 1, 1483, 20233, 1, 1, 971, 1, 14207, 21529, 1, 2441, 44381, 1, 15091, 22861, 15391, 1, 1, 1, 5333, 24229, 709, 8231, 49853, 8387, 16931, 25633, 5749, 967, 52697, 8863, 577, 27073, 18211, 9187, 2927, 1039, 1, 28549, 1, 1, 58601, 9851, 641, 1307, 6737, 1, 1, 1, 20899, 1, 21247, 10711, 64793, 1, 1, 1747, 22307, 11243, 701, 11423, 23027, 1123, 1, 3929, 1, 11971, 1049, 36469, 24499, 12343, 1051, 4177, 1, 1231, 1, 12911, 78041, 13103, 26399, 1, 8929, 1499, 81533, 13687, 1, 1811, 27967, 14083, 1979, 1, 1, 2287, 941, 773, 997, 14891, 1, 45289, 10133, 5101, 953, 15511, 31231, 47161, 1021, 1, 96221, 5381, 1, 49069, 1733, 1, 1, 16787, 33791, 1, 3803, 5741, 103997, 17443, 35107, 1, 1, 1, 1367, 6037, 12149, 55009, 36899, 977, 112061, 1, 37811, 1327, 12757, 1, 116201, 19483, 39199, 59149, 39667, 1, 120413, 2243, 13537, 863, 1, 20663, 6563, 20903, 2213, 1, 14177, 7129, 1, 1, 1, 65629, 1913, 22123, 133481, 7457, 4999, 859, 45491, 22871, 4451, 1217, 46499, 3691, 1741, 7877, 142553, 23887, 1117, 1, 1129, 1061, 147197, 8221, 16529, 3251, 50111, 1, 2081, 821, 2693, 1, 907, 2887, 1, 26251, 1, 79561, 1, 1, 161561, 1, 18133, 82009, 2389, 27611, 1, 1, 2437, 4447, 18869, 1, 1, 28723, 57727, 87013, 1, 29287, 176573, 9857, 1, 2083, 59999, 1, 181721, 30431, 61151, 4007, 1, 10337, 9839, 1361, 2029, 94789, 63487, 31891, 192233, 10729, 21557, 97453, 65267, 32783, 197597, 33083, 66467, 100153, 1, 1, 1063, 1789, 2969, 3319, 68899, 34603, 9067, 1, 1, 1, 1, 35531, 1, 1, 71999, 3499, 1, 12157, 1, 36787, 3889, 1, 74527, 37423, 3089, 1, 8423, 114193, 1, 1669, 231293, 38711, 77747, 117109, 1, 13121, 237161, 2089, 1009, 1, 1, 40351, 243101, 1, 1, 123049, 2657, 41351, 10831, 41687, 1, 1, 1223, 1, 255197, 42703, 4513, 1, 4549, 1, 261353, 1, 29269, 132229, 88499, 1433, 267581, 44771, 89891, 1, 30197, 1, 273881, 45823, 1, 1, 92707, 1, 280253, 15629, 10459, 1, 94847, 1, 286697, 47963, 1319, 144973, 3593, 16229, 293213, 1, 98467, 148249, 1, 49783, 1, 1, 1459, 151561, 101411, 50891, 7127, 51263, 2393, 1597, 34549, 5779, 10103, 52387, 1481, 158293, 105907, 2797, 4507, 1, 35809, 1, 108191, 54287, 326873, 2377, 1, 1, 36833, 18481, 333821, 1801, 1259, 1, 112831, 56611, 17939, 19001, 1, 1, 1, 57791, 347933, 1877, 5077, 175753, 13063, 19661, 15439, 1381, 1, 1, 119971, 1, 362333, 1, 40529, 9631, 122399, 61403, 4679, 1, 4001, 2557, 41617, 6959, 377021, 2741, 126499, 190369, 1, 2777, 384473, 2381, 1, 194113, 6833, 65123, 3469, 65543, 131507, 197893, 1, 22129, 1, 1, 134047, 201709, 1, 1, 17707, 22697, 1, 1, 1, 1, 1, 69383, 139199, 209449, 1, 23417, 1, 70687, 141811, 6883, 1471, 71563, 430697, 24001, 1, 217333, 7649, 3169, 23087, 73331, 147107, 9623, 49333, 2749, 1, 1, 149791, 1, 4861, 75571, 1607, 8447, 50833, 1, 153407, 4049, 462953, 4073, 155231, 5431, 1, 1, 2467, 1, 6869, 237673, 1, 79687, 479513, 26717, 17863, 3313, 1667, 81083, 25679, 81551, 8609, 1, 1, 1, 6991, 82963, 166399, 10883, 2357, 83911, 504893, 1, 56417, 254593, 170207, 2753, 2837, 4517, 172127, 13627, 57697, 9643, 4621, 1, 1, 263269, 4093, 1, 12347, 9859, 2579, 267661, 178931, 1, 1, 90203, 9521, 1, 3191, 1, 3947, 1, 183871, 276553, 1, 92683, 17987, 1, 1, 281053, 187871, 1, 566633, 1, 189887, 15031, 21211, 1, 6469, 96211, 192931, 290161, 193951, 97231, 1657, 1, 1, 1, 2699, 2297, 1619, 2309, 1, 1, 3511, 1, 1, 3253, 1, 4283, 8837, 1, 1, 3793, 68449, 308809, 206399, 1, 1, 103991, 208511, 313561, 69857, 1, 631901, 5557, 6829, 318349, 1, 4637, 641513, 35729, 23879, 14051, 1, 108263, 8243, 108803, 1, 1, 24359, 36629, 1, 110431, 1, 1, 222499, 1, 670781, 37357, 74897, 337861, 9817, 113171, 680681, 113723, 1, 11059, 76369, 4253, 9461, 6073, 231331, 18307, 1, 1, 7873, 13007, 78229, 11383, 235811, 1, 710813, 118751, 1, 1, 1, 1, 7433, 5237, 1, 363061, 1, 121591, 731261, 1, 27211, 8563, 7937, 123311, 741593, 123887, 248351, 373393, 9241, 41681, 751997, 1, 10949, 19927, 8161, 6673, 33151, 42457, 85109, 383869, 256499, 1, 773021, 1, 1, 389161, 86677, 14479, 783641, 1, 262399, 394489, 13873, 4261, 1, 1, 88657, 399853, 267167, 5821, 805097, 1, 6269, 405253, 2099, 1, 815933, 1867, 273187, 2269, 1, 7237, 1, 2423, 10253, 1, 278051, 1, 1, 139943, 280499, 5939, 1, 47057, 1, 1997, 284191, 427213, 3613, 1,

6. Sequence of the polynom (only primes)

3, 71, 31, 23, 547, 113, 269, 467, 353, 197, 1303, 79, 19, 827, 313, 1987, 349, 733, 1151, 89, 139, 449, 929, 1439, 43, 509, 73, 179, 367, 1153, 3607, 613, 1249, 1907, 431, 4003, 677, 1373, 2087, 1409, 4327, 491, 97, 757, 241, 769, 1549, 2339, 523, 263, 4759, 797, 1601, 2411, 1613, 809, 157, 271, 181, 2447, 4903, 281, 191, 1181, 223, 499, 829, 607, 331, 2153, 277, 947, 503, 563, 1187, 1873, 229, 227, 751, 1567, 1699, 883, 5501, 317, 3061, 2111, 1091, 6761, 1163, 2399, 3709, 283, 8093, 2851, 1543, 9497, 541, 1109, 5113, 3491, 1787, 10973, 1871, 5869, 659, 2131, 6661, 2311, 7489, 5087, 2591, 2687, 5471, 8353, 1889, 17597, 6067, 487, 6271, 3187, 19433, 1097, 743, 443, 6899, 21341, 7331, 11161, 839, 1277, 23321, 3943, 421, 433, 25373, 1429, 2897, 4523, 887, 4643, 409, 14293, 3217, 1291, 5011, 811, 10399, 1031, 599, 3637, 16561, 11171, 5651, 34301, 5783, 11699, 17749, 3989, 2017, 36713, 12511, 18973, 673, 2063, 1483, 20233, 971, 14207, 21529, 2441, 44381, 15091, 22861, 15391, 5333, 24229, 709, 8231, 49853, 8387, 16931, 25633, 5749, 967, 52697, 8863, 577, 27073, 18211, 9187, 2927, 1039, 28549, 58601, 9851, 641, 1307, 6737, 20899, 21247, 10711, 64793, 1747, 22307, 11243, 701, 11423, 23027, 1123, 3929, 11971, 1049, 36469, 24499, 12343, 1051, 4177, 1231, 12911, 78041, 13103, 26399, 8929, 1499, 81533, 13687, 1811, 27967, 14083, 1979, 2287, 941, 773, 997, 14891, 45289, 10133, 5101, 953, 15511, 31231, 47161, 1021, 96221, 5381, 49069, 1733, 16787, 33791, 3803, 5741, 103997, 17443, 35107, 1367, 6037, 12149, 55009, 36899, 977, 112061, 37811, 1327, 12757, 116201, 19483, 39199, 59149, 39667, 120413, 2243, 13537, 863, 20663, 6563, 20903, 2213, 14177, 7129, 65629, 1913, 22123, 133481, 7457, 4999, 859, 45491, 22871, 4451, 1217, 46499, 3691, 1741, 7877, 142553, 23887, 1117, 1129, 1061, 147197, 8221, 16529, 3251, 50111, 2081, 821, 2693, 907, 2887, 26251, 79561, 161561, 18133, 82009, 2389, 27611, 2437, 4447, 18869, 28723, 57727, 87013, 29287, 176573, 9857, 2083, 59999, 181721, 30431, 61151, 4007, 10337, 9839, 1361, 2029, 94789, 63487, 31891, 192233, 10729, 21557, 97453, 65267, 32783, 197597, 33083, 66467, 100153, 1063, 1789, 2969, 3319, 68899, 34603, 9067, 35531, 71999, 3499, 12157, 36787, 3889, 74527, 37423, 3089, 8423, 114193, 1669, 231293, 38711, 77747, 117109, 13121, 237161, 2089, 1009, 40351, 243101, 123049, 2657, 41351, 10831, 41687, 1223, 255197, 42703, 4513, 4549, 261353, 29269, 132229, 88499, 1433, 267581, 44771, 89891, 30197, 273881, 45823, 92707, 280253, 15629, 10459, 94847, 286697, 47963, 1319, 144973, 3593, 16229, 293213, 98467, 148249, 49783, 1459, 151561, 101411, 50891, 7127, 51263, 2393, 1597, 34549, 5779, 10103, 52387, 1481, 158293, 105907, 2797, 4507, 35809, 108191, 54287, 326873, 2377, 36833, 18481, 333821, 1801, 1259, 112831, 56611, 17939, 19001, 57791, 347933, 1877, 5077, 175753, 13063, 19661, 15439, 1381, 119971, 362333, 40529, 9631, 122399, 61403, 4679, 4001, 2557, 41617, 6959, 377021, 2741, 126499, 190369, 2777, 384473, 2381, 194113, 6833, 65123, 3469, 65543, 131507, 197893, 22129, 134047, 201709, 17707, 22697, 69383, 139199, 209449, 23417, 70687, 141811, 6883, 1471, 71563, 430697, 24001, 217333, 7649, 3169, 23087, 73331, 147107, 9623, 49333, 2749, 149791, 4861, 75571, 1607, 8447, 50833, 153407, 4049, 462953, 4073, 155231, 5431, 2467, 6869, 237673, 79687, 479513, 26717, 17863, 3313, 1667, 81083, 25679, 81551, 8609, 6991, 82963, 166399, 10883, 2357, 83911, 504893, 56417, 254593, 170207, 2753, 2837, 4517, 172127, 13627, 57697, 9643, 4621, 263269, 4093, 12347, 9859, 2579, 267661, 178931, 90203, 9521, 3191, 3947, 183871, 276553, 92683, 17987, 281053, 187871, 566633, 189887, 15031, 21211, 6469, 96211, 192931, 290161, 193951, 97231, 1657, 2699, 2297, 1619, 2309, 3511, 3253, 4283, 8837, 3793, 68449, 308809, 206399, 103991, 208511, 313561, 69857, 631901, 5557, 6829, 318349, 4637, 641513, 35729, 23879, 14051, 108263, 8243, 108803, 24359, 36629, 110431, 222499, 670781, 37357, 74897, 337861, 9817, 113171, 680681, 113723, 11059, 76369, 4253, 9461, 6073, 231331, 18307, 7873, 13007, 78229, 11383, 235811, 710813, 118751, 7433, 5237, 363061, 121591, 731261, 27211, 8563, 7937, 123311, 741593, 123887, 248351, 373393, 9241, 41681, 751997, 10949, 19927, 8161, 6673, 33151, 42457, 85109, 383869, 256499, 773021, 389161, 86677, 14479, 783641, 262399, 394489, 13873, 4261, 88657, 399853, 267167, 5821, 805097, 6269, 405253, 2099, 815933, 1867, 273187, 2269, 7237, 2423, 10253, 278051, 139943, 280499, 5939, 47057, 1997, 284191, 427213, 3613,

7. Distribution of the primes

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

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)
11011561.1000000.5000000.6000000.0000000.0000000.000000
21005819390.5800000.1900000.3900005.2727273.8000006.500000
31.0006621545080.6620000.1540000.50800011.4137948.10526313.025641
410.0007.1011.1085.9930.7101000.1108000.59930010.7265867.19480511.797244
5100.00071.1308.96262.1680.7113000.0896200.62168010.0168998.08844810.373436
61.000.000708.60972.353636.2560.7086090.0723530.6362569.9621688.07331010.234462
710.000.0007.061.189612.7786.448.4110.7061190.0612780.6448419.9648598.46928210.134932
8100.000.00070.423.2895.306.98765.116.3020.7042330.0530700.6511639.9732908.66053810.098039
91.000.000.000702.867.94946.768.012656.099.9370.7028680.0467680.6561009.9806188.81253510.075817
1010.000.000.0007.017.664.883418.105.3766.599.559.5070.7017660.0418110.6599569.9843298.93998610.058771


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
245321.2500000.7500000.5000001.6666671.5000002.000000
389451.1250000.5000000.6250001.8000001.3333332.500000
41615780.9375000.4375000.5000001.6666671.7500001.600000
532289190.8750000.2812500.5937501.8666671.2857142.375000
6645417370.8437500.2656250.5781251.9285711.8888891.947368
71285819390.4531250.1484380.3046881.0740741.1176471.054054
825612942870.5039060.1640620.3398442.2241382.2105262.230769
9512317832340.6191410.1621090.4570312.4573641.9761902.689655
101.0246801585220.6640620.1542970.5097662.1451101.9036142.230769
112.0481.4102941.1160.6884770.1435550.5449222.0735291.8607592.137931
124.0962.8625262.3360.6987300.1284180.5703122.0297871.7891162.093190
138.1925.8209444.8760.7104490.1152340.5952152.0335431.7946772.087329
1416.38411.6471.7519.8960.7108760.1068730.6040042.0012031.8548732.029532
1532.76823.3123.25120.0610.7114260.0992130.6122132.0015451.8566532.027183
1665.53646.6706.15240.5180.7121280.0938720.6182562.0019731.8923412.019740
17131.07293.17211.44581.7270.7108460.0873180.6235281.9964001.8603712.017054
18262.144186.08421.380164.7040.7098540.0815580.6282961.9972091.8680652.015295
19524.288371.92640.061331.8650.7093930.0764100.6329821.9987001.8737612.014918
201.048.576742.92675.532667.3940.7085090.0720330.6364771.9975101.8854252.011041
212.097.1521.484.079143.5701.340.5090.7076640.0684600.6392051.9976141.9007842.008572
224.194.3042.965.301272.9362.692.3650.7069830.0650730.6419101.9980751.9010662.008465
238.388.6085.924.332520.7275.403.6050.7062350.0620750.6441601.9978861.9078722.007010
2416.777.21611.838.997994.17510.844.8220.7056590.0592570.6464021.9983681.9092062.006961
2533.554.43223.657.2021.902.51321.754.6890.7050400.0566990.6483401.9982441.9136602.005998
2667.108.86447.279.2313.646.15843.633.0730.7045150.0543320.6501831.9985131.9164962.005686
27134.217.72894.497.0067.003.14187.493.8650.7040580.0521770.6518801.9987001.9206912.005219
28268.435.456188.876.72513.468.792175.407.9330.7036210.0501750.6534451.9987591.9232502.004803
29536.870.912377.533.69425.940.182351.593.5120.7032110.0483170.6548941.9988371.9259472.004433
301.073.741.824754.658.90450.032.043704.626.8610.7028310.0465960.6562351.9989181.9287472.004095
312.147.483.6481.508.559.37796.629.2161.411.930.1610.7024780.0449960.6574811.9989951.9313472.003798
324.294.967.2963.015.669.283186.843.7042.828.825.5790.7021400.0435030.6586371.9990391.9336152.003517
338.589.934.5926.028.689.809361.677.4375.667.012.3720.7018320.0421050.6597271.9991221.9357222.003309
3417.179.869.18412.052.423.733700.842.12711.351.581.6060.7015430.0407940.6607491.9991781.9377552.003098


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p=f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
122010101
243110201
384120301
4167330502
5329350504
66417790908
71281981009010
82564219221091310
95128340423093410
101.02415878796697310
112.048294147146136913910
124.096526264261259924810
138.192944483460468945710
1416.3841.751882868881985110
1532.7683.2511.6421.6081.62591.60710
1665.5366.1523.1073.0443.06793.06610
17131.07211.4455.8335.6115.71995.70710
18262.14421.38010.91310.46610.708910.65310
19524.28840.06120.43119.62919.998920.04410
201.048.57675.53238.46337.06837.680937.83310
212.097.152143.57072.99170.57871.790971.76110
224.194.304272.936138.533134.402136.4769136.44110
238.388.608520.727263.717257.009260.3219260.38710
2416.777.216994.175503.067491.107497.2569496.90010
2533.554.4321.902.513962.081940.431951.5499950.94510
2667.108.8643.646.1581.842.6121.803.5451.823.64191.822.49810
27134.217.7287.003.1413.536.2823.466.8583.501.21993.501.90310
28268.435.45613.468.7926.798.2046.670.5876.735.44496.733.32910
29536.870.91225.940.18213.089.11312.851.06812.971.699912.968.46410
301.073.741.82450.032.04325.237.91924.794.12325.022.435925.009.58910
312.147.483.64896.629.21648.726.73347.902.48248.321.645948.307.55210
324.294.967.296186.843.70494.197.91092.645.79393.428.345993.415.34010
338.589.934.592361.677.437182.292.584179.384.852180.834.0479180.843.37110
3417.179.869.184700.842.127353.144.922347.697.204350.415.5659350.426.54310


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
242110002
385142012
4168353023
532199108254
664371720144136
7128391920144147
825687394818251826
951223410712740734873
101.024522244278100153104165
112.0481.116540576207338218353
124.0962.3361.1681.168452702459723
138.1924.8762.4452.4319491.4611.0161.450
1416.3849.8964.9574.9391.9632.9372.0622.934
1532.76820.06110.04210.0194.1235.8484.1975.893
1665.53640.51820.24120.2778.60711.6948.51711.700
17131.07281.72740.82840.89917.52323.41517.42323.366
18262.144164.70482.38182.32335.54746.86135.62246.674
19524.288331.865165.750166.11572.37893.53372.46193.493
201.048.576667.394333.560333.834147.079186.456147.207186.652
212.097.1521.340.509670.523669.986297.757372.241298.333372.178
224.194.3042.692.3651.346.6341.345.731602.777743.627602.422743.539
238.388.6085.403.6052.704.3422.699.2631.218.5251.484.1301.216.8201.484.130
2416.777.21610.844.8225.425.0855.419.7372.458.0662.963.7422.457.0832.965.931
2533.554.43221.754.68910.880.62810.874.0614.955.1165.920.9014.952.7685.925.904
2667.108.86443.633.07321.820.99921.812.0749.979.63711.834.0039.979.90311.839.530
27134.217.72887.493.86543.750.00843.743.85720.091.68523.653.71420.092.56923.655.897
28268.435.456175.407.93387.716.35587.691.57840.421.72547.278.06740.432.48647.275.655
29536.870.912351.593.512175.813.720175.779.79281.302.72394.483.93081.322.05894.484.801
301.073.741.824704.626.861352.355.185352.271.676163.437.898188.862.966163.463.247188.862.750
312.147.483.6481.411.930.161706.045.857705.884.304328.456.700377.514.627328.450.734377.508.100
324.294.967.2962.828.825.5791.414.550.8441.414.274.735659.815.321754.606.439659.816.283754.587.536
338.589.934.5925.667.012.3722.833.766.2522.833.246.1201.325.068.7651.508.472.3031.325.064.8581.508.406.446
3417.179.869.18411.351.581.6065.676.305.7435.675.275.8632.660.271.2423.015.518.2952.660.315.3463.015.476.723


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 71, 31, 23, 547, 113, 269, 467, 353, 197, 1303, 79, 19, 827, 1, 313, 1987, 349, 733, 1151,
Found in Database : 3, 71, 31, 23, 547, 113, 269, 467, 353, 197, 1303, 79, 19, 827, 313, 1987, 349, 733, 1151, 89, 139, 449, 929, 1439, 43, 509, 73, 179, 367, 1153, 3607, 613, 1249, 1907, 431,
Found in Database : 3, 19, 23, 31, 43, 71, 73, 79, 89, 97, 113, 139,