Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:26:43
Deutsch
20.Apr 2024

Polynom = x^2+23x-97

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) = 97 = 97
f(1) = 73 = 73
f(2) = 47 = 47
f(3) = 19 = 19
f(4) = 11 = 11
f(5) = 43 = 43
f(6) = 77 = 7*11
f(7) = 113 = 113
f(8) = 151 = 151
f(9) = 191 = 191
f(10) = 233 = 233
f(11) = 277 = 277
f(12) = 323 = 17*19
f(13) = 371 = 7*53
f(14) = 421 = 421
f(15) = 473 = 11*43
f(16) = 527 = 17*31
f(17) = 583 = 11*53
f(18) = 641 = 641
f(19) = 701 = 701
f(20) = 763 = 7*109
f(21) = 827 = 827
f(22) = 893 = 19*47
f(23) = 961 = 31*31
f(24) = 1031 = 1031
f(25) = 1103 = 1103
f(26) = 1177 = 11*107
f(27) = 1253 = 7*179
f(28) = 1331 = 11*11*11
f(29) = 1411 = 17*83
f(30) = 1493 = 1493
f(31) = 1577 = 19*83
f(32) = 1663 = 1663
f(33) = 1751 = 17*103
f(34) = 1841 = 7*263
f(35) = 1933 = 1933
f(36) = 2027 = 2027
f(37) = 2123 = 11*193
f(38) = 2221 = 2221
f(39) = 2321 = 11*211
f(40) = 2423 = 2423
f(41) = 2527 = 7*19*19
f(42) = 2633 = 2633
f(43) = 2741 = 2741
f(44) = 2851 = 2851
f(45) = 2963 = 2963
f(46) = 3077 = 17*181
f(47) = 3193 = 31*103
f(48) = 3311 = 7*11*43
f(49) = 3431 = 47*73
f(50) = 3553 = 11*17*19
f(51) = 3677 = 3677
f(52) = 3803 = 3803
f(53) = 3931 = 3931
f(54) = 4061 = 31*131
f(55) = 4193 = 7*599
f(56) = 4327 = 4327
f(57) = 4463 = 4463
f(58) = 4601 = 43*107
f(59) = 4741 = 11*431
f(60) = 4883 = 19*257
f(61) = 5027 = 11*457
f(62) = 5173 = 7*739
f(63) = 5321 = 17*313
f(64) = 5471 = 5471
f(65) = 5623 = 5623
f(66) = 5777 = 53*109
f(67) = 5933 = 17*349
f(68) = 6091 = 6091
f(69) = 6251 = 7*19*47
f(70) = 6413 = 11*11*53
f(71) = 6577 = 6577
f(72) = 6743 = 11*613
f(73) = 6911 = 6911
f(74) = 7081 = 73*97
f(75) = 7253 = 7253
f(76) = 7427 = 7*1061
f(77) = 7603 = 7603
f(78) = 7781 = 31*251
f(79) = 7961 = 19*419
f(80) = 8143 = 17*479
f(81) = 8327 = 11*757
f(82) = 8513 = 8513
f(83) = 8701 = 7*11*113
f(84) = 8891 = 17*523
f(85) = 9083 = 31*293
f(86) = 9277 = 9277
f(87) = 9473 = 9473
f(88) = 9671 = 19*509
f(89) = 9871 = 9871
f(90) = 10073 = 7*1439
f(91) = 10277 = 43*239
f(92) = 10483 = 11*953
f(93) = 10691 = 10691
f(94) = 10901 = 11*991
f(95) = 11113 = 11113
f(96) = 11327 = 47*241
f(97) = 11543 = 7*17*97
f(98) = 11761 = 19*619
f(99) = 11981 = 11981
f(100) = 12203 = 12203

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+23x-97

f(0)=97
f(1)=73
f(2)=47
f(3)=19
f(4)=11
f(5)=43
f(6)=7
f(7)=113
f(8)=151
f(9)=191
f(10)=233
f(11)=277
f(12)=17
f(13)=53
f(14)=421
f(15)=1
f(16)=31
f(17)=1
f(18)=641
f(19)=701
f(20)=109
f(21)=827
f(22)=1
f(23)=1
f(24)=1031
f(25)=1103
f(26)=107
f(27)=179
f(28)=1
f(29)=83
f(30)=1493
f(31)=1
f(32)=1663
f(33)=103
f(34)=263
f(35)=1933
f(36)=2027
f(37)=193
f(38)=2221
f(39)=211
f(40)=2423
f(41)=1
f(42)=2633
f(43)=2741
f(44)=2851
f(45)=2963
f(46)=181
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=3677
f(52)=3803
f(53)=3931
f(54)=131
f(55)=599
f(56)=4327
f(57)=4463
f(58)=1
f(59)=431
f(60)=257
f(61)=457
f(62)=739
f(63)=313
f(64)=5471
f(65)=5623
f(66)=1
f(67)=349
f(68)=6091
f(69)=1
f(70)=1
f(71)=6577
f(72)=613
f(73)=6911
f(74)=1
f(75)=7253
f(76)=1061
f(77)=7603
f(78)=251
f(79)=419
f(80)=479
f(81)=757
f(82)=8513
f(83)=1
f(84)=523
f(85)=293
f(86)=9277
f(87)=9473
f(88)=509
f(89)=9871
f(90)=1439
f(91)=239
f(92)=953
f(93)=10691
f(94)=991
f(95)=11113
f(96)=241
f(97)=1
f(98)=619
f(99)=11981

b) Substitution of the polynom
The polynom f(x)=x^2+23x-97 could be written as f(y)= y^2-229.25 with x=y-11.5

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

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

97, 73, 47, 19, 11, 43, 7, 113, 151, 191, 233, 277, 17, 53, 421, 1, 31, 1, 641, 701, 109, 827, 1, 1, 1031, 1103, 107, 179, 1, 83, 1493, 1, 1663, 103, 263, 1933, 2027, 193, 2221, 211, 2423, 1, 2633, 2741, 2851, 2963, 181, 1, 1, 1, 1, 3677, 3803, 3931, 131, 599, 4327, 4463, 1, 431, 257, 457, 739, 313, 5471, 5623, 1, 349, 6091, 1, 1, 6577, 613, 6911, 1, 7253, 1061, 7603, 251, 419, 479, 757, 8513, 1, 523, 293, 9277, 9473, 509, 9871, 1439, 239, 953, 10691, 991, 11113, 241, 1, 619, 11981, 12203, 1, 12653, 1171, 1873, 1213, 13577, 727, 14051, 461, 14533, 2111, 1, 15271, 1, 15773, 1, 857, 139, 317, 1, 17327, 1, 337, 18131, 1, 983, 1723, 19231, 1, 19793, 1181, 2909, 1, 487, 1249, 1, 157, 2011, 3203, 733, 23027, 23333, 503, 557, 1277, 3511, 1, 1483, 1, 1, 26177, 1559, 3833, 173, 1447, 27827, 28163, 2591, 1, 379, 29527, 29873, 643, 1609, 1, 31277, 4519, 31991, 1, 32713, 1, 631, 33811, 1, 1, 659, 821, 1151, 36061, 3313, 5261, 199, 1979, 37991, 1, 2281, 911, 5653, 39971, 859, 1, 41183, 1, 433, 1, 1, 521, 43661, 2593, 1, 44927, 1, 2693, 4201, 46643, 1, 47513, 47951, 223, 1039, 49277, 2617, 4561, 227, 4643, 1, 229, 1, 52901, 1, 2833, 54293, 7823, 5021, 1051, 5107, 1, 57131, 1087, 1, 3083, 59063, 1, 60041, 5503, 61027, 1, 569, 607, 1, 63527, 64033, 1, 9293, 65563, 6007, 66593, 6101, 67631, 1, 9811, 69203, 677, 4133, 70793, 71327, 1, 10343, 1, 73483, 74027, 74573, 1747, 2441, 10889, 76777, 4549, 1, 4129, 653, 1, 1, 1877, 81281, 81853, 593, 83003, 1, 1093, 1021, 7757, 1621, 86501, 1, 87683, 12611, 88873, 1, 90071, 8243, 941, 8353, 1, 1, 3023, 94327, 1, 95561, 96181, 13829, 1, 3163, 8971, 2113, 5879, 2339, 761, 1, 907, 683, 661, 863, 105071, 1373, 106373, 1, 1, 6373, 109001, 109663, 15761, 6529, 10151, 112331, 10273, 1, 1, 16433, 1, 1, 1, 117763, 3821, 10831, 1, 10957, 1, 121921, 7213, 123323, 1699, 1, 125441, 126151, 1, 1129, 1, 129011, 1, 1, 2791, 7759, 132631, 7019, 134093, 1, 4373, 12391, 3187, 1, 1669, 139273, 1, 1, 1459, 1949, 13003, 143791, 773, 20759, 146077, 146843, 1, 148381, 149153, 1, 21529, 1, 1423, 13913, 1, 154613, 8179, 1, 877, 9281, 158573, 1, 14561, 1, 1, 1, 1499, 164201, 5323, 1193, 166643, 1, 168281, 15373, 1, 1, 10093, 172411, 24749, 174077, 10289, 971, 176591, 177433, 853, 25589, 16361, 2477, 1307, 1, 183383, 184241, 1, 10939, 9833, 1, 977, 1013, 4049, 881, 192053, 192931, 193811, 10247, 1, 1, 1, 198241, 1, 1, 1, 201821, 2777, 1531, 1, 205433, 206341, 1, 1, 1, 1, 210911, 11149, 6863, 1361, 214603, 215531, 1, 19763, 2003, 1, 12953, 1, 1, 1, 2309, 224921, 225871, 226823, 20707, 228733, 1, 1, 231613, 13681, 4969, 234511, 1301, 1987, 1019, 21673, 1, 21851, 241343, 7817, 34759, 244301, 245291, 2539, 2311, 1, 1, 35753, 1, 252277, 1, 254291, 4817, 256313, 36761, 13597, 1, 23671, 1511, 23857, 2417, 37783, 265511, 15679, 14083, 268613, 269651, 15923, 3529, 272777, 1, 274871, 275921, 1601, 14633, 39869, 1, 1, 1, 1, 16729, 25951, 40933, 15137, 16981, 3491, 1, 3517, 292993, 1, 26833, 296251, 27031, 1, 299527, 300623, 43103, 1, 1, 1597, 306133, 1, 16229, 4019, 310577, 5881, 3037, 313931, 10163, 316177, 45329, 318431, 1, 320693, 1721, 322963, 324101, 1, 1, 3061, 3191, 17359, 1, 1, 1, 30403, 335591, 1409, 1, 1607, 3011, 1, 1, 1, 31357, 20359, 1, 348461, 1, 11317, 1, 353201, 354391, 4871, 7591, 4649, 359171, 1, 21269, 1823, 19157, 3413, 3079, 367613, 6959, 1, 33751, 372481, 1, 2819, 376153, 1579, 1571, 12253, 381077, 1, 1, 34981, 4651, 1, 1, 8293, 391021, 56039, 2039, 9181, 396041, 397301, 1907, 1, 5209, 402361, 23743, 2579, 406177, 1, 24043, 58573, 21647, 37507, 413863, 1, 416441, 417733, 1931, 420323, 421621, 22259, 424223, 25031, 38803, 1973, 39041, 25339, 1, 433393, 3847, 1, 1453, 4259, 1753, 1, 1, 1, 4591, 63809, 1, 1, 1, 452027, 26669, 454721, 5923, 4441, 1, 14843, 1, 462851, 464213, 1, 2213, 2707, 1, 1, 2063, 2267, 67883, 1, 10169, 479327, 480713, 482101, 483491, 1, 44207, 25667, 1, 1567, 491873, 493277, 4157, 1, 497501, 6011, 1549, 45613, 16231, 6553, 4729, 1, 9601, 11867, 511711, 16553, 1, 10979, 47041, 1, 47303, 521777, 2711, 4409, 526121, 27767, 529027, 1, 1, 48491, 1, 48757, 537793, 539261, 3581, 28537, 31981, 1657, 546631, 17681, 2939, 7549, 1, 554051, 4177, 557033, 1, 560023, 561521, 563021, 564523, 7351, 567533, 1, 30029, 572063, 13339, 33829, 82373, 578131, 579653, 581177, 52973, 1, 1, 1583, 588827, 590363, 591901, 11197, 1, 5279, 85439, 1, 35363, 1, 604277, 19543, 5897, 86993, 3373, 2089, 32297, 3221, 1, 5779, 1, 36559, 7507, 1, 1, 36931, 1, 1, 632591, 57653, 635777, 57943, 638971, 14897, 1, 1, 645383, 646991, 38153, 650213, 5387, 1, 1, 656681, 658303, 1, 661553, 1, 1, 1, 1, 1, 1, 1, 35507, 5683, 12791, 4889, 681221, 40169, 684527, 1, 8933, 2861, 3307, 14741, 1, 2647, 697831, 99929, 701177, 702853, 41443, 1, 1, 1, 1, 712951, 1, 1, 3967, 719723, 1, 5437, 1, 726527, 1, 729941, 731651, 1, 1, 736793, 1, 43543, 7649, 67607, 10211, 1, 748861, 1, 1787, 7321, 39779, 9127, 3499, 1, 4079, 764521, 69661, 1, 45281, 5801, 16453, 1, 776813, 7559, 780343, 1, 1, 1, 787427, 1, 3547, 46633, 794543, 113761, 7459, 1, 2351, 803483, 3853, 1, 115553, 810671, 812473, 26267, 7487, 817891, 819701, 1, 2549, 75013, 3643, 3557, 48859, 832427, 119179, 3331, 3659, 1, 76507, 1, 1, 121013, 848933, 7529, 852623, 50263, 1, 1, 122861, 1, 1, 78691, 867463, 2017, 1, 1, 46049, 12011, 878677, 880553, 80221, 884311, 1, 888077, 889963, 891851, 2767, 895633, 897527, 128489, 8269, 1, 905123, 82457, 1, 47939, 1, 3559, 29567, 1, 920411, 922331, 1, 1, 1, 1, 2459, 933893, 935827, 2687, 134243, 941641, 9161, 1999, 1, 86311, 1, 136189, 955277, 18061, 3319, 961151, 9929, 1, 1, 969011, 1, 2129, 974927, 31513, 4919, 140123, 982843, 3049, 986813, 89891, 1, 5309, 142111, 8821, 1, 1, 1002773, 52883, 1006783, 1, 2137, 3851, 8387, 1016843, 1, 1020881,

6. Sequence of the polynom (only primes)

97, 73, 47, 19, 11, 43, 7, 113, 151, 191, 233, 277, 17, 53, 421, 31, 641, 701, 109, 827, 1031, 1103, 107, 179, 83, 1493, 1663, 103, 263, 1933, 2027, 193, 2221, 211, 2423, 2633, 2741, 2851, 2963, 181, 3677, 3803, 3931, 131, 599, 4327, 4463, 431, 257, 457, 739, 313, 5471, 5623, 349, 6091, 6577, 613, 6911, 7253, 1061, 7603, 251, 419, 479, 757, 8513, 523, 293, 9277, 9473, 509, 9871, 1439, 239, 953, 10691, 991, 11113, 241, 619, 11981, 12203, 12653, 1171, 1873, 1213, 13577, 727, 14051, 461, 14533, 2111, 15271, 15773, 857, 139, 317, 17327, 337, 18131, 983, 1723, 19231, 19793, 1181, 2909, 487, 1249, 157, 2011, 3203, 733, 23027, 23333, 503, 557, 1277, 3511, 1483, 26177, 1559, 3833, 173, 1447, 27827, 28163, 2591, 379, 29527, 29873, 643, 1609, 31277, 4519, 31991, 32713, 631, 33811, 659, 821, 1151, 36061, 3313, 5261, 199, 1979, 37991, 2281, 911, 5653, 39971, 859, 41183, 433, 521, 43661, 2593, 44927, 2693, 4201, 46643, 47513, 47951, 223, 1039, 49277, 2617, 4561, 227, 4643, 229, 52901, 2833, 54293, 7823, 5021, 1051, 5107, 57131, 1087, 3083, 59063, 60041, 5503, 61027, 569, 607, 63527, 64033, 9293, 65563, 6007, 66593, 6101, 67631, 9811, 69203, 677, 4133, 70793, 71327, 10343, 73483, 74027, 74573, 1747, 2441, 10889, 76777, 4549, 4129, 653, 1877, 81281, 81853, 593, 83003, 1093, 1021, 7757, 1621, 86501, 87683, 12611, 88873, 90071, 8243, 941, 8353, 3023, 94327, 95561, 96181, 13829, 3163, 8971, 2113, 5879, 2339, 761, 907, 683, 661, 863, 105071, 1373, 106373, 6373, 109001, 109663, 15761, 6529, 10151, 112331, 10273, 16433, 117763, 3821, 10831, 10957, 121921, 7213, 123323, 1699, 125441, 126151, 1129, 129011, 2791, 7759, 132631, 7019, 134093, 4373, 12391, 3187, 1669, 139273, 1459, 1949, 13003, 143791, 773, 20759, 146077, 146843, 148381, 149153, 21529, 1423, 13913, 154613, 8179, 877, 9281, 158573, 14561, 1499, 164201, 5323, 1193, 166643, 168281, 15373, 10093, 172411, 24749, 174077, 10289, 971, 176591, 177433, 853, 25589, 16361, 2477, 1307, 183383, 184241, 10939, 9833, 977, 1013, 4049, 881, 192053, 192931, 193811, 10247, 198241, 201821, 2777, 1531, 205433, 206341, 210911, 11149, 6863, 1361, 214603, 215531, 19763, 2003, 12953, 2309, 224921, 225871, 226823, 20707, 228733, 231613, 13681, 4969, 234511, 1301, 1987, 1019, 21673, 21851, 241343, 7817, 34759, 244301, 245291, 2539, 2311, 35753, 252277, 254291, 4817, 256313, 36761, 13597, 23671, 1511, 23857, 2417, 37783, 265511, 15679, 14083, 268613, 269651, 15923, 3529, 272777, 274871, 275921, 1601, 14633, 39869, 16729, 25951, 40933, 15137, 16981, 3491, 3517, 292993, 26833, 296251, 27031, 299527, 300623, 43103, 1597, 306133, 16229, 4019, 310577, 5881, 3037, 313931, 10163, 316177, 45329, 318431, 320693, 1721, 322963, 324101, 3061, 3191, 17359, 30403, 335591, 1409, 1607, 3011, 31357, 20359, 348461, 11317, 353201, 354391, 4871, 7591, 4649, 359171, 21269, 1823, 19157, 3413, 3079, 367613, 6959, 33751, 372481, 2819, 376153, 1579, 1571, 12253, 381077, 34981, 4651, 8293, 391021, 56039, 2039, 9181, 396041, 397301, 1907, 5209, 402361, 23743, 2579, 406177, 24043, 58573, 21647, 37507, 413863, 416441, 417733, 1931, 420323, 421621, 22259, 424223, 25031, 38803, 1973, 39041, 25339, 433393, 3847, 1453, 4259, 1753, 4591, 63809, 452027, 26669, 454721, 5923, 4441, 14843, 462851, 464213, 2213, 2707, 2063, 2267, 67883, 10169, 479327, 480713, 482101, 483491, 44207, 25667, 1567, 491873, 493277, 4157, 497501, 6011, 1549, 45613, 16231, 6553, 4729, 9601, 11867, 511711, 16553, 10979, 47041, 47303, 521777, 2711, 4409, 526121, 27767, 529027, 48491, 48757, 537793, 539261, 3581, 28537, 31981, 1657, 546631, 17681, 2939, 7549, 554051, 4177, 557033, 560023, 561521, 563021, 564523, 7351, 567533, 30029, 572063, 13339, 33829, 82373, 578131, 579653, 581177, 52973, 1583, 588827, 590363, 591901, 11197, 5279, 85439, 35363, 604277, 19543, 5897, 86993, 3373, 2089, 32297, 3221, 5779, 36559, 7507, 36931, 632591, 57653, 635777, 57943, 638971, 14897, 645383, 646991, 38153, 650213, 5387, 656681, 658303, 661553, 35507, 5683, 12791, 4889, 681221, 40169, 684527, 8933, 2861, 3307, 14741, 2647, 697831, 99929, 701177, 702853, 41443, 712951, 3967, 719723, 5437, 726527, 729941, 731651, 736793, 43543, 7649, 67607, 10211, 748861, 1787, 7321, 39779, 9127, 3499, 4079, 764521, 69661, 45281, 5801, 16453, 776813, 7559, 780343, 787427, 3547, 46633, 794543, 113761, 7459, 2351, 803483, 3853, 115553, 810671, 812473, 26267, 7487, 817891, 819701, 2549, 75013, 3643, 3557, 48859, 832427, 119179, 3331, 3659, 76507, 121013, 848933, 7529, 852623, 50263, 122861, 78691, 867463, 2017, 46049, 12011, 878677, 880553, 80221, 884311, 888077, 889963, 891851, 2767, 895633, 897527, 128489, 8269, 905123, 82457, 47939, 3559, 29567, 920411, 922331, 2459, 933893, 935827, 2687, 134243, 941641, 9161, 1999, 86311, 136189, 955277, 18061, 3319, 961151, 9929, 969011, 2129, 974927, 31513, 4919, 140123, 982843, 3049, 986813, 89891, 5309, 142111, 8821, 1002773, 52883, 1006783, 2137, 3851, 8387, 1016843, 1020881,

7. Distribution of the primes

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

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)
110111101.1000001.1000001.1000000.0000000.0000000.000000
21008149320.8100000.4900000.8100007.3636364.454545inf
31.0007302914390.7300000.2910000.7300009.0123455.93877613.718750
410.0007.2292.0945.1350.7229000.2094000.7229009.9027407.19587611.697039
5100.00071.92716.01455.9130.7192700.1601400.7192709.9497857.64756410.888608
61.000.000715.595129.990585.6050.7155950.1299900.7155959.9489078.11727210.473503
710.000.0007.120.2831.101.4096.018.8740.7120280.1101410.7120289.9501578.47302910.278044
8100.000.00070.942.9989.550.36961.392.6290.7094300.0955040.7094309.9635098.67104710.200019
91.000.000.000707.495.96184.277.172623.218.7890.7074960.0842770.7074969.9727378.82449310.151362
1010.000.000.0007.059.733.183754.204.3676.305.528.8160.7059730.0754200.7059739.9784788.94909510.117681


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
245501.2500001.2500000.0000001.6666671.666667-nan
389901.1250001.1250000.0000001.8000001.800000-nan
416141310.8750000.8125000.0625001.5555561.444444inf
532252050.7812500.6250000.1562501.7857141.5384625.000000
6645135160.7968750.5468750.2500002.0400001.7500003.200000
712810158430.7890620.4531250.3359381.9803921.6571432.687500
825619394990.7539060.3671880.3867191.9108911.6206902.302325
95123781642140.7382810.3203120.4179691.9585491.7446812.161616
101.0247482964520.7304690.2890620.4414061.9788361.8048782.112149
112.0481.4925429500.7285160.2646480.4638671.9946521.8310812.101770
124.0962.9759502.0250.7263180.2319340.4943851.9939681.7527682.131579
138.1925.9441.7524.1920.7255860.2138670.5117191.9979831.8442112.070123
1416.38411.8203.1838.6370.7214360.1942750.5271611.9885601.8167812.060353
1532.76823.6415.95017.6910.7214660.1815800.5398862.0000851.8693062.048281
1665.53647.21610.94836.2680.7204590.1670530.5534061.9972081.8400002.050082
17131.07294.31120.45273.8590.7195360.1560360.5634991.9974371.8681042.036479
18262.144188.28738.191150.0960.7182580.1456870.5725711.9964481.8673482.032197
19524.288375.83371.834303.9990.7168450.1370120.5798321.9960651.8809142.025364
201.048.576750.298135.839614.4590.7155400.1295460.5859941.9963601.8910132.021253
212.097.1521.497.833257.7701.240.0630.7142220.1229140.5913081.9963181.8976142.018138
224.194.3042.991.473490.5102.500.9630.7132230.1169470.5962761.9972011.9028982.016803
238.388.6085.974.612934.5215.040.0910.7122290.1114040.6008261.9972141.9052032.015260
2416.777.21611.933.9751.786.49310.147.4820.7113200.1064830.6048371.9974481.9116672.013353
2533.554.43223.840.9793.421.74420.419.2350.7105170.1019760.6085411.9977401.9153412.012247
2667.108.86447.634.7396.561.30341.073.4360.7098130.0977710.6120421.9980191.9175322.011507
27134.217.72895.181.56812.603.55882.578.0100.7091580.0939040.6152541.9981541.9208932.010497
28268.435.456190.198.85924.247.829165.951.0300.7085460.0903300.6182161.9982741.9238872.009627
29536.870.912380.086.88546.728.186333.358.6990.7079670.0870380.6209291.9983661.9271082.008778
301.073.741.824759.611.65890.166.006669.445.6520.7074430.0839740.6234701.9985211.9295852.008184
312.147.483.6481.518.169.166174.193.5171.343.975.6490.7069530.0811150.6258371.9986121.9319202.007595
324.294.967.2963.034.370.244336.921.2132.697.449.0310.7064940.0784460.6280491.9987041.9341782.007067
338.589.934.5926.065.023.030652.389.6505.412.633.3800.7060620.0759480.6301131.9987751.9363272.006575
3417.179.869.18412.123.158.4781.264.518.85510.858.639.6230.7056610.0736050.6320561.9988641.9382882.006166


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
123212001
245322201
389543312
41613764333
532208125456
664351322691010
712858233511151616
825694306420252326
95121645610838434241
101.02429610119570748072
112.048542180362134133146129
124.096950318632241237246226
138.1921.7525941.158438437453424
1416.3843.1831.0652.118797781816789
1532.7685.9501.9833.9671.4831.4821.4831.502
1665.53610.9483.6627.2862.7542.7242.7282.742
17131.07220.4526.85313.5995.0885.1455.1205.099
18262.14438.19112.65325.5389.5679.5609.5309.534
19524.28871.83423.90247.93217.88217.84718.13417.971
201.048.576135.83945.26990.57033.92033.81934.14533.955
212.097.152257.77085.720172.05064.36564.40264.53764.466
224.194.304490.510163.259327.251122.693122.674122.437122.706
238.388.608934.521311.454623.067233.899233.915233.570233.137
2416.777.2161.786.493595.3181.191.175446.879447.063446.008446.543
2533.554.4323.421.7441.140.4102.281.334855.570856.419854.591855.164
2667.108.8646.561.3032.186.4074.374.8961.640.7131.641.6021.639.3071.639.681
27134.217.72812.603.5584.200.6588.402.9003.152.1483.153.1963.148.6053.149.609
28268.435.45624.247.8298.083.14316.164.6866.061.8246.064.2726.060.6806.061.053
29536.870.91246.728.18615.575.49331.152.69311.682.81611.683.23511.679.48511.682.650
301.073.741.82490.166.00630.053.30260.112.70422.540.74722.544.41422.537.97722.542.868
312.147.483.648174.193.51758.060.051116.133.46643.548.26843.550.84743.547.48843.546.914
324.294.967.296336.921.213112.308.149224.613.06484.226.90384.236.99184.229.76184.227.558
338.589.934.592652.389.650217.466.955434.922.695163.104.956163.103.395163.091.418163.089.881
3417.179.869.1841.264.518.855421.510.260843.008.595316.133.552316.136.665316.115.749316.132.889


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
240000000
380000000
4161010010
5325140320
66416884534
71284321229111211
825699514822242627
951221410411058535746
101.024452216236116121114101
112.048950456494232241253224
124.0962.0259791.046495493525512
138.1924.1922.0882.1041.0301.0441.0581.060
1416.3848.6374.2824.3552.1652.1712.1742.127
1532.76817.6918.8638.8284.3684.4854.4404.398
1665.53636.26818.11418.1549.0239.0739.0759.097
17131.07273.85937.04936.81018.40318.49318.57118.392
18262.144150.09675.04675.05037.47537.64837.40937.564
19524.288303.999152.179151.82075.79276.16075.99976.048
201.048.576614.459307.534306.925153.381153.566153.623153.889
212.097.1521.240.063620.725619.338309.522309.678309.990310.873
224.194.3042.500.9631.251.2861.249.677624.272624.641626.204625.846
238.388.6085.040.0912.520.9022.519.1891.259.0831.258.9881.261.7881.260.232
2416.777.21610.147.4825.077.0915.070.3912.536.6702.535.2902.538.2612.537.261
2533.554.43220.419.23510.219.39510.199.8405.104.4635.103.0695.106.0045.105.699
2667.108.86441.073.43620.552.95620.520.48010.268.28610.266.47410.271.12210.267.554
27134.217.72882.578.01041.317.42541.260.58520.647.21020.640.94720.647.33920.642.514
28268.435.456165.951.03083.036.87782.914.15341.493.83241.488.75141.484.78441.483.663
29536.870.912333.358.699166.802.276166.556.42383.342.02783.349.28983.337.65983.329.724
301.073.741.824669.445.652334.967.148334.478.504167.369.888167.367.899167.350.346167.357.519
312.147.483.6481.343.975.649672.454.410671.521.239335.995.244335.994.688335.996.287335.989.430
324.294.967.2962.697.449.0311.349.621.0971.347.827.934674.362.088674.349.319674.366.923674.370.701
338.589.934.5925.412.633.3802.708.014.4322.704.618.9481.353.179.9871.353.129.9421.353.171.8001.353.151.651
3417.179.869.18410.858.639.6235.432.595.3425.426.044.2812.714.663.3832.714.672.4552.714.702.6512.714.601.134


8. Check for existing Integer Sequences by OEIS

Found in Database : 97, 73, 47, 19, 11, 43, 7, 113, 151, 191, 233, 277, 17, 53, 421, 1, 31, 1, 641, 701,
Found in Database : 97, 73, 47, 19, 11, 43, 7, 113, 151, 191, 233, 277, 17, 53, 421, 31, 641, 701, 109, 827, 1031, 1103, 107, 179, 83, 1493, 1663, 103, 263, 1933, 2027, 193, 2221, 211,
Found in Database : 7, 11, 17, 19, 31, 43, 47, 53, 73, 83, 97, 103, 107, 109, 113, 131, 139,