Inhaltsverzeichnis

Development of
Algorithmic Constructions

01:46:49
Deutsch
19.Apr 2024

Polynom = x^2-138x+131

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) = 131 = 131
f(1) = 3 = 3
f(2) = 141 = 3*47
f(3) = 137 = 137
f(4) = 405 = 3*3*3*3*5
f(5) = 267 = 3*89
f(6) = 661 = 661
f(7) = 393 = 3*131
f(8) = 909 = 3*3*101
f(9) = 515 = 5*103
f(10) = 1149 = 3*383
f(11) = 633 = 3*211
f(12) = 1381 = 1381
f(13) = 747 = 3*3*83
f(14) = 1605 = 3*5*107
f(15) = 857 = 857
f(16) = 1821 = 3*607
f(17) = 963 = 3*3*107
f(18) = 2029 = 2029
f(19) = 1065 = 3*5*71
f(20) = 2229 = 3*743
f(21) = 1163 = 1163
f(22) = 2421 = 3*3*269
f(23) = 1257 = 3*419
f(24) = 2605 = 5*521
f(25) = 1347 = 3*449
f(26) = 2781 = 3*3*3*103
f(27) = 1433 = 1433
f(28) = 2949 = 3*983
f(29) = 1515 = 3*5*101
f(30) = 3109 = 3109
f(31) = 1593 = 3*3*3*59
f(32) = 3261 = 3*1087
f(33) = 1667 = 1667
f(34) = 3405 = 3*5*227
f(35) = 1737 = 3*3*193
f(36) = 3541 = 3541
f(37) = 1803 = 3*601
f(38) = 3669 = 3*1223
f(39) = 1865 = 5*373
f(40) = 3789 = 3*3*421
f(41) = 1923 = 3*641
f(42) = 3901 = 47*83
f(43) = 1977 = 3*659
f(44) = 4005 = 3*3*5*89
f(45) = 2027 = 2027
f(46) = 4101 = 3*1367
f(47) = 2073 = 3*691
f(48) = 4189 = 59*71
f(49) = 2115 = 3*3*5*47
f(50) = 4269 = 3*1423
f(51) = 2153 = 2153
f(52) = 4341 = 3*1447
f(53) = 2187 = 3*3*3*3*3*3*3
f(54) = 4405 = 5*881
f(55) = 2217 = 3*739
f(56) = 4461 = 3*1487
f(57) = 2243 = 2243
f(58) = 4509 = 3*3*3*167
f(59) = 2265 = 3*5*151
f(60) = 4549 = 4549
f(61) = 2283 = 3*761
f(62) = 4581 = 3*3*509
f(63) = 2297 = 2297
f(64) = 4605 = 3*5*307
f(65) = 2307 = 3*769
f(66) = 4621 = 4621
f(67) = 2313 = 3*3*257
f(68) = 4629 = 3*1543
f(69) = 2315 = 5*463
f(70) = 4629 = 3*1543
f(71) = 2313 = 3*3*257
f(72) = 4621 = 4621
f(73) = 2307 = 3*769
f(74) = 4605 = 3*5*307
f(75) = 2297 = 2297
f(76) = 4581 = 3*3*509
f(77) = 2283 = 3*761
f(78) = 4549 = 4549
f(79) = 2265 = 3*5*151
f(80) = 4509 = 3*3*3*167
f(81) = 2243 = 2243
f(82) = 4461 = 3*1487
f(83) = 2217 = 3*739
f(84) = 4405 = 5*881
f(85) = 2187 = 3*3*3*3*3*3*3
f(86) = 4341 = 3*1447
f(87) = 2153 = 2153
f(88) = 4269 = 3*1423
f(89) = 2115 = 3*3*5*47
f(90) = 4189 = 59*71
f(91) = 2073 = 3*691
f(92) = 4101 = 3*1367
f(93) = 2027 = 2027
f(94) = 4005 = 3*3*5*89
f(95) = 1977 = 3*659
f(96) = 3901 = 47*83
f(97) = 1923 = 3*641
f(98) = 3789 = 3*3*421
f(99) = 1865 = 5*373
f(100) = 3669 = 3*1223

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-138x+131

f(0)=131
f(1)=3
f(2)=47
f(3)=137
f(4)=5
f(5)=89
f(6)=661
f(7)=1
f(8)=101
f(9)=103
f(10)=383
f(11)=211
f(12)=1381
f(13)=83
f(14)=107
f(15)=857
f(16)=607
f(17)=1
f(18)=2029
f(19)=71
f(20)=743
f(21)=1163
f(22)=269
f(23)=419
f(24)=521
f(25)=449
f(26)=1
f(27)=1433
f(28)=983
f(29)=1
f(30)=3109
f(31)=59
f(32)=1087
f(33)=1667
f(34)=227
f(35)=193
f(36)=3541
f(37)=601
f(38)=1223
f(39)=373
f(40)=421
f(41)=641
f(42)=1
f(43)=659
f(44)=1
f(45)=2027
f(46)=1367
f(47)=691
f(48)=1
f(49)=1
f(50)=1423
f(51)=2153
f(52)=1447
f(53)=1
f(54)=881
f(55)=739
f(56)=1487
f(57)=2243
f(58)=167
f(59)=151
f(60)=4549
f(61)=761
f(62)=509
f(63)=2297
f(64)=307
f(65)=769
f(66)=4621
f(67)=257
f(68)=1543
f(69)=463
f(70)=1
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-138x+131 could be written as f(y)= y^2-4630 with x=y+69

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-69
f'(x)>2x-139 with x > 68

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

131, 3, 47, 137, 5, 89, 661, 1, 101, 103, 383, 211, 1381, 83, 107, 857, 607, 1, 2029, 71, 743, 1163, 269, 419, 521, 449, 1, 1433, 983, 1, 3109, 59, 1087, 1667, 227, 193, 3541, 601, 1223, 373, 421, 641, 1, 659, 1, 2027, 1367, 691, 1, 1, 1423, 2153, 1447, 1, 881, 739, 1487, 2243, 167, 151, 4549, 761, 509, 2297, 307, 769, 4621, 257, 1543, 463, 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, 277, 233, 1, 199, 191, 433, 727, 179, 1, 1931, 349, 251, 1213, 173, 461, 2939, 1, 1097, 347, 1217, 1, 4019, 701, 293, 2293, 1, 829, 5171, 1, 619, 2887, 1993, 1031, 1279, 367, 2273, 3517, 2417, 1, 7691, 1319, 2713, 1, 1, 1471, 9059, 1549, 353, 977, 1, 1709, 10499, 1, 733, 5623, 3833, 653, 12011, 409, 4177, 6397, 1451, 2221, 2719, 2311, 1571, 7207, 1, 499, 1, 863, 5273, 8053, 1093, 1, 16979, 2879, 5857, 1787, 673, 3079, 1, 3181, 431, 1, 6673, 3389, 1, 1, 1, 1, 1, 1237, 4519, 3821, 7753, 1, 2659, 809, 24611, 4159, 937, 12823, 1733, 4391, 26699, 1, 9137, 2777, 9377, 1583, 28859, 4871, 1973, 14983, 3371, 5119, 31091, 1049, 3539, 1, 1, 5501, 6679, 1877, 11393, 1, 11657, 1, 35771, 6029, 1, 18493, 1, 6301, 38219, 1, 4339, 3947, 13297, 6719, 40739, 2287, 1, 21013, 14153, 2383, 43331, 1459, 14737, 1, 5011, 7591, 9199, 7741, 1, 23677, 15937, 1609, 48731, 911, 16553, 1, 3373, 2837, 51539, 8669, 17497, 5297, 5939, 1, 54419, 9151, 1231, 27943, 18793, 9479, 557, 643, 19457, 29437, 19793, 1109, 1, 10151, 1, 1, 1, 2099, 1, 1, 1, 32533, 4373, 1, 1, 3733, 1, 6827, 22937, 3853, 69899, 1, 4733, 1, 8011, 12109, 1, 2459, 2753, 37447, 25153, 12671, 15319, 1429, 25913, 39157, 26297, 883, 80051, 1, 27073, 40903, 1831, 13831, 83579, 14029, 9419, 8537, 28657, 1, 87179, 4877, 1, 1, 29873, 1, 1933, 3049, 30697, 1, 3457, 15661, 18919, 1, 10651, 48247, 32377, 3259, 98411, 5503, 1, 1, 6733, 5647, 102299, 17159, 34537, 10427, 1, 17599, 1801, 1, 797, 54133, 36313, 18269, 110291, 1, 37217, 56167, 1, 6317, 1, 19181, 38593, 58237, 1, 3929, 118571, 1, 13331, 60343, 8093, 1, 122819, 6863, 1, 12497, 41897, 2341, 127139, 1, 8573, 64663, 4817, 21799, 1277, 4409, 14779, 66877, 1, 22541, 1, 1, 45833, 69127, 46337, 1553, 1579, 23549, 47353, 71413, 3191, 24061, 145139, 1, 1811, 14747, 49417, 1, 1, 2789, 10093, 1619, 50993, 8543, 154571, 5179, 52057, 78487, 1, 26431, 1, 26701, 17891, 80917, 54217, 5449, 164291, 9173, 55313, 83383, 11173, 3119, 169259, 28349, 1, 1, 2131, 28909, 174299, 29191, 3911, 88423, 59233, 29759, 179411, 2003, 1, 90997, 60953, 1, 36919, 30911, 1, 93607, 20899, 6299, 189851, 1, 1, 953, 12893, 32381, 2749, 3631, 65657, 1, 1123, 11093, 200579, 33581, 1, 101653, 22691, 1, 206051, 6899, 23099, 1, 1, 35111, 1, 11807, 71153, 107197, 71777, 1, 2617, 1, 1, 110023, 1637, 1, 1627, 37309, 24979, 1, 75577, 1, 2137, 12757, 15373, 115783, 77513, 12973, 1033, 1, 1, 118717, 1, 39901, 48079, 40231, 1, 121687, 81457, 8179, 246371, 1, 82793, 124693, 16693, 13967, 252419, 42239, 1, 1, 28499, 1, 258539, 43261, 5791, 1, 87553, 1, 264731, 2953, 88937, 1, 89633, 4999, 1, 45341, 91033, 137077, 10193, 9209, 277331, 46399, 31051, 140263, 18773, 47111, 6037, 15823, 1, 28697, 96017, 16063, 290219, 1, 1, 146743, 1, 49279, 296771, 9929, 3691, 2543, 100393, 1, 60679, 5639, 101873, 1489, 1153, 3433, 310091, 51869, 104113, 156733, 6991, 1, 316859, 52999, 1, 32027, 107137, 53759, 323699, 18047, 1, 163573, 109433, 6101, 330611, 11059, 110977, 167047, 4139, 1193, 1, 1, 1, 170557, 1607, 1, 7333, 19213, 1, 1, 23293, 19477, 351779, 1, 118057, 35537, 39619, 59629, 358979, 1, 2677, 181303, 1, 1, 1, 1361, 2083, 184957, 1, 1, 74719, 1, 125353, 2657, 1, 12659, 381011, 63709, 42611, 192373, 25733, 1, 388499, 1, 130337, 39227, 2791, 2437, 1, 66221, 26573, 199933, 1, 1427, 1, 13499, 45139, 203767, 136273, 68351, 82279, 1, 137993, 2333, 1, 4643, 419171, 70079, 140593, 211543, 9431, 70951, 2557, 71389, 15913, 1, 1399, 72269, 434939, 2693, 29173, 219463, 1453, 24533, 1, 1, 148537, 1, 49811, 74941, 90199, 75391, 50411, 1, 1, 15259, 1567, 25583, 153953, 231613, 1, 8629, 1, 1, 2207, 47147, 1, 79039, 475619, 1, 10631, 239893, 1499, 80429, 483971, 5393, 162257, 244087, 163193, 27277, 98479, 82301, 1, 248317, 55339, 16649, 500891, 83719, 1, 252583, 33773, 1, 3889, 9461, 170777, 1, 1, 28703, 518099, 1, 1, 261223, 58211, 87559, 8929, 17609, 1, 5651, 177553, 89021, 107119, 29837, 2017, 1, 180497, 2011, 544451, 90989, 182473, 274453, 1, 1559, 5479, 92479, 61819, 55787, 1, 93479, 1, 31327, 37693, 2069, 189473, 31663, 2063, 1, 191497, 288007, 64171, 1, 1, 97021, 21617, 2897, 1, 19609, 589811, 1, 1, 3581, 39733, 1, 3463, 100109, 4271, 1, 1, 101149, 608459, 1, 13591, 1, 204913, 1741, 1, 6883, 207017, 1, 208073, 3863, 1, 104831, 210193, 316087, 23473, 21179, 5953, 1, 1, 2999, 1, 1, 646619, 36013, 216617, 65147, 217697, 36373, 1, 109661, 43973, 1847, 73651, 110749, 14173, 22259, 24793, 335527, 224233, 1, 1, 1, 226433, 340477, 227537, 7603, 9661, 114599, 229753, 345463, 15391, 1, 695939, 116269, 77699, 1, 234217, 117389, 706019, 39317, 47293, 2129, 4027, 1, 716171, 23929, 239857, 360637, 26777, 1, 1, 121351, 1, 1, 1, 24499, 736691, 41023, 246713, 6287, 1, 1, 7253, 124799, 2477, 75227, 1, 125959, 1, 126541, 1879, 381373, 254833, 127709, 4021, 2851, 257177, 386647, 258353, 1, 155719, 1, 260713, 2861, 87299, 26249, 789251, 131839, 1, 397303, 53093, 1, 799979, 44543, 267857, 80537, 269057, 1, 2927, 135431, 54293, 6917, 10099, 1, 821651, 27449, 1, 413557, 5879, 138461, 1871, 1, 278753, 419047, 279977, 1, 3361, 140909, 4787, 424573, 18911, 1, 1, 142759, 31793, 86027,

6. Sequence of the polynom (only primes)

131, 3, 47, 137, 5, 89, 661, 101, 103, 383, 211, 1381, 83, 107, 857, 607, 2029, 71, 743, 1163, 269, 419, 521, 449, 1433, 983, 3109, 59, 1087, 1667, 227, 193, 3541, 601, 1223, 373, 421, 641, 659, 2027, 1367, 691, 1423, 2153, 1447, 881, 739, 1487, 2243, 167, 151, 4549, 761, 509, 2297, 307, 769, 4621, 257, 1543, 463, 277, 233, 199, 191, 433, 727, 179, 1931, 349, 251, 1213, 173, 461, 2939, 1097, 347, 1217, 4019, 701, 293, 2293, 829, 5171, 619, 2887, 1993, 1031, 1279, 367, 2273, 3517, 2417, 7691, 1319, 2713, 1471, 9059, 1549, 353, 977, 1709, 10499, 733, 5623, 3833, 653, 12011, 409, 4177, 6397, 1451, 2221, 2719, 2311, 1571, 7207, 499, 863, 5273, 8053, 1093, 16979, 2879, 5857, 1787, 673, 3079, 3181, 431, 6673, 3389, 1237, 4519, 3821, 7753, 2659, 809, 24611, 4159, 937, 12823, 1733, 4391, 26699, 9137, 2777, 9377, 1583, 28859, 4871, 1973, 14983, 3371, 5119, 31091, 1049, 3539, 5501, 6679, 1877, 11393, 11657, 35771, 6029, 18493, 6301, 38219, 4339, 3947, 13297, 6719, 40739, 2287, 21013, 14153, 2383, 43331, 1459, 14737, 5011, 7591, 9199, 7741, 23677, 15937, 1609, 48731, 911, 16553, 3373, 2837, 51539, 8669, 17497, 5297, 5939, 54419, 9151, 1231, 27943, 18793, 9479, 557, 643, 19457, 29437, 19793, 1109, 10151, 2099, 32533, 4373, 3733, 6827, 22937, 3853, 69899, 4733, 8011, 12109, 2459, 2753, 37447, 25153, 12671, 15319, 1429, 25913, 39157, 26297, 883, 80051, 27073, 40903, 1831, 13831, 83579, 14029, 9419, 8537, 28657, 87179, 4877, 29873, 1933, 3049, 30697, 3457, 15661, 18919, 10651, 48247, 32377, 3259, 98411, 5503, 6733, 5647, 102299, 17159, 34537, 10427, 17599, 1801, 797, 54133, 36313, 18269, 110291, 37217, 56167, 6317, 19181, 38593, 58237, 3929, 118571, 13331, 60343, 8093, 122819, 6863, 12497, 41897, 2341, 127139, 8573, 64663, 4817, 21799, 1277, 4409, 14779, 66877, 22541, 45833, 69127, 46337, 1553, 1579, 23549, 47353, 71413, 3191, 24061, 145139, 1811, 14747, 49417, 2789, 10093, 1619, 50993, 8543, 154571, 5179, 52057, 78487, 26431, 26701, 17891, 80917, 54217, 5449, 164291, 9173, 55313, 83383, 11173, 3119, 169259, 28349, 2131, 28909, 174299, 29191, 3911, 88423, 59233, 29759, 179411, 2003, 90997, 60953, 36919, 30911, 93607, 20899, 6299, 189851, 953, 12893, 32381, 2749, 3631, 65657, 1123, 11093, 200579, 33581, 101653, 22691, 206051, 6899, 23099, 35111, 11807, 71153, 107197, 71777, 2617, 110023, 1637, 1627, 37309, 24979, 75577, 2137, 12757, 15373, 115783, 77513, 12973, 1033, 118717, 39901, 48079, 40231, 121687, 81457, 8179, 246371, 82793, 124693, 16693, 13967, 252419, 42239, 28499, 258539, 43261, 5791, 87553, 264731, 2953, 88937, 89633, 4999, 45341, 91033, 137077, 10193, 9209, 277331, 46399, 31051, 140263, 18773, 47111, 6037, 15823, 28697, 96017, 16063, 290219, 146743, 49279, 296771, 9929, 3691, 2543, 100393, 60679, 5639, 101873, 1489, 1153, 3433, 310091, 51869, 104113, 156733, 6991, 316859, 52999, 32027, 107137, 53759, 323699, 18047, 163573, 109433, 6101, 330611, 11059, 110977, 167047, 4139, 1193, 170557, 1607, 7333, 19213, 23293, 19477, 351779, 118057, 35537, 39619, 59629, 358979, 2677, 181303, 1361, 2083, 184957, 74719, 125353, 2657, 12659, 381011, 63709, 42611, 192373, 25733, 388499, 130337, 39227, 2791, 2437, 66221, 26573, 199933, 1427, 13499, 45139, 203767, 136273, 68351, 82279, 137993, 2333, 4643, 419171, 70079, 140593, 211543, 9431, 70951, 2557, 71389, 15913, 1399, 72269, 434939, 2693, 29173, 219463, 1453, 24533, 148537, 49811, 74941, 90199, 75391, 50411, 15259, 1567, 25583, 153953, 231613, 8629, 2207, 47147, 79039, 475619, 10631, 239893, 1499, 80429, 483971, 5393, 162257, 244087, 163193, 27277, 98479, 82301, 248317, 55339, 16649, 500891, 83719, 252583, 33773, 3889, 9461, 170777, 28703, 518099, 261223, 58211, 87559, 8929, 17609, 5651, 177553, 89021, 107119, 29837, 2017, 180497, 2011, 544451, 90989, 182473, 274453, 1559, 5479, 92479, 61819, 55787, 93479, 31327, 37693, 2069, 189473, 31663, 2063, 191497, 288007, 64171, 97021, 21617, 2897, 19609, 589811, 3581, 39733, 3463, 100109, 4271, 101149, 608459, 13591, 204913, 1741, 6883, 207017, 208073, 3863, 104831, 210193, 316087, 23473, 21179, 5953, 2999, 646619, 36013, 216617, 65147, 217697, 36373, 109661, 43973, 1847, 73651, 110749, 14173, 22259, 24793, 335527, 224233, 226433, 340477, 227537, 7603, 9661, 114599, 229753, 345463, 15391, 695939, 116269, 77699, 234217, 117389, 706019, 39317, 47293, 2129, 4027, 716171, 23929, 239857, 360637, 26777, 121351, 24499, 736691, 41023, 246713, 6287, 7253, 124799, 2477, 75227, 125959, 126541, 1879, 381373, 254833, 127709, 4021, 2851, 257177, 386647, 258353, 155719, 260713, 2861, 87299, 26249, 789251, 131839, 397303, 53093, 799979, 44543, 267857, 80537, 269057, 2927, 135431, 54293, 6917, 10099, 821651, 27449, 413557, 5879, 138461, 1871, 278753, 419047, 279977, 3361, 140909, 4787, 424573, 18911, 142759, 31793, 86027,

7. Distribution of the primes

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

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)
11010371.0000000.3000001.0000000.0000000.0000000.000000
2100609510.6000000.0900000.6000006.0000003.0000007.285714
31.000693806130.6930000.0800000.69300011.5500008.88888912.019608
410.0007.3885876.8010.7388000.0587000.73880010.6608947.33750011.094617
5100.00073.7864.52869.2580.7378600.0452800.7378609.9872777.71379910.183502
61.000.000729.53637.005692.5310.7295360.0370050.7295369.8871878.1724829.999292
710.000.0007.238.230312.9246.925.3060.7238230.0312920.7238239.9216908.4562639.999994
8100.000.00071.947.7582.716.65469.231.1040.7194780.0271670.7194789.9399668.6815149.996830
91.000.000.000716.266.80523.977.501692.289.3040.7162670.0239770.7162679.9553748.8261159.999685
1010.000.000.0007.137.478.145214.571.7916.922.906.3540.7137480.0214570.7137489.9648318.94888110.000019


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)
123121.5000000.5000001.0000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666672.0000001.500000
388351.0000000.3750000.6250001.6000001.5000001.666667
416164121.0000000.2500000.7500002.0000001.3333332.400000
532286220.8750000.1875000.6875001.7500001.5000001.833333
664558470.8593750.1250000.7343751.9642861.3333332.136364
7128609510.4687500.0703120.3984381.0909091.1250001.085106
8256143211220.5585940.0820310.4765622.3833332.3333332.392157
9512338462920.6601560.0898440.5703122.3636362.1904762.393443
101.024711826290.6943360.0800780.6142582.1035501.7826092.154109
112.0481.4841451.3390.7246090.0708010.6538092.0872011.7682932.128776
124.0963.0002642.7360.7324220.0644530.6679692.0215631.8206902.043316
138.1926.0744875.5870.7414550.0594480.6820072.0246671.8446972.042032
1416.38412.17191111.2600.7428590.0556030.6872562.0037871.8706372.015393
1532.76824.2541.67322.5810.7401730.0510560.6891171.9927701.8364432.005417
1665.53648.4063.09145.3150.7386170.0471650.6914521.9957951.8475792.006776
17131.07296.5495.75690.7930.7366100.0439150.6926961.9945671.8621802.003597
18262.144192.47610.806181.6700.7342380.0412220.6930161.9935581.8773452.000925
19524.288383.58120.391363.1900.7316230.0388930.6927301.9928771.8870071.999174
201.048.576764.87038.659726.2110.7294370.0368680.6925691.9940251.8958851.999535
212.097.1521.525.77773.3281.452.4490.7275470.0349660.6925821.9948191.8967902.000037
224.194.3043.044.330139.3492.904.9810.7258250.0332230.6926011.9952651.9003522.000057
238.388.6086.074.498265.7165.808.7820.7241370.0316760.6924611.9953481.9068381.999594
2416.777.21612.124.070507.61911.616.4510.7226510.0302560.6923941.9958971.9103821.999808
2533.554.43224.204.513971.97423.232.5390.7213510.0289670.6923841.9964021.9147711.999969
2667.108.86448.326.1541.866.03146.460.1230.7201160.0278060.6923101.9965761.9198361.999787
27134.217.72896.507.9913.584.49592.923.4960.7190410.0267070.6923341.9970141.9209192.000070
28268.435.456192.737.6686.898.101185.839.5670.7180040.0256970.6923061.9971161.9244281.999920
29536.870.912384.965.04213.295.549371.669.4930.7170530.0247650.6922881.9973521.9274221.999948
301.073.741.824768.996.49825.653.635743.342.8630.7161840.0238920.6922921.9975751.9294912.000010
312.147.483.6481.536.231.84149.559.5841.486.672.2570.7153640.0230780.6922861.9977101.9318741.999982
324.294.967.2963.069.218.15195.854.2672.973.363.8840.7146080.0223180.6922901.9978871.9341222.000013
338.589.934.5926.132.351.288185.606.9155.946.744.3730.7139000.0216070.6922921.9980181.9363452.000005
3417.179.869.18412.253.276.002359.761.61011.893.514.3920.7132350.0209410.6922941.9981371.9382982.000004


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
121010100
242010110
383110120
4164210130
5326410150
6648610170
71289710180
82562171301380
95124673803880
101.0248277407480
112.0481457137013780
124.0962647256025680
138.1924877479047980
1416.3849117903090380
1532.7681.67371.66501.66580
1665.5363.09173.08303.08380
17131.0725.75675.74805.74880
18262.14410.806710.798010.79880
19524.28820.391720.383020.38380
201.048.57638.659738.651038.65180
212.097.15273.328773.320073.32080
224.194.304139.3497139.3410139.34180
238.388.608265.7167265.7080265.70880
2416.777.216507.6197507.6110507.61180
2533.554.432971.9747971.9660971.96680
2667.108.8641.866.03171.866.02301.866.02380
27134.217.7283.584.49573.584.48703.584.48780
28268.435.4566.898.10176.898.09306.898.09380
29536.870.91213.295.549713.295.541013.295.54180
301.073.741.82425.653.635725.653.627025.653.62780
312.147.483.64849.559.584749.559.576049.559.57680
324.294.967.29695.854.267795.854.259095.854.25980
338.589.934.592185.606.9157185.606.9070185.606.90780
3417.179.869.184359.761.6107359.761.6020359.761.60280


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
243021101
385042111
41612383414
532224176628
6644714321314515
71285117331514517
8256122576436222638
951229215313885507582
101.02462933629217799178175
112.0481.339717621372223373371
124.0962.7361.4811.254758476743759
138.1925.5872.9932.5931.5311.0121.5341.510
1416.38411.2606.0255.2343.0422.0643.0973.057
1532.76822.58111.98710.5936.1564.2736.1535.999
1665.53645.31524.07821.23612.1378.90312.16012.115
17131.07290.79348.27042.52224.13518.18324.28124.194
18262.144181.67096.27185.39848.13236.92248.39148.225
19524.288363.190192.014171.17595.78274.67596.38396.350
201.048.576726.211382.473343.737191.080151.394192.311191.426
212.097.1521.452.449763.693688.755381.007305.732383.100382.610
224.194.3042.904.9811.522.8651.382.115760.672617.160763.814763.335
238.388.6085.808.7823.038.1822.770.5991.518.6661.244.9571.522.6311.522.528
2416.777.21611.616.4516.064.1155.552.3353.031.0922.508.9763.038.8313.037.552
2533.554.43223.232.53912.107.64111.124.8976.050.8605.054.1236.065.7086.061.848
2667.108.86446.460.12324.171.65122.288.47112.079.92610.170.30112.106.08612.103.810
27134.217.72892.923.49648.271.43944.652.05624.120.24920.463.46524.173.18824.166.594
28268.435.456185.839.56796.396.26389.443.30348.170.35241.140.23948.274.58048.254.396
29536.870.912371.669.493192.541.613179.127.87996.226.82282.680.49296.394.20396.367.976
301.073.741.824743.342.863384.618.935358.723.927192.220.961166.092.592192.551.777192.477.533
312.147.483.6481.486.672.257768.342.818718.329.438384.040.915333.544.187384.624.602384.462.553
324.294.967.2962.973.363.8841.535.036.2511.438.327.632767.255.567669.678.953768.370.210768.059.154
338.589.934.5925.946.744.3733.067.013.4432.879.730.9291.532.988.1501.344.149.6381.535.114.0311.534.492.554
3417.179.869.18411.893.514.3926.128.181.3875.765.333.0043.063.167.9472.697.270.0323.067.141.4083.065.935.005


8. Check for existing Integer Sequences by OEIS

Found in Database : 131, 3, 47, 137, 5, 89, 661, 1, 101, 103, 383, 211, 1381, 83, 107, 857, 607, 1, 2029, 71,
Found in Database : 131, 3, 47, 137, 5, 89, 661, 101, 103, 383, 211, 1381, 83, 107, 857, 607, 2029, 71, 743, 1163, 269, 419, 521, 449, 1433, 983, 3109, 59, 1087, 1667, 227, 193, 3541, 601, 1223, 373,
Found in Database : 3, 5, 47, 59, 71, 83, 89, 101, 103, 107, 131, 137,