Inhaltsverzeichnis

Development of
Algorithmic Constructions

19:28:14
Deutsch
19.Apr 2024

Polynom = x^2-128x-7

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) = 7 = 7
f(1) = 67 = 67
f(2) = 259 = 7*37
f(3) = 191 = 191
f(4) = 503 = 503
f(5) = 311 = 311
f(6) = 739 = 739
f(7) = 427 = 7*61
f(8) = 967 = 967
f(9) = 539 = 7*7*11
f(10) = 1187 = 1187
f(11) = 647 = 647
f(12) = 1399 = 1399
f(13) = 751 = 751
f(14) = 1603 = 7*229
f(15) = 851 = 23*37
f(16) = 1799 = 7*257
f(17) = 947 = 947
f(18) = 1987 = 1987
f(19) = 1039 = 1039
f(20) = 2167 = 11*197
f(21) = 1127 = 7*7*23
f(22) = 2339 = 2339
f(23) = 1211 = 7*173
f(24) = 2503 = 2503
f(25) = 1291 = 1291
f(26) = 2659 = 2659
f(27) = 1367 = 1367
f(28) = 2807 = 7*401
f(29) = 1439 = 1439
f(30) = 2947 = 7*421
f(31) = 1507 = 11*137
f(32) = 3079 = 3079
f(33) = 1571 = 1571
f(34) = 3203 = 3203
f(35) = 1631 = 7*233
f(36) = 3319 = 3319
f(37) = 1687 = 7*241
f(38) = 3427 = 23*149
f(39) = 1739 = 37*47
f(40) = 3527 = 3527
f(41) = 1787 = 1787
f(42) = 3619 = 7*11*47
f(43) = 1831 = 1831
f(44) = 3703 = 7*23*23
f(45) = 1871 = 1871
f(46) = 3779 = 3779
f(47) = 1907 = 1907
f(48) = 3847 = 3847
f(49) = 1939 = 7*277
f(50) = 3907 = 3907
f(51) = 1967 = 7*281
f(52) = 3959 = 37*107
f(53) = 1991 = 11*181
f(54) = 4003 = 4003
f(55) = 2011 = 2011
f(56) = 4039 = 7*577
f(57) = 2027 = 2027
f(58) = 4067 = 7*7*83
f(59) = 2039 = 2039
f(60) = 4087 = 61*67
f(61) = 2047 = 23*89
f(62) = 4099 = 4099
f(63) = 2051 = 7*293
f(64) = 4103 = 11*373
f(65) = 2051 = 7*293
f(66) = 4099 = 4099
f(67) = 2047 = 23*89
f(68) = 4087 = 61*67
f(69) = 2039 = 2039
f(70) = 4067 = 7*7*83
f(71) = 2027 = 2027
f(72) = 4039 = 7*577
f(73) = 2011 = 2011
f(74) = 4003 = 4003
f(75) = 1991 = 11*181
f(76) = 3959 = 37*107
f(77) = 1967 = 7*281
f(78) = 3907 = 3907
f(79) = 1939 = 7*277
f(80) = 3847 = 3847
f(81) = 1907 = 1907
f(82) = 3779 = 3779
f(83) = 1871 = 1871
f(84) = 3703 = 7*23*23
f(85) = 1831 = 1831
f(86) = 3619 = 7*11*47
f(87) = 1787 = 1787
f(88) = 3527 = 3527
f(89) = 1739 = 37*47
f(90) = 3427 = 23*149
f(91) = 1687 = 7*241
f(92) = 3319 = 3319
f(93) = 1631 = 7*233
f(94) = 3203 = 3203
f(95) = 1571 = 1571
f(96) = 3079 = 3079
f(97) = 1507 = 11*137
f(98) = 2947 = 7*421
f(99) = 1439 = 1439
f(100) = 2807 = 7*401

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-128x-7

f(0)=7
f(1)=67
f(2)=37
f(3)=191
f(4)=503
f(5)=311
f(6)=739
f(7)=61
f(8)=967
f(9)=11
f(10)=1187
f(11)=647
f(12)=1399
f(13)=751
f(14)=229
f(15)=23
f(16)=257
f(17)=947
f(18)=1987
f(19)=1039
f(20)=197
f(21)=1
f(22)=2339
f(23)=173
f(24)=2503
f(25)=1291
f(26)=2659
f(27)=1367
f(28)=401
f(29)=1439
f(30)=421
f(31)=137
f(32)=3079
f(33)=1571
f(34)=3203
f(35)=233
f(36)=3319
f(37)=241
f(38)=149
f(39)=47
f(40)=3527
f(41)=1787
f(42)=1
f(43)=1831
f(44)=1
f(45)=1871
f(46)=3779
f(47)=1907
f(48)=3847
f(49)=277
f(50)=3907
f(51)=281
f(52)=107
f(53)=181
f(54)=4003
f(55)=2011
f(56)=577
f(57)=2027
f(58)=83
f(59)=2039
f(60)=1
f(61)=89
f(62)=4099
f(63)=293
f(64)=373
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-128x-7 could be written as f(y)= y^2-4103 with x=y+64

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-64
f'(x)>2x-129 with x > 64

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

7, 67, 37, 191, 503, 311, 739, 61, 967, 11, 1187, 647, 1399, 751, 229, 23, 257, 947, 1987, 1039, 197, 1, 2339, 173, 2503, 1291, 2659, 1367, 401, 1439, 421, 137, 3079, 1571, 3203, 233, 3319, 241, 149, 47, 3527, 1787, 1, 1831, 1, 1871, 3779, 1907, 3847, 277, 3907, 281, 107, 181, 4003, 2011, 577, 2027, 83, 2039, 1, 89, 4099, 293, 373, 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, 193, 521, 1, 797, 1, 1, 613, 1373, 761, 239, 1, 283, 1069, 2297, 1229, 2621, 199, 2953, 223, 1, 1733, 331, 1, 571, 2089, 1, 2273, 4733, 1, 5113, 379, 5501, 1, 5897, 3049, 6301, 3253, 1, 3461, 1019, 3673, 7561, 3889, 727, 587, 367, 619, 8893, 4561, 1, 4793, 1, 1, 1471, 479, 10781, 1, 11273, 823, 1, 859, 12281, 6269, 1, 6529, 1, 6793, 1979, 307, 389, 7333, 1, 1087, 15497, 1, 16061, 743, 16633, 8461, 2459, 8753, 2543, 9049, 18397, 9349, 19001, 1, 1783, 1423, 20233, 10273, 907, 10589, 1, 10909, 3163, 1, 991, 1051, 499, 1699, 24121, 1747, 1, 12569, 1, 349, 3739, 1, 1, 13613, 27581, 1, 28297, 1, 29021, 2099, 29753, 15061, 30493, 1, 4463, 15809, 653, 16189, 1, 16573, 33533, 2423, 34313, 1, 3191, 17749, 35897, 18149, 1, 18553, 1, 1, 38333, 19373, 39161, 1, 1, 2887, 40841, 439, 1, 21061, 6079, 21493, 6203, 21929, 4027, 22369, 45181, 3259, 46073, 3323, 1, 1031, 47881, 24169, 6971, 2239, 7103, 1091, 1, 25561, 51593, 3719, 52541, 541, 877, 1, 4951, 1, 7919, 27961, 8059, 769, 941, 28949, 2539, 601, 1, 1, 60413, 1, 2671, 659, 8923, 31489, 1, 32009, 1, 32533, 1, 4723, 66653, 4799, 1, 34129, 773, 937, 1, 1531, 10139, 3251, 72073, 36313, 73181, 1, 74297, 5347, 1, 37993, 2069, 38561, 1009, 39133, 1609, 39709, 79997, 40289, 1, 5839, 1, 5923, 3631, 3823, 84701, 42649, 1753, 709, 1, 43853, 1879, 1, 89533, 1, 1, 1, 91997, 46309, 93241, 46933, 13499, 1, 13679, 48193, 97021, 1, 98297, 1, 99581, 7159, 677, 2207, 1231, 51413, 14783, 52069, 1361, 787, 106121, 1, 107453, 7723, 108793, 1117, 1327, 827, 111497, 5099, 701, 56773, 16319, 1553, 115613, 58153, 5087, 1201, 1, 1, 10891, 1, 2579, 60961, 17519, 61673, 1, 1, 125497, 1, 2081, 829, 128393, 1, 129853, 65293, 131321, 66029, 1, 2903, 19183, 1, 12343, 68261, 137273, 9859, 1013, 9967, 140297, 70529, 3833, 71293, 20479, 6551, 2957, 1, 6367, 73609, 147997, 10627, 149561, 10739, 6571, 2053, 13883, 76753, 1, 77549, 22271, 1667, 1, 79153, 159113, 11423, 2399, 1049, 1, 983, 163997, 3583, 23663, 83233, 23899, 84061, 1579, 3691, 15511, 1, 172297, 1, 173981, 1433, 175673, 88261, 25339, 89113, 25583, 8179, 180797, 1489, 4933, 13099, 8011, 1889, 185993, 1, 953, 94309, 1, 95189, 1, 1, 1409, 2063, 194813, 1997, 1, 14107, 198397, 9059, 200201, 1, 28859, 1, 1, 4451, 205661, 103289, 207497, 14887, 19031, 1, 211193, 1583, 1, 106993, 30703, 2917, 30971, 108869, 218681, 1, 220573, 15823, 1, 15959, 1297, 1, 9839, 1, 32603, 114593, 1, 115561, 10091, 116533, 1, 16787, 235997, 16927, 1, 3229, 239933, 1, 4937, 121453, 34843, 122449, 245897, 123449, 247901, 1, 3011, 17923, 1, 126473, 1109, 1, 36571, 128509, 1, 129533, 1307, 1, 262153, 1709, 264221, 18947, 266297, 133669, 1, 1259, 38639, 1, 1693, 136813, 24971, 137869, 7481, 1, 1, 2857, 281053, 141061, 283193, 1597, 40763, 1, 1, 144289, 6163, 3929, 291833, 1, 294013, 1, 296201, 1, 27127, 149749, 42943, 2473, 1, 6607, 305033, 153073, 307261, 22027, 1789, 2017, 1213, 1, 313993, 157561, 45179, 4289, 45503, 1, 2153, 160969, 1277, 23159, 1, 1, 327673, 164413, 14347, 165569, 1283, 1217, 6829, 15263, 1511, 1, 7219, 1, 341641, 1, 343997, 172589, 346361, 173773, 1, 7607, 50159, 176153, 353501, 2647, 1, 1, 358301, 25679, 9749, 16451, 5953, 2719, 52223, 183389, 52571, 184609, 370441, 185833, 6113, 26723, 34123, 1, 16427, 189529, 4273, 190769, 1, 192013, 2393, 193261, 4357, 17683, 390281, 27967, 3671, 4021, 395321, 4219, 2083, 1, 1, 1, 5233, 202109, 405497, 1, 1, 4177, 1451, 29423, 2141, 9011, 415801, 18959, 59771, 1, 1, 211153, 1, 212461, 426233, 30539, 5167, 30727, 39227, 1, 434141, 217733, 2713, 1, 1, 3613, 442121, 221729, 1, 2897, 447481, 32059, 6719, 3701, 452873, 227113, 1759, 228469, 1, 1, 41911, 4919, 463753, 33223, 1, 1453, 469241, 235309, 471997, 6397, 9689, 1, 68219, 239461, 1993, 240853, 1, 34607, 1, 34807, 488701, 1, 44683, 1, 70619, 247873, 71023, 2801, 21739, 250709, 502841, 1, 505693, 1, 22111, 254993, 3733, 1721, 73471, 257869, 73883, 1, 520073, 260761, 47543, 1, 1, 5381, 11251, 265129, 1, 1, 76379, 1481, 1, 1, 540541, 11783, 543497, 1, 546461, 39139, 2789, 275461, 1, 276953, 7213, 1, 1, 279949, 15173, 3391, 2531, 40423, 24671, 40639, 570461, 25999, 573497, 2687, 3581, 289033, 82799, 7853, 1, 292093, 585721, 41947, 53527, 1, 591881, 296713, 12659, 298261, 85439, 6379, 12269, 13103, 1, 27539, 607421, 43499, 610553, 1901, 1999, 307633, 616841, 1, 12653, 310789, 8093, 1, 626333, 313961, 629513, 1, 7109, 45307, 9491, 318749, 1, 29123, 1, 321961, 92219, 1, 1, 325189, 651997, 46687, 655241, 46919, 59863, 330061, 2389, 331693, 95003, 1, 95471, 7127, 671581, 336613, 1, 1, 18329, 1, 681481, 341569, 2437, 14923, 1, 344893, 98779, 346561, 1, 1, 1741, 1, 701497, 50227, 704861, 1, 6619, 354961, 1, 32423, 4441, 358349, 11777, 360049, 1, 51679, 31531, 1, 2593, 365173, 1, 366889, 105071, 368609, 105563, 10009, 742393, 372061, 3257, 1, 1, 4877, 752797, 1, 756281, 379013, 1, 5683, 1, 16631, 2617, 1931, 1, 55147, 773821, 55399, 777353, 389561, 1, 4397, 2287, 393109, 112571, 35899, 791561, 4457, 1, 56923, 798713, 57179, 4157, 402049, 1, 403849, 10513, 1, 116159, 1, 4721, 4931, 820361, 58727, 823997, 1, 4159, 1, 2137, 8863, 1, 18191, 2549, 1, 5653, 422069, 845981, 2633, 77243, 8689, 6229, 1, 857081, 429469, 122971, 431329, 123503, 433193, 12959, 39551,

6. Sequence of the polynom (only primes)

7, 67, 37, 191, 503, 311, 739, 61, 967, 11, 1187, 647, 1399, 751, 229, 23, 257, 947, 1987, 1039, 197, 2339, 173, 2503, 1291, 2659, 1367, 401, 1439, 421, 137, 3079, 1571, 3203, 233, 3319, 241, 149, 47, 3527, 1787, 1831, 1871, 3779, 1907, 3847, 277, 3907, 281, 107, 181, 4003, 2011, 577, 2027, 83, 2039, 89, 4099, 293, 373, 193, 521, 797, 613, 1373, 761, 239, 283, 1069, 2297, 1229, 2621, 199, 2953, 223, 1733, 331, 571, 2089, 2273, 4733, 5113, 379, 5501, 5897, 3049, 6301, 3253, 3461, 1019, 3673, 7561, 3889, 727, 587, 367, 619, 8893, 4561, 4793, 1471, 479, 10781, 11273, 823, 859, 12281, 6269, 6529, 6793, 1979, 307, 389, 7333, 1087, 15497, 16061, 743, 16633, 8461, 2459, 8753, 2543, 9049, 18397, 9349, 19001, 1783, 1423, 20233, 10273, 907, 10589, 10909, 3163, 991, 1051, 499, 1699, 24121, 1747, 12569, 349, 3739, 13613, 27581, 28297, 29021, 2099, 29753, 15061, 30493, 4463, 15809, 653, 16189, 16573, 33533, 2423, 34313, 3191, 17749, 35897, 18149, 18553, 38333, 19373, 39161, 2887, 40841, 439, 21061, 6079, 21493, 6203, 21929, 4027, 22369, 45181, 3259, 46073, 3323, 1031, 47881, 24169, 6971, 2239, 7103, 1091, 25561, 51593, 3719, 52541, 541, 877, 4951, 7919, 27961, 8059, 769, 941, 28949, 2539, 601, 60413, 2671, 659, 8923, 31489, 32009, 32533, 4723, 66653, 4799, 34129, 773, 937, 1531, 10139, 3251, 72073, 36313, 73181, 74297, 5347, 37993, 2069, 38561, 1009, 39133, 1609, 39709, 79997, 40289, 5839, 5923, 3631, 3823, 84701, 42649, 1753, 709, 43853, 1879, 89533, 91997, 46309, 93241, 46933, 13499, 13679, 48193, 97021, 98297, 99581, 7159, 677, 2207, 1231, 51413, 14783, 52069, 1361, 787, 106121, 107453, 7723, 108793, 1117, 1327, 827, 111497, 5099, 701, 56773, 16319, 1553, 115613, 58153, 5087, 1201, 10891, 2579, 60961, 17519, 61673, 125497, 2081, 829, 128393, 129853, 65293, 131321, 66029, 2903, 19183, 12343, 68261, 137273, 9859, 1013, 9967, 140297, 70529, 3833, 71293, 20479, 6551, 2957, 6367, 73609, 147997, 10627, 149561, 10739, 6571, 2053, 13883, 76753, 77549, 22271, 1667, 79153, 159113, 11423, 2399, 1049, 983, 163997, 3583, 23663, 83233, 23899, 84061, 1579, 3691, 15511, 172297, 173981, 1433, 175673, 88261, 25339, 89113, 25583, 8179, 180797, 1489, 4933, 13099, 8011, 1889, 185993, 953, 94309, 95189, 1409, 2063, 194813, 1997, 14107, 198397, 9059, 200201, 28859, 4451, 205661, 103289, 207497, 14887, 19031, 211193, 1583, 106993, 30703, 2917, 30971, 108869, 218681, 220573, 15823, 15959, 1297, 9839, 32603, 114593, 115561, 10091, 116533, 16787, 235997, 16927, 3229, 239933, 4937, 121453, 34843, 122449, 245897, 123449, 247901, 3011, 17923, 126473, 1109, 36571, 128509, 129533, 1307, 262153, 1709, 264221, 18947, 266297, 133669, 1259, 38639, 1693, 136813, 24971, 137869, 7481, 2857, 281053, 141061, 283193, 1597, 40763, 144289, 6163, 3929, 291833, 294013, 296201, 27127, 149749, 42943, 2473, 6607, 305033, 153073, 307261, 22027, 1789, 2017, 1213, 313993, 157561, 45179, 4289, 45503, 2153, 160969, 1277, 23159, 327673, 164413, 14347, 165569, 1283, 1217, 6829, 15263, 1511, 7219, 341641, 343997, 172589, 346361, 173773, 7607, 50159, 176153, 353501, 2647, 358301, 25679, 9749, 16451, 5953, 2719, 52223, 183389, 52571, 184609, 370441, 185833, 6113, 26723, 34123, 16427, 189529, 4273, 190769, 192013, 2393, 193261, 4357, 17683, 390281, 27967, 3671, 4021, 395321, 4219, 2083, 5233, 202109, 405497, 4177, 1451, 29423, 2141, 9011, 415801, 18959, 59771, 211153, 212461, 426233, 30539, 5167, 30727, 39227, 434141, 217733, 2713, 3613, 442121, 221729, 2897, 447481, 32059, 6719, 3701, 452873, 227113, 1759, 228469, 41911, 4919, 463753, 33223, 1453, 469241, 235309, 471997, 6397, 9689, 68219, 239461, 1993, 240853, 34607, 34807, 488701, 44683, 70619, 247873, 71023, 2801, 21739, 250709, 502841, 505693, 22111, 254993, 3733, 1721, 73471, 257869, 73883, 520073, 260761, 47543, 5381, 11251, 265129, 76379, 1481, 540541, 11783, 543497, 546461, 39139, 2789, 275461, 276953, 7213, 279949, 15173, 3391, 2531, 40423, 24671, 40639, 570461, 25999, 573497, 2687, 3581, 289033, 82799, 7853, 292093, 585721, 41947, 53527, 591881, 296713, 12659, 298261, 85439, 6379, 12269, 13103, 27539, 607421, 43499, 610553, 1901, 1999, 307633, 616841, 12653, 310789, 8093, 626333, 313961, 629513, 7109, 45307, 9491, 318749, 29123, 321961, 92219, 325189, 651997, 46687, 655241, 46919, 59863, 330061, 2389, 331693, 95003, 95471, 7127, 671581, 336613, 18329, 681481, 341569, 2437, 14923, 344893, 98779, 346561, 1741, 701497, 50227, 704861, 6619, 354961, 32423, 4441, 358349, 11777, 360049, 51679, 31531, 2593, 365173, 366889, 105071, 368609, 105563, 10009, 742393, 372061, 3257, 4877, 752797, 756281, 379013, 5683, 16631, 2617, 1931, 55147, 773821, 55399, 777353, 389561, 4397, 2287, 393109, 112571, 35899, 791561, 4457, 56923, 798713, 57179, 4157, 402049, 403849, 10513, 116159, 4721, 4931, 820361, 58727, 823997, 4159, 2137, 8863, 18191, 2549, 5653, 422069, 845981, 2633, 77243, 8689, 6229, 857081, 429469, 122971, 431329, 123503, 433193, 12959, 39551,

7. Distribution of the primes

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

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.5000001.1000000.0000000.0000000.000000
21005719380.5700000.1900000.5700005.1818183.8000006.333333
31.0007091675420.7090000.1670000.70900012.4385978.78947414.263158
410.0007.4801.2546.2260.7480000.1254000.74800010.5500717.50898211.487085
5100.00074.3529.81564.5370.7435200.0981500.7435209.9401077.82695410.365725
61.000.000734.15780.374653.7830.7341570.0803740.7341579.8740728.18889410.130360
710.000.0007.278.866679.4406.599.4260.7278870.0679440.7278879.9145918.45348010.094214
8100.000.00072.325.5715.887.31366.438.2580.7232560.0588730.7232569.9363788.66494910.067278
91.000.000.000719.711.51651.945.418667.766.0980.7197110.0519450.7197119.9509968.82328110.050927
1010.000.000.0007.169.012.676464.847.9716.704.164.7050.7169010.0464850.7169019.9609548.94877710.039691


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
389451.1250000.5000000.6250001.8000002.0000001.666667
416166101.0000000.3750000.6250001.7777781.5000002.000000
5323111200.9687500.3437500.6250001.9375001.8333332.000000
6645719380.8906250.2968750.5937501.8387101.7272731.900000
71285719380.4453120.1484380.2968751.0000001.0000001.000000
825614547980.5664060.1835940.3828122.5438602.4736842.578947
9512340922480.6640620.1796880.4843752.3448281.9574472.530612
101.0247291715580.7119140.1669920.5449222.1441181.8586962.250000
112.0481.5043181.1860.7343750.1552730.5791022.0631001.8596492.125448
124.0963.0495822.4670.7443850.1420900.6022952.0272611.8301892.080101
138.1926.1031.0675.0360.7449950.1302490.6147462.0016401.8333332.041346
1416.38412.2891.93210.3570.7500610.1179200.6321412.0136001.8106842.056592
1532.76824.5053.59120.9140.7478330.1095890.6382451.9940601.8586962.019311
1665.53648.8456.72342.1220.7453160.1025850.6427311.9932671.8721802.014058
17131.07297.26512.52484.7410.7420730.0955510.6465231.9912991.8628592.011799
18262.144193.74923.687170.0620.7390940.0903590.6487351.9919701.8913292.006844
19524.288386.12744.462341.6650.7364790.0848050.6516741.9929241.8770632.009061
201.048.576769.65583.925685.7300.7340000.0800370.6539631.9932691.8875672.007025
212.097.1521.535.019158.8841.376.1350.7319540.0757620.6561921.9944251.8931672.006818
224.194.3043.061.989302.5252.759.4640.7300350.0721280.6579071.9947561.9040622.005228
238.388.6086.109.266576.5335.532.7330.7282810.0687280.6595531.9951951.9057372.005003
2416.777.21612.192.6801.101.60411.091.0760.7267400.0656610.6610801.9957681.9107392.004629
2533.554.43224.336.3072.108.93122.227.3760.7252780.0628510.6624271.9959771.9144182.004077
2667.108.86448.586.5814.043.74944.542.8320.7239960.0602570.6637401.9964651.9174402.003963
27134.217.72897.007.6407.769.18289.238.4580.7227630.0578850.6648781.9965931.9212822.003430
28268.435.456193.711.95314.948.925178.763.0280.7216330.0556890.6659441.9968731.9241312.003206
29536.870.912386.869.03528.801.320358.067.7150.7206000.0536470.6669531.9971361.9266482.003030
301.073.741.824772.679.79555.573.873717.105.9220.7196140.0517570.6678571.9972651.9295602.002710
312.147.483.6481.543.410.306107.358.8971.436.051.4090.7187060.0499930.6687141.9974771.9318232.002565
324.294.967.2963.083.185.437207.658.3352.875.527.1020.7178600.0483490.6695111.9976451.9342442.002384
338.589.934.5926.159.564.664402.100.6695.757.463.9950.7170680.0468110.6702571.9977921.9363572.002229
3417.179.869.18412.306.401.694779.377.60411.527.024.0900.7163270.0453660.6709611.9979341.9382652.002101


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
384310103
4166420204
53211830506
6641913601009
71281913601009
82564724231510139
95129235573910349
101.024171621098710659
112.048318112206158101419
124.096582198384289102749
138.1921.067358709531105179
1416.3841.9326641.268963109509
1532.7683.5911.2372.3541.787101.7859
1665.5366.7232.2884.4353.370103.3349
17131.07212.5244.2018.3236.267106.2389
18262.14423.6877.91415.77311.8831011.7859
19524.28844.46214.95329.50922.2301022.2139
201.048.57683.92528.12155.80441.9741041.9329
212.097.152158.88452.948105.93679.2921079.5739
224.194.304302.525101.196201.329150.97610151.5309
238.388.608576.533192.500384.033287.72510288.7899
2416.777.2161.101.604367.810733.794549.86710551.7189
2533.554.4322.108.931703.0981.405.8331.053.537101.055.3759
2667.108.8644.043.7491.348.7472.695.0022.020.649102.023.0819
27134.217.7287.769.1822.591.2015.177.9813.883.531103.885.6329
28268.435.45614.948.9254.985.2219.963.7047.474.640107.474.2669
29536.870.91228.801.3209.602.58619.198.73414.400.2401014.401.0619
301.073.741.82455.573.87318.527.46637.046.40727.787.9471027.785.9079
312.147.483.648107.358.89735.786.51171.572.38653.680.5651053.678.3139
324.294.967.296207.658.33569.218.160138.440.175103.828.63510103.829.6819
338.589.934.592402.100.669134.034.388268.066.281201.053.88610201.046.7649
3417.179.869.184779.377.604259.790.737519.586.867389.701.60910389.675.9769


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
122200110
243210111
385320122
41610551234
532208123467
6643815237101110
71283815237101110
825698534522272722
951224813811061626263
101.024558302256140136144138
112.0481.186652534310289294293
124.0962.4671.3221.145638601631597
138.1925.0362.7172.3191.3161.2391.2861.195
1416.38410.3575.4964.8612.6692.5332.6502.505
1532.76820.91411.0629.8525.3615.1045.3295.120
1665.53642.12222.20419.91810.80810.30910.78910.216
17131.07284.74144.50840.23321.76420.65221.67420.651
18262.144170.06289.01381.04943.67441.49243.53241.364
19524.288341.665178.489163.17687.70283.39087.24283.331
201.048.576685.730357.504328.226175.309167.751174.896167.774
212.097.1521.376.135715.180660.955350.946337.305350.773337.111
224.194.3042.759.4641.431.6661.327.798703.042677.073703.176676.173
238.388.6085.532.7332.865.6802.667.0531.407.7921.358.2171.409.2981.357.426
2416.777.21611.091.0765.733.4995.357.5772.818.9352.725.1932.822.0352.724.913
2533.554.43222.227.37611.474.92810.752.4485.648.0895.462.7305.651.5875.464.970
2667.108.86444.542.83222.962.49221.580.34011.313.02410.958.58211.318.31410.952.912
27134.217.72889.238.45845.947.61743.290.84122.653.95821.964.98722.661.91321.957.600
28268.435.456178.763.02891.929.20086.833.82845.361.68644.018.25445.374.22844.008.860
29536.870.912358.067.715183.939.146174.128.56990.830.77188.207.87590.826.79888.202.271
301.073.741.824717.105.922368.003.573349.102.349181.818.334176.748.027181.815.512176.724.049
312.147.483.6481.436.051.409736.267.101699.784.308363.937.766354.103.952363.952.482354.057.209
324.294.967.2962.875.527.1021.473.067.3181.402.459.784728.454.261709.314.584728.444.445709.313.812
338.589.934.5925.757.463.9952.947.034.5972.810.429.3981.457.953.9701.420.793.9771.457.955.1051.420.760.943
3417.179.869.18411.527.024.0905.895.800.1375.631.223.9532.917.964.1922.845.579.1042.917.934.8252.845.545.969


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 67, 37, 191, 503, 311, 739, 61, 967, 11, 1187, 647, 1399, 751, 229, 23, 257, 947, 1987, 1039,
Found in Database : 7, 67, 37, 191, 503, 311, 739, 61, 967, 11, 1187, 647, 1399, 751, 229, 23, 257, 947, 1987, 1039, 197, 2339, 173, 2503, 1291, 2659, 1367, 401, 1439, 421, 137, 3079, 1571, 3203, 233, 3319, 241, 149, 47,
Found in Database : 7, 11, 23, 37, 47, 61, 67, 83, 89, 107, 137, 149,