Inhaltsverzeichnis

Development of
Algorithmic Constructions

18:36:26
Deutsch
18.Apr 2024

Polynom = x^2+4x-139

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) = 139 = 139
f(1) = 67 = 67
f(2) = 127 = 127
f(3) = 59 = 59
f(4) = 107 = 107
f(5) = 47 = 47
f(6) = 79 = 79
f(7) = 31 = 31
f(8) = 43 = 43
f(9) = 11 = 11
f(10) = 1 = 1
f(11) = 13 = 13
f(12) = 53 = 53
f(13) = 41 = 41
f(14) = 113 = 113
f(15) = 73 = 73
f(16) = 181 = 181
f(17) = 109 = 109
f(18) = 257 = 257
f(19) = 149 = 149
f(20) = 341 = 11*31
f(21) = 193 = 193
f(22) = 433 = 433
f(23) = 241 = 241
f(24) = 533 = 13*41
f(25) = 293 = 293
f(26) = 641 = 641
f(27) = 349 = 349
f(28) = 757 = 757
f(29) = 409 = 409
f(30) = 881 = 881
f(31) = 473 = 11*43
f(32) = 1013 = 1013
f(33) = 541 = 541
f(34) = 1153 = 1153
f(35) = 613 = 613
f(36) = 1301 = 1301
f(37) = 689 = 13*53
f(38) = 1457 = 31*47
f(39) = 769 = 769
f(40) = 1621 = 1621
f(41) = 853 = 853
f(42) = 1793 = 11*163
f(43) = 941 = 941
f(44) = 1973 = 1973
f(45) = 1033 = 1033
f(46) = 2161 = 2161
f(47) = 1129 = 1129
f(48) = 2357 = 2357
f(49) = 1229 = 1229
f(50) = 2561 = 13*197
f(51) = 1333 = 31*43
f(52) = 2773 = 47*59
f(53) = 1441 = 11*131
f(54) = 2993 = 41*73
f(55) = 1553 = 1553
f(56) = 3221 = 3221
f(57) = 1669 = 1669
f(58) = 3457 = 3457
f(59) = 1789 = 1789
f(60) = 3701 = 3701
f(61) = 1913 = 1913
f(62) = 3953 = 59*67
f(63) = 2041 = 13*157
f(64) = 4213 = 11*383
f(65) = 2173 = 41*53
f(66) = 4481 = 4481
f(67) = 2309 = 2309
f(68) = 4757 = 67*71
f(69) = 2449 = 31*79
f(70) = 5041 = 71*71
f(71) = 2593 = 2593
f(72) = 5333 = 5333
f(73) = 2741 = 2741
f(74) = 5633 = 43*131
f(75) = 2893 = 11*263
f(76) = 5941 = 13*457
f(77) = 3049 = 3049
f(78) = 6257 = 6257
f(79) = 3209 = 3209
f(80) = 6581 = 6581
f(81) = 3373 = 3373
f(82) = 6913 = 31*223
f(83) = 3541 = 3541
f(84) = 7253 = 7253
f(85) = 3713 = 47*79
f(86) = 7601 = 11*691
f(87) = 3889 = 3889
f(88) = 7957 = 73*109
f(89) = 4069 = 13*313
f(90) = 8321 = 53*157
f(91) = 4253 = 4253
f(92) = 8693 = 8693
f(93) = 4441 = 4441
f(94) = 9073 = 43*211
f(95) = 4633 = 41*113
f(96) = 9461 = 9461
f(97) = 4829 = 11*439
f(98) = 9857 = 9857
f(99) = 5029 = 47*107
f(100) = 10261 = 31*331

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+4x-139

f(0)=139
f(1)=67
f(2)=127
f(3)=59
f(4)=107
f(5)=47
f(6)=79
f(7)=31
f(8)=43
f(9)=11
f(10)=1
f(11)=13
f(12)=53
f(13)=41
f(14)=113
f(15)=73
f(16)=181
f(17)=109
f(18)=257
f(19)=149
f(20)=1
f(21)=193
f(22)=433
f(23)=241
f(24)=1
f(25)=293
f(26)=641
f(27)=349
f(28)=757
f(29)=409
f(30)=881
f(31)=1
f(32)=1013
f(33)=541
f(34)=1153
f(35)=613
f(36)=1301
f(37)=1
f(38)=1
f(39)=769
f(40)=1621
f(41)=853
f(42)=163
f(43)=941
f(44)=1973
f(45)=1033
f(46)=2161
f(47)=1129
f(48)=2357
f(49)=1229
f(50)=197
f(51)=1
f(52)=1
f(53)=131
f(54)=1
f(55)=1553
f(56)=3221
f(57)=1669
f(58)=3457
f(59)=1789
f(60)=3701
f(61)=1913
f(62)=1
f(63)=157
f(64)=383
f(65)=1
f(66)=4481
f(67)=2309
f(68)=71
f(69)=1
f(70)=1
f(71)=2593
f(72)=5333
f(73)=2741
f(74)=1
f(75)=263
f(76)=457
f(77)=3049
f(78)=6257
f(79)=3209
f(80)=6581
f(81)=3373
f(82)=223
f(83)=3541
f(84)=7253
f(85)=1
f(86)=691
f(87)=3889
f(88)=1
f(89)=313
f(90)=1
f(91)=4253
f(92)=8693
f(93)=4441
f(94)=211
f(95)=1
f(96)=9461
f(97)=439
f(98)=9857
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+4x-139 could be written as f(y)= y^2-143 with x=y-2

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

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

139, 67, 127, 59, 107, 47, 79, 31, 43, 11, 1, 13, 53, 41, 113, 73, 181, 109, 257, 149, 1, 193, 433, 241, 1, 293, 641, 349, 757, 409, 881, 1, 1013, 541, 1153, 613, 1301, 1, 1, 769, 1621, 853, 163, 941, 1973, 1033, 2161, 1129, 2357, 1229, 197, 1, 1, 131, 1, 1553, 3221, 1669, 3457, 1789, 3701, 1913, 1, 157, 383, 1, 4481, 2309, 71, 1, 1, 2593, 5333, 2741, 1, 263, 457, 3049, 6257, 3209, 6581, 3373, 223, 3541, 7253, 1, 691, 3889, 1, 313, 1, 4253, 8693, 4441, 211, 1, 9461, 439, 9857, 1, 331, 5233, 821, 5441, 11093, 5653, 281, 5869, 1087, 6089, 12401, 1, 12853, 1, 13313, 521, 13781, 1, 269, 659, 14741, 1, 15233, 7741, 15733, 7993, 1, 1, 1289, 1, 1571, 283, 379, 9041, 18353, 1, 461, 1, 19457, 1, 20021, 1, 20593, 1, 683, 10733, 463, 1, 1, 11329, 22961, 11633, 2143, 11941, 1861, 12253, 24821, 12569, 25457, 12889, 607, 1, 863, 1231, 347, 13873, 28081, 1093, 1, 14549, 499, 1, 30133, 15241, 2803, 503, 31541, 389, 32257, 1, 1, 16673, 33713, 17041, 1, 1583, 35201, 17789, 877, 18169, 36721, 18553, 37493, 1, 38273, 19333, 1, 1, 39857, 20129, 557, 20533, 619, 487, 42293, 1, 1, 1979, 1, 22189, 631, 22613, 643, 23041, 1, 23473, 47381, 23909, 1, 1873, 1, 24793, 50033, 587, 1, 25693, 1103, 1, 52757, 1, 53681, 27073, 4201, 27541, 761, 1, 56501, 919, 57457, 491, 1, 29453, 59393, 1, 60373, 2341, 1427, 1, 1, 593, 63361, 2903, 64373, 32441, 65393, 1063, 523, 33469, 5189, 829, 68501, 34513, 6323, 1, 1, 35573, 1667, 36109, 2347, 547, 1801, 2861, 74933, 1, 1, 1, 77141, 733, 563, 39409, 1, 1, 80513, 571, 1, 41113, 2671, 887, 1423, 983, 85121, 42853, 86293, 43441, 87473, 4003, 88661, 3433, 1523, 1459, 2221, 45833, 1741, 46441, 93493, 1, 1, 653, 95957, 1123, 7477, 1193, 98453, 1, 99713, 1, 100981, 1, 1, 51449, 2203, 1, 1327, 4057, 1, 1, 107441, 54049, 9887, 54709, 1, 55373, 2591, 56041, 2399, 56713, 1, 57389, 1, 5279, 1, 1433, 1, 59441, 1097, 60133, 1657, 1031, 3947, 4733, 11251, 62233, 1, 1, 1783, 1201, 128021, 1091, 129457, 65089, 1, 1, 10181, 66541, 133813, 67273, 135281, 1447, 839, 68749, 138241, 69493, 12703, 70241, 141233, 1, 1, 1, 797, 2339, 1997, 1559, 3593, 1, 148853, 947, 150401, 1, 11689, 76369, 153521, 77153, 5003, 1901, 14243, 1831, 158261, 1187, 159857, 80329, 161461, 1, 1, 1223, 1049, 7523, 2819, 1, 3169, 84389, 5471, 85213, 171253, 1, 1, 1, 1, 1, 4099, 1213, 1663, 89393, 179633, 1, 1217, 1283, 183041, 1, 3931, 92809, 186481, 1, 1759, 94541, 1, 95413, 3617, 96289, 1, 97169, 15017, 3163, 196993, 1, 1009, 99833, 1531, 1, 202357, 9239, 204161, 102533, 1, 1, 6703, 1, 209621, 105269, 211457, 106189, 19391, 1, 215153, 108041, 1, 1847, 1, 1, 220757, 110849, 3323, 10163, 7243, 112741, 226433, 1, 228341, 114649, 230257, 8893, 2939, 2711, 21283, 117541, 236053, 3823, 238001, 119489, 239957, 2273, 241921, 121453, 1, 11131, 3463, 123433, 3491, 124429, 249857, 125429, 251861, 126433, 1999, 4111, 1, 1, 257921, 129469, 5531, 130489, 2063, 1, 264053, 132541, 5021, 12143, 1, 134609, 20789, 135649, 272341, 136693, 5839, 1, 1, 138793, 1, 1307, 1259, 140909, 282881, 1, 1109, 1, 1, 1, 1, 1, 291457, 1367, 293621, 147353, 5581, 1879, 22921, 149533, 7321, 1, 27487, 151729, 304561, 152833, 2207, 153941, 1601, 3299, 2239, 1, 1, 1, 315701, 1, 2917, 159541, 320213, 1, 1, 1, 324757, 3467, 2287, 164093, 329333, 1, 1, 166393, 333941, 1279, 10847, 1493, 338581, 15443, 340913, 1, 343253, 172213, 345601, 4229, 347957, 174569, 8147, 175753, 32063, 2999, 355073, 3361, 1, 1, 1, 2473, 1877, 1, 7759, 16631, 5479, 184153, 2267, 185369, 371957, 1, 8707, 1, 376853, 189041, 34483, 1277, 8123, 191509, 384257, 192749, 7297, 193993, 1, 195241, 391733, 17863, 394241, 6379, 9677, 1567, 399281, 200273, 401813, 1, 3779, 15601, 1, 1607, 1, 5009, 13291, 1, 7027, 207941, 417173, 209233, 3923, 19139, 1, 4507, 424961, 213133, 7247, 4987, 430193, 215753, 1609, 217069, 1, 218389, 3877, 16901, 440753, 4703, 443413, 3319, 446081, 1, 1597, 1, 451441, 1, 6221, 4297, 35141, 229093, 10687, 230449, 1, 231809, 1, 233173, 467713, 234541, 470453, 1, 473201, 18253, 475957, 7699, 1, 1, 4261, 241441, 2971, 1747, 1, 1, 1, 245629, 37897, 1, 1453, 248441, 2753, 249853, 501121, 3539, 3847, 3559, 1, 1, 509653, 1787, 1811, 1, 515381, 3271, 3301, 6043, 16811, 6373, 3517, 262741, 47903, 1, 1, 1, 532757, 2039, 1, 268573, 8039, 1, 2749, 24683, 544501, 272989, 8171, 1, 3041, 2579, 5077, 5903, 556373, 3821, 1, 1, 562357, 1, 565361, 1, 43721, 2663, 10781, 286453, 4523, 1, 577457, 289489, 9839, 291013, 1, 292541, 1, 22621, 589681, 1, 53887, 1823, 10099, 298693, 598933, 2657, 602033, 301793, 1, 1, 1, 1, 1, 306473, 1, 308041, 8461, 1, 1, 311189, 623957, 1, 1, 24181, 15373, 1637, 633473, 10243, 8059, 319129, 639857, 4787, 643061, 29303, 646273, 7901, 1, 1, 2927, 6173, 1, 328789, 1, 330413, 60223, 10711, 665713, 333673, 1, 25793, 9209, 5711, 675541, 1, 678833, 30931, 1, 7951, 22111, 1, 688757, 5851, 1, 346873, 13121, 8501, 1, 350213, 702101, 7487, 3581, 2699, 1, 1, 1, 27457, 1, 32603, 2297, 1, 1, 5099, 2477, 1, 729173, 365441, 1, 1, 5147, 1, 2131, 4691, 1, 372313, 746353, 374041, 2851, 375773, 11243, 34319, 17599, 29173, 760241, 2557, 11399, 1, 18713, 1, 770741, 386249, 1, 388009, 777781, 389773, 60101, 3083, 16699, 1, 6977, 395089, 1, 1, 2099, 1, 799093, 400441, 1, 30941, 806261, 404029, 17231, 405829, 73951, 407633, 817073, 409441, 2801, 411253, 26591, 413069, 63689, 414889, 1, 1, 835253, 1, 838913, 10253, 842581, 422209, 7489, 13679, 11971, 1, 1, 1, 857333, 1, 21001, 431449, 864757, 433309, 11897, 1, 5351, 1, 1, 438913, 879701, 1, 1, 6607, 4597, 444553, 890993, 446441, 81343, 9539, 898561, 1, 902357, 1, 29231, 454033, 909973, 455941, 1, 1, 22381, 2179, 921457, 461689, 1, 463613, 929153, 465541, 12781, 467473, 1, 1, 30347, 3391, 7211, 473293, 948533, 1, 4271, 1, 956341, 1, 20431, 481109, 3407, 15583, 968113, 485041, 1, 487013, 1, 2029, 89087, 490969, 2153, 1, 21019, 6971, 991873, 1, 16879, 1, 9173, 1,

6. Sequence of the polynom (only primes)

139, 67, 127, 59, 107, 47, 79, 31, 43, 11, 13, 53, 41, 113, 73, 181, 109, 257, 149, 193, 433, 241, 293, 641, 349, 757, 409, 881, 1013, 541, 1153, 613, 1301, 769, 1621, 853, 163, 941, 1973, 1033, 2161, 1129, 2357, 1229, 197, 131, 1553, 3221, 1669, 3457, 1789, 3701, 1913, 157, 383, 4481, 2309, 71, 2593, 5333, 2741, 263, 457, 3049, 6257, 3209, 6581, 3373, 223, 3541, 7253, 691, 3889, 313, 4253, 8693, 4441, 211, 9461, 439, 9857, 331, 5233, 821, 5441, 11093, 5653, 281, 5869, 1087, 6089, 12401, 12853, 13313, 521, 13781, 269, 659, 14741, 15233, 7741, 15733, 7993, 1289, 1571, 283, 379, 9041, 18353, 461, 19457, 20021, 20593, 683, 10733, 463, 11329, 22961, 11633, 2143, 11941, 1861, 12253, 24821, 12569, 25457, 12889, 607, 863, 1231, 347, 13873, 28081, 1093, 14549, 499, 30133, 15241, 2803, 503, 31541, 389, 32257, 16673, 33713, 17041, 1583, 35201, 17789, 877, 18169, 36721, 18553, 37493, 38273, 19333, 39857, 20129, 557, 20533, 619, 487, 42293, 1979, 22189, 631, 22613, 643, 23041, 23473, 47381, 23909, 1873, 24793, 50033, 587, 25693, 1103, 52757, 53681, 27073, 4201, 27541, 761, 56501, 919, 57457, 491, 29453, 59393, 60373, 2341, 1427, 593, 63361, 2903, 64373, 32441, 65393, 1063, 523, 33469, 5189, 829, 68501, 34513, 6323, 35573, 1667, 36109, 2347, 547, 1801, 2861, 74933, 77141, 733, 563, 39409, 80513, 571, 41113, 2671, 887, 1423, 983, 85121, 42853, 86293, 43441, 87473, 4003, 88661, 3433, 1523, 1459, 2221, 45833, 1741, 46441, 93493, 653, 95957, 1123, 7477, 1193, 98453, 99713, 100981, 51449, 2203, 1327, 4057, 107441, 54049, 9887, 54709, 55373, 2591, 56041, 2399, 56713, 57389, 5279, 1433, 59441, 1097, 60133, 1657, 1031, 3947, 4733, 11251, 62233, 1783, 1201, 128021, 1091, 129457, 65089, 10181, 66541, 133813, 67273, 135281, 1447, 839, 68749, 138241, 69493, 12703, 70241, 141233, 797, 2339, 1997, 1559, 3593, 148853, 947, 150401, 11689, 76369, 153521, 77153, 5003, 1901, 14243, 1831, 158261, 1187, 159857, 80329, 161461, 1223, 1049, 7523, 2819, 3169, 84389, 5471, 85213, 171253, 4099, 1213, 1663, 89393, 179633, 1217, 1283, 183041, 3931, 92809, 186481, 1759, 94541, 95413, 3617, 96289, 97169, 15017, 3163, 196993, 1009, 99833, 1531, 202357, 9239, 204161, 102533, 6703, 209621, 105269, 211457, 106189, 19391, 215153, 108041, 1847, 220757, 110849, 3323, 10163, 7243, 112741, 226433, 228341, 114649, 230257, 8893, 2939, 2711, 21283, 117541, 236053, 3823, 238001, 119489, 239957, 2273, 241921, 121453, 11131, 3463, 123433, 3491, 124429, 249857, 125429, 251861, 126433, 1999, 4111, 257921, 129469, 5531, 130489, 2063, 264053, 132541, 5021, 12143, 134609, 20789, 135649, 272341, 136693, 5839, 138793, 1307, 1259, 140909, 282881, 1109, 291457, 1367, 293621, 147353, 5581, 1879, 22921, 149533, 7321, 27487, 151729, 304561, 152833, 2207, 153941, 1601, 3299, 2239, 315701, 2917, 159541, 320213, 324757, 3467, 2287, 164093, 329333, 166393, 333941, 1279, 10847, 1493, 338581, 15443, 340913, 343253, 172213, 345601, 4229, 347957, 174569, 8147, 175753, 32063, 2999, 355073, 3361, 2473, 1877, 7759, 16631, 5479, 184153, 2267, 185369, 371957, 8707, 376853, 189041, 34483, 1277, 8123, 191509, 384257, 192749, 7297, 193993, 195241, 391733, 17863, 394241, 6379, 9677, 1567, 399281, 200273, 401813, 3779, 15601, 1607, 5009, 13291, 7027, 207941, 417173, 209233, 3923, 19139, 4507, 424961, 213133, 7247, 4987, 430193, 215753, 1609, 217069, 218389, 3877, 16901, 440753, 4703, 443413, 3319, 446081, 1597, 451441, 6221, 4297, 35141, 229093, 10687, 230449, 231809, 233173, 467713, 234541, 470453, 473201, 18253, 475957, 7699, 4261, 241441, 2971, 1747, 245629, 37897, 1453, 248441, 2753, 249853, 501121, 3539, 3847, 3559, 509653, 1787, 1811, 515381, 3271, 3301, 6043, 16811, 6373, 3517, 262741, 47903, 532757, 2039, 268573, 8039, 2749, 24683, 544501, 272989, 8171, 3041, 2579, 5077, 5903, 556373, 3821, 562357, 565361, 43721, 2663, 10781, 286453, 4523, 577457, 289489, 9839, 291013, 292541, 22621, 589681, 53887, 1823, 10099, 298693, 598933, 2657, 602033, 301793, 306473, 308041, 8461, 311189, 623957, 24181, 15373, 1637, 633473, 10243, 8059, 319129, 639857, 4787, 643061, 29303, 646273, 7901, 2927, 6173, 328789, 330413, 60223, 10711, 665713, 333673, 25793, 9209, 5711, 675541, 678833, 30931, 7951, 22111, 688757, 5851, 346873, 13121, 8501, 350213, 702101, 7487, 3581, 2699, 27457, 32603, 2297, 5099, 2477, 729173, 365441, 5147, 2131, 4691, 372313, 746353, 374041, 2851, 375773, 11243, 34319, 17599, 29173, 760241, 2557, 11399, 18713, 770741, 386249, 388009, 777781, 389773, 60101, 3083, 16699, 6977, 395089, 2099, 799093, 400441, 30941, 806261, 404029, 17231, 405829, 73951, 407633, 817073, 409441, 2801, 411253, 26591, 413069, 63689, 414889, 835253, 838913, 10253, 842581, 422209, 7489, 13679, 11971, 857333, 21001, 431449, 864757, 433309, 11897, 5351, 438913, 879701, 6607, 4597, 444553, 890993, 446441, 81343, 9539, 898561, 902357, 29231, 454033, 909973, 455941, 22381, 2179, 921457, 461689, 463613, 929153, 465541, 12781, 467473, 30347, 3391, 7211, 473293, 948533, 4271, 956341, 20431, 481109, 3407, 15583, 968113, 485041, 487013, 2029, 89087, 490969, 2153, 21019, 6971, 991873, 16879, 9173,

7. Distribution of the primes

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

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)
11010551.0000000.5000001.0000000.0000000.0000000.000000
21008131500.8100000.3100000.8100008.1000006.20000010.000000
31.0007561965600.7560000.1960000.7560009.3333336.32258111.200000
410.0007.4241.4036.0210.7424000.1403000.7424009.8201067.15816310.751785
5100.00073.15010.94762.2030.7315000.1094700.7315009.8531797.80256610.331008
61.000.000725.52189.101636.4200.7255210.0891010.7255219.9182638.13930810.231339
710.000.0007.207.275753.9416.453.3340.7207280.0753940.7207289.9339308.46164510.140056
8100.000.00071.702.1756.530.74365.171.4320.7170220.0653070.7170229.9485848.66214110.098878
91.000.000.000714.201.35557.614.962656.586.3930.7142010.0576150.7142019.9606658.82211410.074758
1010.000.000.0007.119.912.947515.564.2026.604.348.7450.7119910.0515560.7119919.9690568.94844310.058614


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
389541.1250000.6250000.5000001.8000001.6666672.000000
41616881.0000000.5000000.5000001.7777781.6000002.000000
5322914150.9062500.4375000.4687501.8125001.7500001.875000
6645523320.8593750.3593750.5000001.8965521.6428572.133333
712810339640.8046880.3046880.5000001.8727271.6956522.000000
8256200681320.7812500.2656250.5156251.9417481.7435902.062500
95123981162820.7773440.2265620.5507811.9900001.7058822.136364
101.0247762005760.7578120.1953120.5625001.9497491.7241382.042553
112.0481.5393601.1790.7514650.1757810.5756841.9832471.8000002.046875
124.0963.0556482.4070.7458500.1582030.5876461.9850551.8000002.041561
138.1926.0851.1764.9090.7427980.1435550.5992431.9918171.8148152.039468
1416.38412.0992.1709.9290.7384640.1324460.6060181.9883321.8452382.022612
1532.76824.0694.05020.0190.7345280.1235960.6109311.9893381.8663592.016215
1665.53648.0167.52040.4960.7326660.1147460.6179201.9949311.8567902.022878
17131.07295.83214.00481.8280.7311400.1068420.6242981.9958351.8622342.020644
18262.144191.12026.174164.9460.7290650.0998460.6292191.9943231.8690372.015765
19524.288381.13049.344331.7860.7269480.0941160.6328321.9941921.8852302.011482
201.048.576760.52993.094667.4350.7252970.0887810.6365161.9954581.8866332.011643
212.097.1521.518.161176.5821.341.5790.7239160.0842010.6397151.9961911.8968142.010052
224.194.3043.030.572335.3602.695.2120.7225450.0799560.6425891.9962121.8991742.008985
238.388.6086.049.414639.9645.409.4500.7211460.0762900.6448571.9961291.9082902.007059
2416.777.21612.076.1361.222.35210.853.7840.7197940.0728580.6469361.9962491.9100322.006449
2533.554.43224.112.8912.340.66321.772.2280.7186200.0697570.6488631.9967391.9148852.005957
2667.108.86448.156.5174.486.56143.669.9560.7175880.0668550.6507331.9971271.9167912.005764
27134.217.72896.182.0828.616.13287.565.9500.7166120.0641950.6524171.9972811.9204312.005176
28268.435.456192.125.33416.580.096175.545.2380.7157230.0617660.6539571.9975171.9243092.004720
29536.870.912383.801.33331.948.842351.852.4910.7148860.0595090.6553761.9976611.9269392.004341
301.073.741.824766.789.31261.639.922705.149.3900.7141280.0574070.6567221.9978811.9293322.004105
312.147.483.6481.532.052.441119.077.0631.412.975.3780.7134180.0554500.6579681.9980101.9318172.003796
324.294.967.2963.061.236.042230.319.4062.830.916.6360.7127500.0536250.6591241.9981271.9342052.003515
338.589.934.5926.117.093.784445.964.7795.671.129.0050.7121230.0519170.6602061.9982431.9362882.003284
3417.179.869.18412.224.060.228864.422.70511.359.637.5230.7115340.0503160.6612181.9983441.9383212.003065


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
122200101
243210201
385410302
4168531322
53214775342
66423111283102
7128391326143202
8256682147323312
95121163581573542
101.024200661349531002
112.04836011025017431812
124.09664820144732733162
138.1921.17637979759235792
1416.3842.1707041.4661.10131.0642
1532.7684.0501.3172.7332.00432.0412
1665.5367.5202.4565.0643.75733.7582
17131.07214.0044.6039.4016.98037.0192
18262.14426.1748.65317.52113.100313.0692
19524.28849.34416.38632.95824.752324.5872
201.048.57693.09431.00962.08546.569346.5202
212.097.152176.58258.858117.72488.302388.2752
224.194.304335.360111.748223.612167.5293167.8262
238.388.608639.964213.350426.614319.8693320.0902
2416.777.2161.222.352407.600814.752610.8953611.4522
2533.554.4322.340.663779.9701.560.6931.170.61831.170.0402
2667.108.8644.486.5611.494.9342.991.6272.242.86132.243.6952
27134.217.7288.616.1322.870.9465.745.1864.308.33334.307.7942
28268.435.45616.580.0965.526.45911.053.6378.290.44938.289.6422
29536.870.91231.948.84210.650.07121.298.77115.974.414315.974.4232
301.073.741.82461.639.92220.547.17641.092.74630.821.228330.818.6892
312.147.483.648119.077.06339.690.46379.386.60059.541.573359.535.4852
324.294.967.296230.319.40676.771.508153.547.898115.165.9553115.153.4462
338.589.934.592445.964.779148.654.582297.310.197222.991.5433222.973.2312
3417.179.869.184864.422.705288.136.646576.286.059432.219.1523432.203.5482


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
121100100
242110200
384220202
4168442312
53215965352
664321913105143
7128643826249247
8256132775545234420
951228215612692578350
101.024576314262175113176112
112.0481.179640539343244354238
124.0962.4071.3261.081692502694519
138.1924.9092.6572.2521.3751.0581.4111.065
1416.3849.9295.3284.6012.7842.1992.7812.165
1532.76820.01910.7019.3185.6224.4335.6114.353
1665.53640.49621.51318.98311.2299.04011.2368.991
17131.07281.82843.36338.46522.53518.43322.55718.303
18262.144164.94686.97677.97045.18737.26245.34537.152
19524.288331.786174.545157.24190.67375.20390.58375.327
201.048.576667.435349.794317.641181.224152.370181.547152.294
212.097.1521.341.579700.648640.931362.703308.150363.057307.669
224.194.3042.695.2121.404.5791.290.633725.451621.219726.968621.574
238.388.6085.409.4502.812.6202.596.8301.452.3381.251.9051.453.6301.251.577
2416.777.21610.853.7845.633.9055.219.8792.906.4632.519.9802.906.5522.520.789
2533.554.43221.772.22811.282.04410.490.1845.813.7405.072.1655.813.0375.073.286
2667.108.86443.669.95622.597.66921.072.28711.629.50010.204.50011.627.84010.208.116
27134.217.72887.565.95045.241.44542.324.50523.260.25420.523.48023.260.61320.521.603
28268.435.456175.545.23890.573.20584.972.03346.521.56441.243.67446.532.32441.247.676
29536.870.912351.852.491181.330.633170.521.85893.052.94282.868.25993.070.36882.860.922
301.073.741.824705.149.390363.017.852342.131.538186.122.714166.454.478186.148.421166.423.777
312.147.483.6481.412.975.378726.683.429686.291.949372.290.940334.207.926372.309.525334.166.987
324.294.967.2962.830.916.6361.454.495.2271.376.421.409744.621.289670.859.735744.653.990670.781.622
338.589.934.5925.671.129.0052.911.092.3742.760.036.6311.489.326.4481.346.270.2021.489.329.1161.346.203.239
3417.179.869.18411.359.637.5235.826.163.7815.533.473.7422.978.752.1802.701.081.1692.978.739.3512.701.064.823


8. Check for existing Integer Sequences by OEIS

Found in Database : 139, 67, 127, 59, 107, 47, 79, 31, 43, 11, 1, 13, 53, 41, 113, 73, 181, 109, 257, 149,
Found in Database : 139, 67, 127, 59, 107, 47, 79, 31, 43, 11, 13, 53, 41, 113, 73, 181, 109, 257, 149, 193, 433, 241, 293, 641, 349, 757, 409, 881, 1013, 541, 1153, 613, 1301, 769,
Found in Database : 11, 13, 31, 41, 43, 47, 53, 59, 67, 71, 73, 79, 107, 109, 113, 127, 131, 139, 149,