Inhaltsverzeichnis

Development of
Algorithmic Constructions

17:36:44
Deutsch
20.Apr 2024

Polynom = x^2+28x-53

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) = 53 = 53
f(1) = 3 = 3
f(2) = 7 = 7
f(3) = 5 = 5
f(4) = 75 = 3*5*5
f(5) = 7 = 7
f(6) = 151 = 151
f(7) = 3 = 3
f(8) = 235 = 5*47
f(9) = 35 = 5*7
f(10) = 327 = 3*109
f(11) = 47 = 47
f(12) = 427 = 7*61
f(13) = 15 = 3*5
f(14) = 535 = 5*107
f(15) = 37 = 37
f(16) = 651 = 3*7*31
f(17) = 89 = 89
f(18) = 775 = 5*5*31
f(19) = 105 = 3*5*7
f(20) = 907 = 907
f(21) = 61 = 61
f(22) = 1047 = 3*349
f(23) = 35 = 5*7
f(24) = 1195 = 5*239
f(25) = 159 = 3*53
f(26) = 1351 = 7*193
f(27) = 179 = 179
f(28) = 1515 = 3*5*101
f(29) = 25 = 5*5
f(30) = 1687 = 7*241
f(31) = 111 = 3*37
f(32) = 1867 = 1867
f(33) = 245 = 5*7*7
f(34) = 2055 = 3*5*137
f(35) = 269 = 269
f(36) = 2251 = 2251
f(37) = 147 = 3*7*7
f(38) = 2455 = 5*491
f(39) = 5 = 5
f(40) = 2667 = 3*7*127
f(41) = 347 = 347
f(42) = 2887 = 2887
f(43) = 375 = 3*5*5*5
f(44) = 3115 = 5*7*89
f(45) = 101 = 101
f(46) = 3351 = 3*1117
f(47) = 217 = 7*31
f(48) = 3595 = 5*719
f(49) = 465 = 3*5*31
f(50) = 3847 = 3847
f(51) = 497 = 7*71
f(52) = 4107 = 3*37*37
f(53) = 265 = 5*53
f(54) = 4375 = 5*5*5*5*7
f(55) = 141 = 3*47
f(56) = 4651 = 4651
f(57) = 599 = 599
f(58) = 4935 = 3*5*7*47
f(59) = 635 = 5*127
f(60) = 5227 = 5227
f(61) = 21 = 3*7
f(62) = 5527 = 5527
f(63) = 355 = 5*71
f(64) = 5835 = 3*5*389
f(65) = 749 = 7*107
f(66) = 6151 = 6151
f(67) = 789 = 3*263
f(68) = 6475 = 5*5*7*37
f(69) = 415 = 5*83
f(70) = 6807 = 3*2269
f(71) = 109 = 109
f(72) = 7147 = 7*1021
f(73) = 915 = 3*5*61
f(74) = 7495 = 5*1499
f(75) = 959 = 7*137
f(76) = 7851 = 3*2617
f(77) = 251 = 251
f(78) = 8215 = 5*31*53
f(79) = 525 = 3*5*5*7
f(80) = 8587 = 31*277
f(81) = 1097 = 1097
f(82) = 8967 = 3*7*7*61
f(83) = 1145 = 5*229
f(84) = 9355 = 5*1871
f(85) = 597 = 3*199
f(86) = 9751 = 7*7*199
f(87) = 311 = 311
f(88) = 10155 = 3*5*677
f(89) = 1295 = 5*7*37
f(90) = 10567 = 10567
f(91) = 1347 = 3*449
f(92) = 10987 = 10987
f(93) = 175 = 5*5*7
f(94) = 11415 = 3*5*761
f(95) = 727 = 727
f(96) = 11851 = 7*1693
f(97) = 1509 = 3*503
f(98) = 12295 = 5*2459
f(99) = 1565 = 5*313
f(100) = 12747 = 3*7*607

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+28x-53

f(0)=53
f(1)=3
f(2)=7
f(3)=5
f(4)=1
f(5)=1
f(6)=151
f(7)=1
f(8)=47
f(9)=1
f(10)=109
f(11)=1
f(12)=61
f(13)=1
f(14)=107
f(15)=37
f(16)=31
f(17)=89
f(18)=1
f(19)=1
f(20)=907
f(21)=1
f(22)=349
f(23)=1
f(24)=239
f(25)=1
f(26)=193
f(27)=179
f(28)=101
f(29)=1
f(30)=241
f(31)=1
f(32)=1867
f(33)=1
f(34)=137
f(35)=269
f(36)=2251
f(37)=1
f(38)=491
f(39)=1
f(40)=127
f(41)=347
f(42)=2887
f(43)=1
f(44)=1
f(45)=1
f(46)=1117
f(47)=1
f(48)=719
f(49)=1
f(50)=3847
f(51)=71
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=4651
f(57)=599
f(58)=1
f(59)=1
f(60)=5227
f(61)=1
f(62)=5527
f(63)=1
f(64)=389
f(65)=1
f(66)=6151
f(67)=263
f(68)=1
f(69)=83
f(70)=2269
f(71)=1
f(72)=1021
f(73)=1
f(74)=1499
f(75)=1
f(76)=2617
f(77)=251
f(78)=1
f(79)=1
f(80)=277
f(81)=1097
f(82)=1
f(83)=229
f(84)=1871
f(85)=199
f(86)=1
f(87)=311
f(88)=677
f(89)=1
f(90)=10567
f(91)=449
f(92)=10987
f(93)=1
f(94)=761
f(95)=727
f(96)=1693
f(97)=503
f(98)=2459
f(99)=313

b) Substitution of the polynom
The polynom f(x)=x^2+28x-53 could be written as f(y)= y^2-249 with x=y-14

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

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

53, 3, 7, 5, 1, 1, 151, 1, 47, 1, 109, 1, 61, 1, 107, 37, 31, 89, 1, 1, 907, 1, 349, 1, 239, 1, 193, 179, 101, 1, 241, 1, 1867, 1, 137, 269, 2251, 1, 491, 1, 127, 347, 2887, 1, 1, 1, 1117, 1, 719, 1, 3847, 71, 1, 1, 1, 1, 4651, 599, 1, 1, 5227, 1, 5527, 1, 389, 1, 6151, 263, 1, 83, 2269, 1, 1021, 1, 1499, 1, 2617, 251, 1, 1, 277, 1097, 1, 229, 1871, 199, 1, 311, 677, 1, 10567, 449, 10987, 1, 761, 727, 1693, 503, 2459, 313, 607, 811, 281, 1, 547, 1, 1, 257, 2927, 1, 2161, 1, 5209, 397, 461, 683, 16651, 1, 1, 1, 17707, 1, 1, 463, 1, 149, 523, 409, 569, 1, 6829, 1, 21067, 1, 1, 1, 7417, 2819, 653, 1, 757, 743, 1, 1, 4943, 1, 1, 3209, 1733, 1, 26647, 1, 1, 691, 373, 3539, 4093, 1, 5867, 1, 10009, 3797, 30727, 1, 6287, 1987, 1531, 1, 1, 1, 4801, 1, 1, 1, 7019, 739, 35851, 647, 2441, 1, 1, 787, 38167, 1, 1, 4919, 1, 1, 8111, 1, 13789, 1, 42187, 1, 1229, 1, 1, 2767, 1277, 1, 1231, 821, 499, 1171, 1, 1, 1, 3037, 467, 1237, 49927, 2099, 1, 641, 3449, 233, 1423, 2213, 2143, 1, 18169, 859, 1, 1, 11279, 7109, 2731, 7229, 1, 1, 587, 1, 20089, 1, 12251, 1, 8893, 1, 4217, 797, 9181, 2699, 65287, 1, 4421, 4177, 1433, 1, 13679, 1723, 3307, 8747, 70507, 1, 1, 4507, 1, 1307, 14747, 619, 74827, 673, 25309, 1, 1, 1, 2521, 9839, 1, 1, 80407, 1, 81547, 2053, 1, 1487, 1181, 1759, 1, 1, 28729, 10847, 1783, 733, 1, 1, 29917, 5647, 18191, 1, 1, 11597, 4447, 1, 1, 1, 13693, 1, 6473, 1, 98347, 1031, 99607, 1, 1, 12689, 14593, 4283, 1, 1301, 4987, 1, 1, 1, 21467, 13499, 36217, 1, 1, 1, 15901, 13997, 37549, 2833, 3257, 2389, 1, 1, 1, 1, 1, 1, 1, 751, 1151, 1, 122251, 1, 3533, 3109, 887, 1123, 126487, 1, 25583, 2297, 43117, 1, 1, 1, 132247, 8311, 6367, 3361, 5407, 809, 136651, 1, 9209, 1, 139627, 5849, 20161, 3547, 1, 4481, 20593, 3019, 5827, 1, 49069, 1, 148747, 1, 30059, 4721, 1033, 19079, 1, 1, 3163, 1217, 52189, 1, 1, 1, 1493, 1, 1, 2027, 1, 853, 164587, 827, 1583, 20879, 3167, 1, 1, 2129, 1, 1, 172807, 1447, 997, 10957, 1, 5531, 5081, 1489, 179527, 3221, 1, 1, 36587, 1, 184651, 23189, 1, 1, 188107, 1, 1, 1, 1, 1, 1, 8093, 39023, 1, 65629, 1, 1, 1663, 1, 25169, 9631, 12697, 1103, 1, 1621, 25847, 1, 1, 41903, 1, 1, 13267, 1, 1, 991, 8999, 6997, 1, 2917, 3433, 947, 1319, 44507, 1, 10687, 7043, 2543, 1, 6521, 28649, 76717, 4127, 9283, 971, 234007, 1049, 78649, 5923, 1, 1, 239851, 1, 1, 1, 243787, 1, 1373, 1, 1, 2221, 1823, 1, 7193, 1, 84589, 31847, 36541, 1, 51563, 2311, 2341, 32609, 52379, 1, 4327, 16561, 1, 1669, 10723, 11213, 38593, 1, 18149, 1, 1, 5737, 1, 1, 1, 34949, 40093, 5869, 11311, 1, 13567, 35747, 287047, 1, 57839, 1, 97117, 1, 1249, 1, 1, 37097, 99289, 1, 8573, 3137, 1, 5417, 20297, 7639, 1, 1, 308887, 1, 2963, 1259, 313351, 13103, 1, 1, 1, 1, 320107, 2677, 2579, 1, 108217, 10181, 9341, 1367, 4637, 1, 15787, 8317, 1, 1, 336151, 1, 4513, 1213, 1, 14249, 1, 1, 1, 1, 1, 14543, 1, 1, 117529, 22111, 2591, 1, 71471, 44819, 1, 45119, 72431, 1, 52081, 22861, 1, 1, 73883, 15443, 371851, 3331, 24953, 2347, 1, 15749, 379207, 9511, 1, 1, 384151, 1, 1459, 9697, 1, 6971, 391627, 1637, 11261, 3089, 1, 49739, 2281, 1, 401707, 1, 1, 1, 81359, 1, 409351, 51329, 3923, 1, 414487, 1, 59581, 10459, 1, 7517, 1, 1, 2741, 1, 1601, 53597, 61441, 1, 2339, 27127, 20731, 6823, 1, 1, 5309, 1, 147769, 1, 17839, 9319, 1, 56249, 30089, 11317, 1753, 1, 456727, 1, 1, 1, 9833, 1, 3719, 1, 3181, 29311, 470347, 3931, 1931, 1, 158617, 4261, 95723, 1, 481387, 1, 1, 1, 13913, 5087, 1, 30697, 4691, 1, 6977, 2957, 8167, 1, 1, 2243, 503851, 1, 1, 12703, 5479, 1, 1, 2141, 20611, 9227, 172717, 1, 104207, 1, 523927, 8209, 25087, 1, 1999, 22133, 1619, 16691, 1, 1, 1543, 1, 541447, 1, 36293, 1, 78193, 5717, 110063, 1, 26347, 2237, 556267, 1, 3023, 1, 187417, 10067, 113051, 4723, 81181, 1, 3593, 1, 1, 23993, 577351, 10337, 38693, 3637, 583447, 1741, 5807, 1, 1, 1997, 6659, 12379, 17021, 3733, 1, 1, 19417, 1, 121007, 1, 202717, 1, 1, 5107, 2683, 2081, 4201, 1, 124139, 1, 623851, 78179, 41801, 1, 1, 6581, 90481, 7937, 42437, 79769, 91393, 26723, 128591, 1, 215389, 1, 17551, 1, 130523, 1, 31231, 10273, 1, 2753, 94621, 82997, 1747, 2383, 5351, 1, 672151, 1, 1, 16927, 2063, 28349, 2179, 4273, 1, 42937, 8297, 1, 1, 17341, 4373, 1, 1, 1, 1, 87959, 235117, 88379, 20249, 1, 2837, 6373, 3359, 17929, 1, 4289, 7151, 45247, 6911, 2273, 4073, 30449, 1, 3671, 1, 1, 739351, 15439, 2803, 2659, 248749, 93497, 107101, 1, 1, 1, 1, 2017, 152027, 1, 763627, 11959, 255709, 1, 154127, 32183, 1, 96989, 10369, 9743, 1, 2039, 5197, 1, 52553, 1, 791851, 1, 1, 1993, 38047, 1, 1, 6703, 1, 50497, 8707, 3623, 162671, 6793, 5483, 14621, 1, 1, 23549, 17209, 827851, 1, 7919, 1, 2239, 1, 838807, 1, 1, 15077, 3511, 1, 24281, 5323, 284509, 1, 1, 7159, 1, 1, 1, 1, 6947, 1, 872107, 1, 1, 21943, 175919, 4591, 2381, 1, 59141, 1, 890887, 37199, 894667, 1, 1, 3517, 2113, 1, 181211, 22699, 1, 28493, 913687, 1, 183503, 1, 9907, 16487, 1, 3863, 132721, 1, 310969, 23371, 1, 39113, 25423, 1, 62969, 11831, 948427, 5657, 1, 23857, 1, 59887, 960151, 5011, 1, 24151, 322669, 17321, 2801, 2029, 2749, 8731, 326617, 1, 28109, 1, 4133, 61861, 1, 6211, 199151, 5939, 14081, 125219, 1, 1, 1007767, 1, 144541, 1, 1, 2707, 1, 1, 4357, 1,

6. Sequence of the polynom (only primes)

53, 3, 7, 5, 151, 47, 109, 61, 107, 37, 31, 89, 907, 349, 239, 193, 179, 101, 241, 1867, 137, 269, 2251, 491, 127, 347, 2887, 1117, 719, 3847, 71, 4651, 599, 5227, 5527, 389, 6151, 263, 83, 2269, 1021, 1499, 2617, 251, 277, 1097, 229, 1871, 199, 311, 677, 10567, 449, 10987, 761, 727, 1693, 503, 2459, 313, 607, 811, 281, 547, 257, 2927, 2161, 5209, 397, 461, 683, 16651, 17707, 463, 149, 523, 409, 569, 6829, 21067, 7417, 2819, 653, 757, 743, 4943, 3209, 1733, 26647, 691, 373, 3539, 4093, 5867, 10009, 3797, 30727, 6287, 1987, 1531, 4801, 7019, 739, 35851, 647, 2441, 787, 38167, 4919, 8111, 13789, 42187, 1229, 2767, 1277, 1231, 821, 499, 1171, 3037, 467, 1237, 49927, 2099, 641, 3449, 233, 1423, 2213, 2143, 18169, 859, 11279, 7109, 2731, 7229, 587, 20089, 12251, 8893, 4217, 797, 9181, 2699, 65287, 4421, 4177, 1433, 13679, 1723, 3307, 8747, 70507, 4507, 1307, 14747, 619, 74827, 673, 25309, 2521, 9839, 80407, 81547, 2053, 1487, 1181, 1759, 28729, 10847, 1783, 733, 29917, 5647, 18191, 11597, 4447, 13693, 6473, 98347, 1031, 99607, 12689, 14593, 4283, 1301, 4987, 21467, 13499, 36217, 15901, 13997, 37549, 2833, 3257, 2389, 751, 1151, 122251, 3533, 3109, 887, 1123, 126487, 25583, 2297, 43117, 132247, 8311, 6367, 3361, 5407, 809, 136651, 9209, 139627, 5849, 20161, 3547, 4481, 20593, 3019, 5827, 49069, 148747, 30059, 4721, 1033, 19079, 3163, 1217, 52189, 1493, 2027, 853, 164587, 827, 1583, 20879, 3167, 2129, 172807, 1447, 997, 10957, 5531, 5081, 1489, 179527, 3221, 36587, 184651, 23189, 188107, 8093, 39023, 65629, 1663, 25169, 9631, 12697, 1103, 1621, 25847, 41903, 13267, 991, 8999, 6997, 2917, 3433, 947, 1319, 44507, 10687, 7043, 2543, 6521, 28649, 76717, 4127, 9283, 971, 234007, 1049, 78649, 5923, 239851, 243787, 1373, 2221, 1823, 7193, 84589, 31847, 36541, 51563, 2311, 2341, 32609, 52379, 4327, 16561, 1669, 10723, 11213, 38593, 18149, 5737, 34949, 40093, 5869, 11311, 13567, 35747, 287047, 57839, 97117, 1249, 37097, 99289, 8573, 3137, 5417, 20297, 7639, 308887, 2963, 1259, 313351, 13103, 320107, 2677, 2579, 108217, 10181, 9341, 1367, 4637, 15787, 8317, 336151, 4513, 1213, 14249, 14543, 117529, 22111, 2591, 71471, 44819, 45119, 72431, 52081, 22861, 73883, 15443, 371851, 3331, 24953, 2347, 15749, 379207, 9511, 384151, 1459, 9697, 6971, 391627, 1637, 11261, 3089, 49739, 2281, 401707, 81359, 409351, 51329, 3923, 414487, 59581, 10459, 7517, 2741, 1601, 53597, 61441, 2339, 27127, 20731, 6823, 5309, 147769, 17839, 9319, 56249, 30089, 11317, 1753, 456727, 9833, 3719, 3181, 29311, 470347, 3931, 1931, 158617, 4261, 95723, 481387, 13913, 5087, 30697, 4691, 6977, 2957, 8167, 2243, 503851, 12703, 5479, 2141, 20611, 9227, 172717, 104207, 523927, 8209, 25087, 1999, 22133, 1619, 16691, 1543, 541447, 36293, 78193, 5717, 110063, 26347, 2237, 556267, 3023, 187417, 10067, 113051, 4723, 81181, 3593, 23993, 577351, 10337, 38693, 3637, 583447, 1741, 5807, 1997, 6659, 12379, 17021, 3733, 19417, 121007, 202717, 5107, 2683, 2081, 4201, 124139, 623851, 78179, 41801, 6581, 90481, 7937, 42437, 79769, 91393, 26723, 128591, 215389, 17551, 130523, 31231, 10273, 2753, 94621, 82997, 1747, 2383, 5351, 672151, 16927, 2063, 28349, 2179, 4273, 42937, 8297, 17341, 4373, 87959, 235117, 88379, 20249, 2837, 6373, 3359, 17929, 4289, 7151, 45247, 6911, 2273, 4073, 30449, 3671, 739351, 15439, 2803, 2659, 248749, 93497, 107101, 2017, 152027, 763627, 11959, 255709, 154127, 32183, 96989, 10369, 9743, 2039, 5197, 52553, 791851, 1993, 38047, 6703, 50497, 8707, 3623, 162671, 6793, 5483, 14621, 23549, 17209, 827851, 7919, 2239, 838807, 15077, 3511, 24281, 5323, 284509, 7159, 6947, 872107, 21943, 175919, 4591, 2381, 59141, 890887, 37199, 894667, 3517, 2113, 181211, 22699, 28493, 913687, 183503, 9907, 16487, 3863, 132721, 310969, 23371, 39113, 25423, 62969, 11831, 948427, 5657, 23857, 59887, 960151, 5011, 24151, 322669, 17321, 2801, 2029, 2749, 8731, 326617, 28109, 4133, 61861, 6211, 199151, 5939, 14081, 125219, 1007767, 144541, 2707, 4357,

7. Distribution of the primes

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

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)
1106330.6000000.3000000.6000000.0000000.0000000.000000
21005814440.5800000.1400000.5800009.6666674.66666714.666667
31.000610795310.6100000.0790000.61000010.5172415.64285712.068182
410.0006.3605375.8230.6360000.0537000.63600010.4262296.79746810.966102
5100.00064.8994.23660.6630.6489900.0423600.64899010.2042467.88826810.417826
61.000.000656.29934.992621.3070.6562990.0349920.65629910.1126218.26062310.241943
710.000.0006.618.146293.7096.324.4370.6618150.0293710.66181510.0840418.39360410.179246
8100.000.00066.574.8392.544.27864.030.5610.6657480.0254430.66574810.0594408.66258110.124310
91.000.000.000668.796.77922.447.548646.349.2310.6687970.0224480.66879710.0457898.82275810.094387
1010.000.000.0006.712.311.060200.894.0276.511.417.0330.6712310.0200890.67123110.0363998.94948710.074146


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
243210.7500000.5000000.2500001.0000001.0000001.000000
385320.6250000.3750000.2500001.6666671.5000002.000000
4169360.5625000.1875000.3750001.8000001.0000003.000000
532185130.5625000.1562500.4062502.0000001.6666672.166667
6643311220.5156250.1718750.3437501.8333332.2000001.692308
71287416580.5781250.1250000.4531252.2424241.4545452.636364
8256149251240.5820310.0976560.4843752.0135141.5625002.137931
9512304442600.5937500.0859380.5078122.0402681.7600002.096774
101.024626805460.6113280.0781250.5332032.0592111.8181822.100000
112.0481.2791371.1420.6245120.0668950.5576172.0431311.7125002.091575
124.0962.5812492.3320.6301270.0607910.5693362.0179831.8175182.042032
138.1925.2074514.7560.6356200.0550540.5805662.0174351.8112452.039451
1416.38410.4818359.6460.6397090.0509640.5887452.0128671.8514412.028175
1532.76821.1011.55119.5500.6439510.0473330.5966192.0132621.8574852.026747
1665.53642.4032.93639.4670.6470180.0448000.6022192.0095261.8929722.018772
17131.07285.2005.43079.7700.6500240.0414280.6085972.0092921.8494552.021182
18262.144171.10610.212160.8940.6527180.0389560.6137622.0082861.8806632.016974
19524.288343.24519.321323.9240.6546880.0368520.6178362.0060371.8919902.013276
201.048.576688.28836.549651.7390.6564030.0348560.6215472.0052381.8916722.012012
212.097.1521.380.62169.0781.311.5430.6583310.0329390.6253922.0058771.8900112.012375
224.194.3042.767.955130.8242.637.1310.6599320.0311910.6287412.0048621.8938592.010709
238.388.6085.548.718249.5275.299.1910.6614590.0297460.6317132.0046271.9073492.009453
2416.777.21611.119.719476.12910.643.5900.6627870.0283790.6344072.0040161.9081262.008531
2533.554.43222.281.195910.53721.370.6580.6640310.0271360.6368952.0037551.9123752.007843
2667.108.86444.637.0281.747.17342.889.8550.6651440.0260350.6391092.0033501.9188382.006951
27134.217.72889.412.9583.357.45286.055.5060.6661780.0250150.6411632.0031121.9216482.006430
28268.435.456179.084.9216.458.901172.626.0200.6671430.0240610.6430822.0028971.9237512.005985
29536.870.912358.652.91412.446.589346.206.3250.6680430.0231840.6448602.0026971.9270442.005528
301.073.741.824718.204.37124.014.980694.189.3910.6688800.0223660.6465142.0025051.9294432.005132
312.147.483.6481.438.085.38646.397.5361.391.687.8500.6696610.0216060.6480552.0023351.9320252.004767
324.294.967.2962.879.320.33389.742.2422.789.578.0910.6703940.0208950.6494992.0021901.9342032.004457
338.589.934.5925.764.574.067173.767.6185.590.806.4490.6710850.0202290.6508562.0020611.9362972.004176
3417.179.869.18411.540.280.309336.832.45111.203.447.8580.6717330.0196060.6521262.0019311.9384082.003906


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
122110011
242110011
383210012
4163210012
5325410212
664111010515
7128161510817
825625241012112
951244431024119
101.02480791039140
112.0481371361067169
124.096249248101231125
138.192451450102161234
1416.384835834104071427
1532.7681.5511.550107721778
1665.5362.9362.935101.45911.476
17131.0725.4305.429102.67912.750
18262.14410.21210.211105.06815.143
19524.28819.32119.320109.64119.679
201.048.57636.54936.5481018.234118.314
212.097.15269.07869.0771034.468134.609
224.194.304130.824130.8231065.199165.624
238.388.608249.527249.52610124.6131124.913
2416.777.216476.129476.12810237.7481238.380
2533.554.432910.537910.53610454.3781456.158
2667.108.8641.747.1731.747.17210872.9621874.210
27134.217.7283.357.4523.357.451101.678.22011.679.231
28268.435.4566.458.9016.458.900103.229.91813.228.982
29536.870.91212.446.58912.446.588106.224.08816.222.500
301.073.741.82424.014.98024.014.9791012.009.527112.005.452
312.147.483.64846.397.53646.397.5351023.199.520123.198.015
324.294.967.29689.742.24289.742.2411044.871.855144.870.386
338.589.934.592173.767.618173.767.6171086.884.692186.882.925
3417.179.869.184336.832.451336.832.45010168.417.2061168.415.244


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
121000100
241000100
382010101
4166320231
53213663352
664228134585
712858273015121615
8256124586527343627
951226012613362617364
101.024546260285138124145139
112.0481.142549592287277295283
124.0962.3321.1081.223602580589561
138.1924.7562.3072.4481.2371.1541.2261.139
1416.3849.6464.6694.9762.5272.3212.4682.330
1532.76819.5509.46510.0845.1094.6945.0544.693
1665.53639.46719.23720.22910.3599.44110.1679.500
17131.07279.77039.02240.74720.74219.33520.33819.355
18262.144160.89478.91581.97841.49739.00141.40738.989
19524.288323.924159.039164.88483.16179.02083.10478.639
201.048.576651.739320.554331.184166.963159.390166.857158.529
212.097.1521.311.543645.700665.842335.209321.153335.116320.065
224.194.3042.637.1311.299.2121.337.918673.111646.582673.575643.863
238.388.6085.299.1912.613.7632.685.4271.351.3951.298.5231.351.2591.298.014
2416.777.21610.643.5905.255.5435.388.0462.711.7872.610.0512.711.9162.609.836
2533.554.43221.370.65810.557.46410.813.1935.439.0615.244.0965.442.1605.245.341
2667.108.86442.889.85521.200.41221.689.44210.909.48910.534.32510.910.49110.535.550
27134.217.72886.055.50642.557.06543.498.44021.873.41421.155.96521.871.89921.154.228
28268.435.456172.626.02085.413.24987.212.77043.843.95342.472.64843.842.44542.466.974
29536.870.912346.206.325171.374.319174.832.00587.874.50785.236.31087.873.62685.221.882
301.073.741.824694.189.391343.771.735350.417.655176.102.408170.994.884176.097.188170.994.911
312.147.483.6481.391.687.850689.431.809702.256.040352.835.403343.005.208352.844.819343.002.420
324.294.967.2962.789.578.0911.382.442.7841.407.135.306706.886.849687.905.835706.881.414687.903.993
338.589.934.5925.590.806.4492.771.600.2632.819.206.1851.416.059.4551.379.344.0001.416.074.6021.379.328.392
3417.179.869.18411.203.447.8585.555.694.0055.647.753.8522.836.457.0892.765.310.9932.836.419.3892.765.260.387


8. Check for existing Integer Sequences by OEIS

Found in Database : 53, 3, 7, 5, 1, 1, 151, 1, 47, 1, 109, 1, 61, 1, 107, 37, 31, 89, 1, 1,
Found in Database : 53, 3, 7, 5, 151, 47, 109, 61, 107, 37, 31, 89, 907, 349, 239, 193, 179, 101, 241, 1867, 137, 269, 2251, 491,
Found in Database : 3, 5, 7, 31, 37, 47, 53, 61, 71, 83, 89, 101, 107, 109, 127, 137, 149,