Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:54:36
Deutsch
19.Apr 2024

Polynom = x^2-108x+13

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) = 13 = 13
f(1) = 47 = 47
f(2) = 199 = 199
f(3) = 151 = 151
f(4) = 403 = 13*31
f(5) = 251 = 251
f(6) = 599 = 599
f(7) = 347 = 347
f(8) = 787 = 787
f(9) = 439 = 439
f(10) = 967 = 967
f(11) = 527 = 17*31
f(12) = 1139 = 17*67
f(13) = 611 = 13*47
f(14) = 1303 = 1303
f(15) = 691 = 691
f(16) = 1459 = 1459
f(17) = 767 = 13*59
f(18) = 1607 = 1607
f(19) = 839 = 839
f(20) = 1747 = 1747
f(21) = 907 = 907
f(22) = 1879 = 1879
f(23) = 971 = 971
f(24) = 2003 = 2003
f(25) = 1031 = 1031
f(26) = 2119 = 13*163
f(27) = 1087 = 1087
f(28) = 2227 = 17*131
f(29) = 1139 = 17*67
f(30) = 2327 = 13*179
f(31) = 1187 = 1187
f(32) = 2419 = 41*59
f(33) = 1231 = 1231
f(34) = 2503 = 2503
f(35) = 1271 = 31*41
f(36) = 2579 = 2579
f(37) = 1307 = 1307
f(38) = 2647 = 2647
f(39) = 1339 = 13*103
f(40) = 2707 = 2707
f(41) = 1367 = 1367
f(42) = 2759 = 31*89
f(43) = 1391 = 13*107
f(44) = 2803 = 2803
f(45) = 1411 = 17*83
f(46) = 2839 = 17*167
f(47) = 1427 = 1427
f(48) = 2867 = 47*61
f(49) = 1439 = 1439
f(50) = 2887 = 2887
f(51) = 1447 = 1447
f(52) = 2899 = 13*223
f(53) = 1451 = 1451
f(54) = 2903 = 2903
f(55) = 1451 = 1451
f(56) = 2899 = 13*223
f(57) = 1447 = 1447
f(58) = 2887 = 2887
f(59) = 1439 = 1439
f(60) = 2867 = 47*61
f(61) = 1427 = 1427
f(62) = 2839 = 17*167
f(63) = 1411 = 17*83
f(64) = 2803 = 2803
f(65) = 1391 = 13*107
f(66) = 2759 = 31*89
f(67) = 1367 = 1367
f(68) = 2707 = 2707
f(69) = 1339 = 13*103
f(70) = 2647 = 2647
f(71) = 1307 = 1307
f(72) = 2579 = 2579
f(73) = 1271 = 31*41
f(74) = 2503 = 2503
f(75) = 1231 = 1231
f(76) = 2419 = 41*59
f(77) = 1187 = 1187
f(78) = 2327 = 13*179
f(79) = 1139 = 17*67
f(80) = 2227 = 17*131
f(81) = 1087 = 1087
f(82) = 2119 = 13*163
f(83) = 1031 = 1031
f(84) = 2003 = 2003
f(85) = 971 = 971
f(86) = 1879 = 1879
f(87) = 907 = 907
f(88) = 1747 = 1747
f(89) = 839 = 839
f(90) = 1607 = 1607
f(91) = 767 = 13*59
f(92) = 1459 = 1459
f(93) = 691 = 691
f(94) = 1303 = 1303
f(95) = 611 = 13*47
f(96) = 1139 = 17*67
f(97) = 527 = 17*31
f(98) = 967 = 967
f(99) = 439 = 439
f(100) = 787 = 787

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-108x+13

f(0)=13
f(1)=47
f(2)=199
f(3)=151
f(4)=31
f(5)=251
f(6)=599
f(7)=347
f(8)=787
f(9)=439
f(10)=967
f(11)=17
f(12)=67
f(13)=1
f(14)=1303
f(15)=691
f(16)=1459
f(17)=59
f(18)=1607
f(19)=839
f(20)=1747
f(21)=907
f(22)=1879
f(23)=971
f(24)=2003
f(25)=1031
f(26)=163
f(27)=1087
f(28)=131
f(29)=1
f(30)=179
f(31)=1187
f(32)=41
f(33)=1231
f(34)=2503
f(35)=1
f(36)=2579
f(37)=1307
f(38)=2647
f(39)=103
f(40)=2707
f(41)=1367
f(42)=89
f(43)=107
f(44)=2803
f(45)=83
f(46)=167
f(47)=1427
f(48)=61
f(49)=1439
f(50)=2887
f(51)=1447
f(52)=223
f(53)=1451
f(54)=2903
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
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-108x+13 could be written as f(y)= y^2-2903 with x=y+54

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-54
f'(x)>2x-109 with x > 54

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

13, 47, 199, 151, 31, 251, 599, 347, 787, 439, 967, 17, 67, 1, 1303, 691, 1459, 59, 1607, 839, 1747, 907, 1879, 971, 2003, 1031, 163, 1087, 131, 1, 179, 1187, 41, 1231, 2503, 1, 2579, 1307, 2647, 103, 2707, 1367, 89, 107, 2803, 83, 167, 1427, 61, 1439, 2887, 1447, 223, 1451, 2903, 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, 233, 173, 461, 1, 1, 409, 941, 1, 1193, 661, 1453, 1, 1721, 929, 1997, 1069, 2281, 1213, 1, 1361, 1, 1, 3181, 1669, 269, 1, 3821, 1993, 4153, 2161, 4493, 2333, 1, 193, 5197, 2689, 1, 1, 349, 3061, 1, 3253, 6701, 3449, 1, 1, 577, 3853, 1, 1, 641, 4273, 8761, 1, 541, 277, 311, 4933, 10093, 397, 1, 5393, 1, 433, 11497, 5869, 11981, 6113, 12473, 6361, 12973, 389, 1, 6869, 13997, 7129, 1117, 7393, 15053, 1, 503, 7933, 16141, 8209, 283, 653, 421, 1, 1049, 1, 18413, 1, 19001, 9649, 19597, 9949, 20201, 10253, 1601, 1, 21433, 1, 1697, 1, 22697, 677, 1373, 11833, 23993, 12161, 1, 1, 25321, 12829, 25997, 1013, 26681, 13513, 883, 1, 419, 1, 1693, 857, 2269, 14929, 643, 373, 2381, 15661, 773, 16033, 32441, 1, 1, 1, 33961, 1321, 739, 1033, 2089, 1381, 1171, 1, 37097, 18749, 1, 1, 38713, 631, 3041, 19973, 40361, 20389, 3169, 20809, 2473, 1249, 727, 21661, 43753, 22093, 44621, 1733, 45497, 1, 46381, 1801, 1153, 1, 719, 593, 49081, 1, 1, 25229, 3917, 25693, 51853, 26161, 1, 26633, 881, 27109, 659, 587, 55661, 1, 56633, 1, 3389, 1709, 58601, 2273, 977, 1, 60601, 30553, 61613, 1, 62633, 31573, 1, 32089, 2087, 32609, 1, 1949, 3929, 821, 67853, 1103, 1, 34729, 69997, 2713, 71081, 607, 72173, 2797, 1559, 36913, 74381, 1, 4441, 2237, 1, 38593, 5981, 39161, 78893, 39733, 1, 1, 81197, 1319, 82361, 619, 811, 42061, 84713, 1, 1, 709, 1, 3373, 88301, 44453, 89513, 45061, 2213, 45673, 91961, 1129, 1, 769, 94441, 47533, 1, 2833, 96953, 827, 98221, 49429, 99497, 50069, 3251, 1, 991, 51361, 1, 4001, 104681, 1699, 105997, 3137, 1, 53993, 1, 1163, 8461, 55333, 111341, 56009, 8669, 683, 1, 57373, 1297, 58061, 1, 1433, 1, 1, 2917, 60149, 121001, 1, 751, 61561, 123833, 62273, 125261, 62989, 1, 63709, 9857, 64433, 129593, 3833, 1, 1, 1489, 66629, 2851, 67369, 2221, 68113, 136973, 5297, 2347, 1039, 139981, 5413, 141497, 71129, 1, 4229, 4663, 72661, 146093, 73433, 1, 74209, 149197, 1, 11597, 75773, 1, 76561, 153913, 1, 155501, 4597, 9241, 6073, 1051, 1, 160313, 6197, 1951, 81373, 163561, 82189, 1, 83009, 166841, 83833, 997, 2731, 10009, 1, 13217, 1, 173497, 1429, 5651, 1, 2131, 88861, 1, 1, 180281, 1, 181997, 1, 4481, 1, 10909, 1579, 187193, 94033, 188941, 887, 14669, 95789, 192461, 1, 1, 97561, 6323, 98453, 1, 99349, 1, 5897, 201401, 1, 203213, 102061, 205033, 1, 1, 103889, 208697, 1, 1217, 105733, 4519, 106661, 16481, 6329, 12713, 108529, 1, 109469, 219881, 2693, 221773, 1, 4759, 3623, 225581, 8713, 227497, 114229, 3761, 8861, 1, 6833, 233293, 117133, 235241, 1423, 1229, 119089, 18397, 1, 1, 121061, 18701, 122053, 1871, 123049, 2399, 7297, 14653, 125053, 1663, 9697, 253133, 1531, 8231, 1, 1, 1, 1, 1, 6373, 4231, 1, 1, 1201, 1, 267497, 134269, 1, 2879, 2539, 136361, 273773, 137413, 275881, 138469, 2699, 10733, 280121, 140593, 282253, 1, 16729, 142733, 286541, 4639, 288697, 144889, 290861, 2393, 22541, 1, 1, 148153, 22877, 149249, 2287, 1, 1, 1, 304013, 1, 1, 11821, 6563, 154789, 310697, 1, 312941, 1, 315193, 158161, 317453, 159293, 5419, 9437, 1, 161569, 3907, 162713, 25121, 163861, 1901, 5323, 4943, 166169, 333497, 167329, 335821, 1, 338153, 169661, 20029, 1, 342841, 172009, 4159, 173189, 347561, 4253, 349933, 1, 1, 176753, 354701, 177949, 2113, 5779, 359501, 1, 1, 3863, 364333, 182773, 11831, 14153, 369197, 2081, 6299, 14341, 374093, 187661, 6173, 4019, 1409, 190129, 22441, 11257, 29537, 192613, 2371, 193861, 29921, 3307, 5843, 1499, 393997, 1847, 12791, 1931, 9733, 1, 401593, 1, 23773, 1, 406697, 203989, 409261, 1, 411833, 3083, 414413, 1, 32077, 1, 419597, 1, 1, 1979, 24989, 1, 427433, 214373, 430061, 215689, 2591, 16693, 1, 7043, 9319, 1, 440653, 1, 2297, 222329, 14387, 1, 26393, 2711, 34721, 5521, 2719, 3733, 1, 1, 2819, 1759, 462221, 1, 464953, 233161, 7927, 18041, 27673, 13877, 473197, 18253, 2659, 238673, 15443, 3583, 481513, 241453, 484301, 5167, 1, 7879, 489901, 245653, 1, 14533, 1, 248473, 498361, 1, 501197, 5347, 7523, 19441, 506893, 254161, 12433, 19661, 512621, 6269, 1861, 258469, 30493, 15289, 5857, 8431, 1, 1, 527081, 264269, 1, 265729, 17191, 267193, 1723, 268661, 5231, 270133, 1, 1, 1, 1, 547661, 21121, 2767, 4679, 11779, 1, 556601, 1613, 559597, 280549, 3329, 282053, 565613, 1, 1, 1, 12163, 286589, 1, 288109, 8623, 9343, 580793, 22397, 583853, 292693, 586921, 1741, 589997, 295769, 593081, 17489, 35069, 298861, 599273, 300413, 46337, 4507, 605497, 303529, 46817, 305093, 611753, 306661, 614893, 1, 618041, 1, 36541, 1, 1789, 6659, 1, 24197, 630713, 316153, 15461, 5209, 637097, 7789, 2551, 320953, 1, 6863, 4283, 19069, 1, 3163, 653197, 327409, 5011, 3697, 659693, 330661, 662953, 25561, 21491, 333929, 1, 1, 672781, 337213, 39769, 1, 679373, 2039, 1, 5107, 52769, 343829, 689321, 1, 53281, 347161, 1, 348833, 1, 1, 14951, 20717, 1, 1, 709433, 3323, 10639, 27481, 1, 11579, 719597, 360649, 15383, 362353, 726413, 2411, 1811, 365773, 43133, 21617, 1, 1913, 740141, 6287, 1, 372661, 747053, 3499, 750521, 28933, 1, 2111, 757481, 29201, 1, 22433, 1, 383113, 8629, 1, 1, 386629, 59617, 9473, 778553, 390161, 60161, 1, 785641, 393709, 3539, 3019, 46633, 23369, 3571, 30697, 11939, 400853, 803501, 1, 807097, 404449, 9109, 406253, 9811, 1, 817933, 6947, 63197, 1, 48541, 13339, 1, 6199, 832493, 417161, 836153, 418993, 27091, 2351, 843497, 1, 1, 1, 20753, 32797, 2957, 25189, 858281, 1, 861997, 431929, 865721, 1, 1, 435661, 2341, 437533, 5189, 439409, 1, 1, 1, 1, 52249, 1,

6. Sequence of the polynom (only primes)

13, 47, 199, 151, 31, 251, 599, 347, 787, 439, 967, 17, 67, 1303, 691, 1459, 59, 1607, 839, 1747, 907, 1879, 971, 2003, 1031, 163, 1087, 131, 179, 1187, 41, 1231, 2503, 2579, 1307, 2647, 103, 2707, 1367, 89, 107, 2803, 83, 167, 1427, 61, 1439, 2887, 1447, 223, 1451, 2903, 233, 173, 461, 409, 941, 1193, 661, 1453, 1721, 929, 1997, 1069, 2281, 1213, 1361, 3181, 1669, 269, 3821, 1993, 4153, 2161, 4493, 2333, 193, 5197, 2689, 349, 3061, 3253, 6701, 3449, 577, 3853, 641, 4273, 8761, 541, 277, 311, 4933, 10093, 397, 5393, 433, 11497, 5869, 11981, 6113, 12473, 6361, 12973, 389, 6869, 13997, 7129, 1117, 7393, 15053, 503, 7933, 16141, 8209, 283, 653, 421, 1049, 18413, 19001, 9649, 19597, 9949, 20201, 10253, 1601, 21433, 1697, 22697, 677, 1373, 11833, 23993, 12161, 25321, 12829, 25997, 1013, 26681, 13513, 883, 419, 1693, 857, 2269, 14929, 643, 373, 2381, 15661, 773, 16033, 32441, 33961, 1321, 739, 1033, 2089, 1381, 1171, 37097, 18749, 38713, 631, 3041, 19973, 40361, 20389, 3169, 20809, 2473, 1249, 727, 21661, 43753, 22093, 44621, 1733, 45497, 46381, 1801, 1153, 719, 593, 49081, 25229, 3917, 25693, 51853, 26161, 26633, 881, 27109, 659, 587, 55661, 56633, 3389, 1709, 58601, 2273, 977, 60601, 30553, 61613, 62633, 31573, 32089, 2087, 32609, 1949, 3929, 821, 67853, 1103, 34729, 69997, 2713, 71081, 607, 72173, 2797, 1559, 36913, 74381, 4441, 2237, 38593, 5981, 39161, 78893, 39733, 81197, 1319, 82361, 619, 811, 42061, 84713, 709, 3373, 88301, 44453, 89513, 45061, 2213, 45673, 91961, 1129, 769, 94441, 47533, 2833, 96953, 827, 98221, 49429, 99497, 50069, 3251, 991, 51361, 4001, 104681, 1699, 105997, 3137, 53993, 1163, 8461, 55333, 111341, 56009, 8669, 683, 57373, 1297, 58061, 1433, 2917, 60149, 121001, 751, 61561, 123833, 62273, 125261, 62989, 63709, 9857, 64433, 129593, 3833, 1489, 66629, 2851, 67369, 2221, 68113, 136973, 5297, 2347, 1039, 139981, 5413, 141497, 71129, 4229, 4663, 72661, 146093, 73433, 74209, 149197, 11597, 75773, 76561, 153913, 155501, 4597, 9241, 6073, 1051, 160313, 6197, 1951, 81373, 163561, 82189, 83009, 166841, 83833, 997, 2731, 10009, 13217, 173497, 1429, 5651, 2131, 88861, 180281, 181997, 4481, 10909, 1579, 187193, 94033, 188941, 887, 14669, 95789, 192461, 97561, 6323, 98453, 99349, 5897, 201401, 203213, 102061, 205033, 103889, 208697, 1217, 105733, 4519, 106661, 16481, 6329, 12713, 108529, 109469, 219881, 2693, 221773, 4759, 3623, 225581, 8713, 227497, 114229, 3761, 8861, 6833, 233293, 117133, 235241, 1423, 1229, 119089, 18397, 121061, 18701, 122053, 1871, 123049, 2399, 7297, 14653, 125053, 1663, 9697, 253133, 1531, 8231, 6373, 4231, 1201, 267497, 134269, 2879, 2539, 136361, 273773, 137413, 275881, 138469, 2699, 10733, 280121, 140593, 282253, 16729, 142733, 286541, 4639, 288697, 144889, 290861, 2393, 22541, 148153, 22877, 149249, 2287, 304013, 11821, 6563, 154789, 310697, 312941, 315193, 158161, 317453, 159293, 5419, 9437, 161569, 3907, 162713, 25121, 163861, 1901, 5323, 4943, 166169, 333497, 167329, 335821, 338153, 169661, 20029, 342841, 172009, 4159, 173189, 347561, 4253, 349933, 176753, 354701, 177949, 2113, 5779, 359501, 3863, 364333, 182773, 11831, 14153, 369197, 2081, 6299, 14341, 374093, 187661, 6173, 4019, 1409, 190129, 22441, 11257, 29537, 192613, 2371, 193861, 29921, 3307, 5843, 1499, 393997, 1847, 12791, 1931, 9733, 401593, 23773, 406697, 203989, 409261, 411833, 3083, 414413, 32077, 419597, 1979, 24989, 427433, 214373, 430061, 215689, 2591, 16693, 7043, 9319, 440653, 2297, 222329, 14387, 26393, 2711, 34721, 5521, 2719, 3733, 2819, 1759, 462221, 464953, 233161, 7927, 18041, 27673, 13877, 473197, 18253, 2659, 238673, 15443, 3583, 481513, 241453, 484301, 5167, 7879, 489901, 245653, 14533, 248473, 498361, 501197, 5347, 7523, 19441, 506893, 254161, 12433, 19661, 512621, 6269, 1861, 258469, 30493, 15289, 5857, 8431, 527081, 264269, 265729, 17191, 267193, 1723, 268661, 5231, 270133, 547661, 21121, 2767, 4679, 11779, 556601, 1613, 559597, 280549, 3329, 282053, 565613, 12163, 286589, 288109, 8623, 9343, 580793, 22397, 583853, 292693, 586921, 1741, 589997, 295769, 593081, 17489, 35069, 298861, 599273, 300413, 46337, 4507, 605497, 303529, 46817, 305093, 611753, 306661, 614893, 618041, 36541, 1789, 6659, 24197, 630713, 316153, 15461, 5209, 637097, 7789, 2551, 320953, 6863, 4283, 19069, 3163, 653197, 327409, 5011, 3697, 659693, 330661, 662953, 25561, 21491, 333929, 672781, 337213, 39769, 679373, 2039, 5107, 52769, 343829, 689321, 53281, 347161, 348833, 14951, 20717, 709433, 3323, 10639, 27481, 11579, 719597, 360649, 15383, 362353, 726413, 2411, 1811, 365773, 43133, 21617, 1913, 740141, 6287, 372661, 747053, 3499, 750521, 28933, 2111, 757481, 29201, 22433, 383113, 8629, 386629, 59617, 9473, 778553, 390161, 60161, 785641, 393709, 3539, 3019, 46633, 23369, 3571, 30697, 11939, 400853, 803501, 807097, 404449, 9109, 406253, 9811, 817933, 6947, 63197, 48541, 13339, 6199, 832493, 417161, 836153, 418993, 27091, 2351, 843497, 20753, 32797, 2957, 25189, 858281, 861997, 431929, 865721, 435661, 2341, 437533, 5189, 439409, 52249,

7. Distribution of the primes

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

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)
110111011.1000001.0000000.1000000.0000000.0000000.000000
21004837110.4800000.3700000.1100004.3636363.70000011.000000
31.0007294093200.7290000.4090000.32000015.18750011.05405429.090910
410.0007.5122.9274.5850.7512000.2927000.45850010.3045267.15647914.328125
5100.00074.29722.88851.4090.7429700.2288800.5140909.8904427.81961111.212432
61.000.000734.284187.059547.2250.7342840.1870590.5472259.8830918.17279810.644537
710.000.0007.282.2821.574.0575.708.2250.7282280.1574060.5708229.9175288.41476210.431221
8100.000.00072.364.37313.611.79958.752.5740.7236440.1361180.5875269.9370478.64759010.292618
91.000.000.000720.082.023119.974.065600.107.9580.7200820.1199740.6001089.9507818.81397510.214156
1010.000.000.0007.172.605.2101.072.533.7286.100.071.4820.7172610.1072530.6100079.9608178.93971310.164956


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
245411.2500001.0000000.2500001.6666671.333333inf
389811.1250001.0000000.1250001.8000002.0000001.000000
416151320.9375000.8125000.1250001.6666671.6250002.000000
532292360.9062500.7187500.1875001.9333331.7692313.000000
6644837110.7500000.5781250.1718751.6551721.6086961.833333
71286150110.4765620.3906250.0859381.2708331.3513511.000000
8256152110420.5937500.4296880.1640622.4918032.2000003.818182
95123462241220.6757810.4375000.2382812.2763162.0363642.904762
101.0247504153350.7324220.4052730.3271482.1676301.8526792.745902
112.0481.5327367960.7480470.3593750.3886722.0426671.7734942.376119
124.0963.0831.3581.7250.7526860.3315430.4211432.0124021.8451092.167085
138.1926.1532.4583.6950.7510990.3000490.4510501.9957831.8100152.142029
1416.38412.3124.5217.7910.7514650.2759400.4755252.0009751.8393002.108525
1532.76824.4978.36316.1340.7475890.2552190.4923711.9896851.8498122.070851
1665.53648.79315.62433.1690.7445220.2384030.5061191.9917951.8682292.055845
17131.07297.17829.38567.7930.7414090.2241900.5172201.9916381.8807602.043866
18262.144193.76255.061138.7010.7391430.2100410.5291021.9938881.8737792.045949
19524.288386.172103.335282.8370.7365650.1970960.5394691.9930221.8767372.039185
201.048.576769.864195.330574.5340.7342000.1862810.5479181.9935781.8902602.031326
212.097.1521.535.607369.6601.165.9470.7322340.1762680.5559671.9946471.8924902.029379
224.194.3043.062.826702.0132.360.8130.7302350.1673730.5628621.9945381.8990782.024803
238.388.6086.112.5221.336.1764.776.3460.7286690.1592850.5693851.9957131.9033492.023178
2416.777.21612.198.9002.550.3919.648.5090.7271110.1520150.5750961.9957231.9087242.020061
2533.554.43224.350.6194.878.90419.471.7150.7257050.1454030.5803021.9961321.9130022.018106
2667.108.86448.611.3149.352.11039.259.2040.7243650.1393570.5850081.9963071.9168472.016217
27134.217.72897.056.54517.960.31079.096.2350.7231280.1338150.5893131.9965831.9204552.014718
28268.435.456193.810.08134.544.373159.265.7080.7219990.1286880.5933111.9968781.9233732.013569
29536.870.912387.060.98666.540.292320.520.6940.7209570.1239410.5970161.9971151.9262272.012490
301.073.741.824773.076.010128.351.550644.724.4600.7199830.1195370.6004461.9972981.9289302.011491
312.147.483.6481.544.213.063247.877.1131.296.335.9500.7190800.1154270.6036531.9974921.9312362.010682
324.294.967.2963.084.777.703479.290.1342.605.487.5690.7182310.1115930.6066371.9976371.9335802.009886
338.589.934.5926.162.665.708927.780.5865.234.885.1220.7174290.1080080.6094211.9977661.9357392.009177
3417.179.869.18412.312.460.3441.797.863.13410.514.597.2100.7166800.1046490.6120301.9979111.9378112.008563


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
123210012
244310013
388440314
41613940517
532231310010112
664372017016120
7128502624616820
8256110614938163620
951222411610896169220
101.0244152102051851619420
112.0487363673693381636220
124.0961.3586776816521667020
138.1922.4581.2361.2221.230161.19220
1416.3844.5212.2542.2672.273162.21220
1532.7688.3634.1744.1894.177164.15020
1665.53615.6247.8287.7967.831167.75720
17131.07229.38514.75614.62914.7061614.64320
18262.14455.06127.70627.35527.4661627.55920
19524.288103.33552.01151.32451.5431651.75620
201.048.576195.33097.94897.38297.7161697.57820
212.097.152369.660185.581184.079184.86616184.75820
224.194.304702.013352.449349.564350.78316351.19420
238.388.6081.336.176671.023665.153667.51316668.62720
2416.777.2162.550.3911.279.9441.270.4471.274.742161.275.61320
2533.554.4324.878.9042.448.7722.430.1322.439.151162.439.71720
2667.108.8649.352.1104.692.7824.659.3284.676.081164.675.99320
27134.217.72817.960.3109.010.3758.949.9358.980.661168.979.61320
28268.435.45634.544.37317.325.76717.218.60617.272.6671617.271.67020
29536.870.91266.540.29233.369.02633.171.26633.270.8541633.269.40220
301.073.741.824128.351.55064.370.11163.981.43964.178.8311664.172.68320
312.147.483.648247.877.113124.299.401123.577.712123.940.22016123.936.85720
324.294.967.296479.290.134240.314.995238.975.139239.647.62316239.642.47520
338.589.934.592927.780.586465.128.134462.652.452463.888.14316463.892.40720
3417.179.869.1841.797.863.134901.257.488896.605.646898.948.66516898.914.43320


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
241100001
381100001
4162200101
5326330501
66411561604
712811561604
82564222201110165
9512122626041244116
101.02433516517099739964
112.048796393403226174227169
124.0961.725862863478375486386
138.1923.6951.8321.8639748291.037855
1416.3847.7913.8873.9042.0891.7822.0931.827
1532.76816.1348.0738.0614.2503.7774.2503.857
1665.53633.16916.52516.6448.6017.8848.7097.975
17131.07267.79333.74334.05017.59316.13017.75316.317
18262.144138.70169.22969.47236.15533.06336.05933.424
19524.288282.837141.125141.71273.61067.81473.42267.991
201.048.576574.534286.755287.779149.153138.240148.884138.257
212.097.1521.165.947582.520583.427301.796281.362301.451281.338
224.194.3042.360.8131.179.4641.181.349609.616571.143609.206570.848
238.388.6084.776.3462.387.4752.388.8711.230.8871.157.4741.230.5261.157.459
2416.777.2169.648.5094.823.0394.825.4702.482.3972.341.8792.481.0452.343.188
2533.554.43219.471.7159.732.9279.738.7885.002.7034.736.1715.000.9494.731.892
2667.108.86439.259.20419.625.92119.633.28310.071.0989.557.35910.073.5559.557.192
27134.217.72879.096.23539.548.06839.548.16720.270.69819.278.17720.270.75219.276.608
28268.435.456159.265.70879.624.16379.641.54540.768.84438.853.53040.775.60438.867.730
29536.870.912320.520.694160.251.874160.268.82081.969.16878.275.46981.983.77878.292.279
301.073.741.824644.724.460322.352.088322.372.372164.735.750157.598.711164.767.790157.622.209
312.147.483.6481.296.335.950648.169.930648.166.020330.975.712317.169.545331.002.022317.188.671
324.294.967.2962.605.487.5691.302.749.5791.302.737.990664.749.033637.967.000664.744.424638.027.112
338.589.934.5925.234.885.1222.617.470.5922.617.414.5301.334.655.3751.282.745.5771.334.649.7781.282.834.392
3417.179.869.18410.514.597.2105.257.373.9705.257.223.2402.678.967.3092.578.319.6352.678.923.6962.578.386.570


8. Check for existing Integer Sequences by OEIS

Found in Database : 13, 47, 199, 151, 31, 251, 599, 347, 787, 439, 967, 17, 67, 1, 1303, 691, 1459, 59, 1607, 839,
Found in Database : 13, 47, 199, 151, 31, 251, 599, 347, 787, 439, 967, 17, 67, 1303, 691, 1459, 59, 1607, 839, 1747, 907, 1879, 971, 2003, 1031, 163, 1087, 131, 179, 1187, 41, 1231, 2503, 2579, 1307, 2647, 103,
Found in Database : 13, 17, 31, 41, 47, 59, 61, 67, 83, 89, 103, 107, 131,