Inhaltsverzeichnis

Development of
Algorithmic Constructions

14:21:13
Deutsch
20.Apr 2024

Polynom = x^2+13x-37

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) = 37 = 37
f(1) = 23 = 23
f(2) = 7 = 7
f(3) = 11 = 11
f(4) = 31 = 31
f(5) = 53 = 53
f(6) = 77 = 7*11
f(7) = 103 = 103
f(8) = 131 = 131
f(9) = 161 = 7*23
f(10) = 193 = 193
f(11) = 227 = 227
f(12) = 263 = 263
f(13) = 301 = 7*43
f(14) = 341 = 11*31
f(15) = 383 = 383
f(16) = 427 = 7*61
f(17) = 473 = 11*43
f(18) = 521 = 521
f(19) = 571 = 571
f(20) = 623 = 7*89
f(21) = 677 = 677
f(22) = 733 = 733
f(23) = 791 = 7*113
f(24) = 851 = 23*37
f(25) = 913 = 11*83
f(26) = 977 = 977
f(27) = 1043 = 7*149
f(28) = 1111 = 11*101
f(29) = 1181 = 1181
f(30) = 1253 = 7*179
f(31) = 1327 = 1327
f(32) = 1403 = 23*61
f(33) = 1481 = 1481
f(34) = 1561 = 7*223
f(35) = 1643 = 31*53
f(36) = 1727 = 11*157
f(37) = 1813 = 7*7*37
f(38) = 1901 = 1901
f(39) = 1991 = 11*181
f(40) = 2083 = 2083
f(41) = 2177 = 7*311
f(42) = 2273 = 2273
f(43) = 2371 = 2371
f(44) = 2471 = 7*353
f(45) = 2573 = 31*83
f(46) = 2677 = 2677
f(47) = 2783 = 11*11*23
f(48) = 2891 = 7*7*59
f(49) = 3001 = 3001
f(50) = 3113 = 11*283
f(51) = 3227 = 7*461
f(52) = 3343 = 3343
f(53) = 3461 = 3461
f(54) = 3581 = 3581
f(55) = 3703 = 7*23*23
f(56) = 3827 = 43*89
f(57) = 3953 = 59*67
f(58) = 4081 = 7*11*53
f(59) = 4211 = 4211
f(60) = 4343 = 43*101
f(61) = 4477 = 11*11*37
f(62) = 4613 = 7*659
f(63) = 4751 = 4751
f(64) = 4891 = 67*73
f(65) = 5033 = 7*719
f(66) = 5177 = 31*167
f(67) = 5323 = 5323
f(68) = 5471 = 5471
f(69) = 5621 = 7*11*73
f(70) = 5773 = 23*251
f(71) = 5927 = 5927
f(72) = 6083 = 7*11*79
f(73) = 6241 = 79*79
f(74) = 6401 = 37*173
f(75) = 6563 = 6563
f(76) = 6727 = 7*31*31
f(77) = 6893 = 61*113
f(78) = 7061 = 23*307
f(79) = 7231 = 7*1033
f(80) = 7403 = 11*673
f(81) = 7577 = 7577
f(82) = 7753 = 7753
f(83) = 7931 = 7*11*103
f(84) = 8111 = 8111
f(85) = 8293 = 8293
f(86) = 8477 = 7*7*173
f(87) = 8663 = 8663
f(88) = 8851 = 53*167
f(89) = 9041 = 9041
f(90) = 9233 = 7*1319
f(91) = 9427 = 11*857
f(92) = 9623 = 9623
f(93) = 9821 = 7*23*61
f(94) = 10021 = 11*911
f(95) = 10223 = 10223
f(96) = 10427 = 10427
f(97) = 10633 = 7*7*7*31
f(98) = 10841 = 37*293
f(99) = 11051 = 43*257
f(100) = 11263 = 7*1609

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

f(0)=37
f(1)=23
f(2)=7
f(3)=11
f(4)=31
f(5)=53
f(6)=1
f(7)=103
f(8)=131
f(9)=1
f(10)=193
f(11)=227
f(12)=263
f(13)=43
f(14)=1
f(15)=383
f(16)=61
f(17)=1
f(18)=521
f(19)=571
f(20)=89
f(21)=677
f(22)=733
f(23)=113
f(24)=1
f(25)=83
f(26)=977
f(27)=149
f(28)=101
f(29)=1181
f(30)=179
f(31)=1327
f(32)=1
f(33)=1481
f(34)=223
f(35)=1
f(36)=157
f(37)=1
f(38)=1901
f(39)=181
f(40)=2083
f(41)=311
f(42)=2273
f(43)=2371
f(44)=353
f(45)=1
f(46)=2677
f(47)=1
f(48)=59
f(49)=3001
f(50)=283
f(51)=461
f(52)=3343
f(53)=3461
f(54)=3581
f(55)=1
f(56)=1
f(57)=67
f(58)=1
f(59)=4211
f(60)=1
f(61)=1
f(62)=659
f(63)=4751
f(64)=73
f(65)=719
f(66)=167
f(67)=5323
f(68)=5471
f(69)=1
f(70)=251
f(71)=5927
f(72)=79
f(73)=1
f(74)=173
f(75)=6563
f(76)=1
f(77)=1
f(78)=307
f(79)=1033
f(80)=673
f(81)=7577
f(82)=7753
f(83)=1
f(84)=8111
f(85)=8293
f(86)=1
f(87)=8663
f(88)=1
f(89)=9041
f(90)=1319
f(91)=857
f(92)=9623
f(93)=1
f(94)=911
f(95)=10223
f(96)=10427
f(97)=1
f(98)=293
f(99)=257

b) Substitution of the polynom
The polynom f(x)=x^2+13x-37 could be written as f(y)= y^2-79.25 with x=y-6.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+6.5
f'(x)>2x+12

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

37, 23, 7, 11, 31, 53, 1, 103, 131, 1, 193, 227, 263, 43, 1, 383, 61, 1, 521, 571, 89, 677, 733, 113, 1, 83, 977, 149, 101, 1181, 179, 1327, 1, 1481, 223, 1, 157, 1, 1901, 181, 2083, 311, 2273, 2371, 353, 1, 2677, 1, 59, 3001, 283, 461, 3343, 3461, 3581, 1, 1, 67, 1, 4211, 1, 1, 659, 4751, 73, 719, 167, 5323, 5471, 1, 251, 5927, 79, 1, 173, 6563, 1, 1, 307, 1033, 673, 7577, 7753, 1, 8111, 8293, 1, 8663, 1, 9041, 1319, 857, 9623, 1, 911, 10223, 10427, 1, 293, 257, 1609, 499, 1063, 277, 1733, 1123, 12577, 1, 1, 1, 1, 1, 13963, 1291, 2063, 14683, 1, 15173, 2203, 15671, 15923, 2311, 16433, 16691, 1, 2459, 17477, 1613, 1, 1, 18553, 281, 2729, 19381, 19661, 1, 1, 1, 1, 1, 21383, 409, 1, 22271, 22571, 1, 1, 1021, 643, 313, 24413, 1, 317, 3623, 421, 26003, 3761, 2423, 26981, 881, 359, 1, 1231, 4093, 547, 29333, 503, 4289, 1, 991, 1, 2857, 859, 32141, 4643, 557, 1, 4799, 33961, 3121, 34703, 5011, 1, 35831, 739, 1, 1, 37363, 5393, 887, 1, 1, 39323, 1, 757, 827, 40927, 41333, 1, 691, 1373, 3907, 6199, 1, 4021, 6379, 45077, 45503, 1997, 1, 641, 569, 619, 467, 48541, 1, 1, 941, 50321, 7253, 1, 1667, 1409, 683, 53051, 907, 701, 54443, 1277, 55381, 1, 1, 1321, 1, 1, 58243, 58727, 769, 1, 2617, 8669, 1, 61673, 62171, 1279, 5743, 1721, 1, 5881, 577, 65713, 9461, 2153, 67261, 1, 1, 6257, 1, 1, 1, 1163, 10211, 1, 72551, 73091, 1, 74177, 6793, 10753, 75821, 1, 1789, 11069, 78041, 947, 1, 1307, 3491, 7351, 11633, 82003, 7507, 1697, 1, 1429, 3691, 12211, 967, 1187, 1, 87833, 88427, 8093, 1, 1087, 90823, 1, 92033, 92641, 93251, 1, 94477, 95093, 1, 96331, 96953, 97577, 14029, 4297, 1259, 1, 9157, 101363, 102001, 1, 1, 1009, 14939, 2447, 105871, 2879, 1, 9803, 1, 1, 1, 110477, 111143, 15973, 112481, 113153, 1, 1709, 1, 115861, 16649, 10657, 1933, 16943, 119291, 119983, 120677, 2477, 2069, 11161, 1, 5399, 11353, 125591, 18043, 809, 127727, 1, 2437, 5647, 1, 1, 1, 12071, 19073, 134243, 1, 1201, 1, 137191, 137933, 1801, 139423, 140171, 1, 1, 142427, 1093, 20563, 144701, 145463, 1, 1, 147761, 148531, 1, 150077, 2473, 151631, 21773, 1, 4967, 22109, 1, 1979, 157133, 1, 1, 159521, 1, 161123, 839, 1, 1, 1, 1, 1, 1, 167611, 3917, 24179, 3209, 1, 24533, 172561, 1433, 2953, 1, 15991, 176741, 1103, 1579, 5783, 1, 1, 1051, 16607, 1, 8017, 1531, 186113, 26711, 187843, 188711, 1, 1, 5171, 1, 27583, 2657, 17713, 27961, 196613, 1, 198391, 1, 200177, 201073, 1, 5483, 203773, 1, 1, 6661, 207401, 29759, 209227, 210143, 211061, 2753, 212903, 213827, 2789, 215681, 1, 2621, 1, 1, 220351, 1, 1, 3331, 2837, 1, 1, 3847, 32561, 228883, 229841, 1549, 1, 21157, 233693, 4789, 1, 1061, 6421, 1, 239531, 10457, 34499, 5639, 22133, 244451, 5009, 1, 1367, 1543, 249421, 1399, 2441, 36061, 253433, 23131, 36493, 8273, 1, 3541, 1, 4271, 7069, 37511, 1, 264631, 24151, 1229, 267727, 1, 38543, 270841, 11821, 272927, 39139, 7433, 1, 1, 278177, 2711, 1, 40193, 282413, 4231, 5807, 285611, 1, 12511, 1, 2213, 1, 3793, 5531, 294227, 295313, 1, 1, 298583, 1381, 1, 3637, 302971, 1, 3863, 3877, 43913, 308501, 1, 310727, 44549, 1237, 3529, 1217, 1, 317453, 318581, 45673, 320843, 13999, 1489, 324251, 29581, 1, 46811, 1, 1, 47303, 332273, 333427, 1, 47963, 336901, 1, 1, 340393, 31051, 1, 1, 5657, 1913, 49633, 1, 349793, 31907, 7187, 1, 1, 1, 356927, 9679, 1, 51503, 361723, 362927, 4729, 3547, 15937, 1, 52711, 370193, 11981, 53233, 2161, 4519, 16361, 4903, 378761, 379993, 4951, 382463, 1493, 384941, 1283, 1, 388673, 1, 1, 392423, 393677, 1, 2659, 12821, 1, 1, 401243, 402511, 1559, 1601, 406327, 58229, 37171, 1, 411443, 8423, 414013, 7039, 59513, 417883, 1, 1, 1, 38461, 18451, 60811, 7237, 5867, 1, 61559, 432227, 3583, 1, 436181, 1, 438827, 1, 10267, 1723, 1, 445477, 10391, 1, 1, 14543, 1, 1, 19777, 1, 1823, 1, 2543, 2579, 1, 1, 20249, 42463, 66923, 5279, 1, 67511, 473953, 475331, 1627, 1, 15467, 7883, 6263, 5827, 13109, 21149, 1, 1741, 9257, 70289, 1447, 8387, 1, 1, 499063, 1, 71699, 1, 6389, 1, 1, 46273, 1, 1, 46663, 1, 516163, 73943, 22567, 1879, 74561, 16883, 47711, 526271, 75389, 1, 23071, 10859, 10067, 535013, 7349, 1, 5237, 49171, 77479, 543827, 1, 546781, 1, 5443, 3511, 3433, 1, 555691, 1, 79811, 560173, 51061, 1871, 24551, 3163, 10711, 1, 2957, 1621, 7451, 575243, 1, 52571, 1, 1, 582853, 2693, 585911, 25541, 588977, 7669, 3271, 1, 1, 3449, 5923, 1, 85903, 602873, 604427, 1, 5021, 609101, 1951, 7951, 1, 3557, 2843, 1, 1619, 3221, 1, 1, 626393, 1, 1, 631151, 20411, 90619, 1, 7681, 91303, 1, 58393, 643927, 92219, 58831, 8887, 1753, 1, 653593, 655211, 1, 658453, 2609, 94529, 663331, 1, 21503, 95461, 669863, 671501, 1, 11437, 676427, 61643, 97103, 681371, 2003, 1, 686333, 2741, 11689, 1, 1, 1, 9043, 30347, 1, 1, 14347, 704681, 16427, 101149, 7027, 30931, 19273, 9283, 716483, 23167, 9349, 721571, 723271, 3251, 103811, 728383, 730091, 104543, 66683, 1, 1, 1, 4969, 8941, 106261, 8377, 1, 749011, 4663, 1, 9547, 1, 68881, 759433, 761177, 1, 1, 766421, 1, 769927, 1, 17987, 1877, 1, 778727, 2593, 2179, 2521, 785803, 16073, 25463, 1, 1, 794693, 1, 798263, 3089, 801841, 1, 115061, 1, 5153, 6701, 116089, 6217, 74203, 5081, 2897, 821663, 4931, 117899, 26681, 2309, 10789, 1, 8101, 6911, 119723, 9437, 841727, 3257, 27271, 1, 849083, 1, 1, 854621, 1, 19961, 1, 862033, 1, 865751, 1, 1, 1, 13033, 38047, 1, 14407, 880703, 2137, 1, 13229, 16759, 1, 1, 5167, 1, 1, 1, 901471, 1, 12401, 10193, 2129, 1, 2243, 914813, 1, 3631, 920561, 131783, 924403, 926327, 928253, 1, 1, 84913, 133711, 25349, 1987, 941791, 4349, 945677, 41201, 19379, 9421, 953473, 86857, 136769, 2081, 1, 1, 965227, 3301, 6173, 19819, 3463, 8629, 12689, 979031, 981011, 89363, 3803, 986963, 988951, 2671, 1, 994927, 1, 12973, 1000921, 14969, 1, 1006933, 43867, 1,

6. Sequence of the polynom (only primes)

37, 23, 7, 11, 31, 53, 103, 131, 193, 227, 263, 43, 383, 61, 521, 571, 89, 677, 733, 113, 83, 977, 149, 101, 1181, 179, 1327, 1481, 223, 157, 1901, 181, 2083, 311, 2273, 2371, 353, 2677, 59, 3001, 283, 461, 3343, 3461, 3581, 67, 4211, 659, 4751, 73, 719, 167, 5323, 5471, 251, 5927, 79, 173, 6563, 307, 1033, 673, 7577, 7753, 8111, 8293, 8663, 9041, 1319, 857, 9623, 911, 10223, 10427, 293, 257, 1609, 499, 1063, 277, 1733, 1123, 12577, 13963, 1291, 2063, 14683, 15173, 2203, 15671, 15923, 2311, 16433, 16691, 2459, 17477, 1613, 18553, 281, 2729, 19381, 19661, 21383, 409, 22271, 22571, 1021, 643, 313, 24413, 317, 3623, 421, 26003, 3761, 2423, 26981, 881, 359, 1231, 4093, 547, 29333, 503, 4289, 991, 2857, 859, 32141, 4643, 557, 4799, 33961, 3121, 34703, 5011, 35831, 739, 37363, 5393, 887, 39323, 757, 827, 40927, 41333, 691, 1373, 3907, 6199, 4021, 6379, 45077, 45503, 1997, 641, 569, 619, 467, 48541, 941, 50321, 7253, 1667, 1409, 683, 53051, 907, 701, 54443, 1277, 55381, 1321, 58243, 58727, 769, 2617, 8669, 61673, 62171, 1279, 5743, 1721, 5881, 577, 65713, 9461, 2153, 67261, 6257, 1163, 10211, 72551, 73091, 74177, 6793, 10753, 75821, 1789, 11069, 78041, 947, 1307, 3491, 7351, 11633, 82003, 7507, 1697, 1429, 3691, 12211, 967, 1187, 87833, 88427, 8093, 1087, 90823, 92033, 92641, 93251, 94477, 95093, 96331, 96953, 97577, 14029, 4297, 1259, 9157, 101363, 102001, 1009, 14939, 2447, 105871, 2879, 9803, 110477, 111143, 15973, 112481, 113153, 1709, 115861, 16649, 10657, 1933, 16943, 119291, 119983, 120677, 2477, 2069, 11161, 5399, 11353, 125591, 18043, 809, 127727, 2437, 5647, 12071, 19073, 134243, 1201, 137191, 137933, 1801, 139423, 140171, 142427, 1093, 20563, 144701, 145463, 147761, 148531, 150077, 2473, 151631, 21773, 4967, 22109, 1979, 157133, 159521, 161123, 839, 167611, 3917, 24179, 3209, 24533, 172561, 1433, 2953, 15991, 176741, 1103, 1579, 5783, 1051, 16607, 8017, 1531, 186113, 26711, 187843, 188711, 5171, 27583, 2657, 17713, 27961, 196613, 198391, 200177, 201073, 5483, 203773, 6661, 207401, 29759, 209227, 210143, 211061, 2753, 212903, 213827, 2789, 215681, 2621, 220351, 3331, 2837, 3847, 32561, 228883, 229841, 1549, 21157, 233693, 4789, 1061, 6421, 239531, 10457, 34499, 5639, 22133, 244451, 5009, 1367, 1543, 249421, 1399, 2441, 36061, 253433, 23131, 36493, 8273, 3541, 4271, 7069, 37511, 264631, 24151, 1229, 267727, 38543, 270841, 11821, 272927, 39139, 7433, 278177, 2711, 40193, 282413, 4231, 5807, 285611, 12511, 2213, 3793, 5531, 294227, 295313, 298583, 1381, 3637, 302971, 3863, 3877, 43913, 308501, 310727, 44549, 1237, 3529, 1217, 317453, 318581, 45673, 320843, 13999, 1489, 324251, 29581, 46811, 47303, 332273, 333427, 47963, 336901, 340393, 31051, 5657, 1913, 49633, 349793, 31907, 7187, 356927, 9679, 51503, 361723, 362927, 4729, 3547, 15937, 52711, 370193, 11981, 53233, 2161, 4519, 16361, 4903, 378761, 379993, 4951, 382463, 1493, 384941, 1283, 388673, 392423, 393677, 2659, 12821, 401243, 402511, 1559, 1601, 406327, 58229, 37171, 411443, 8423, 414013, 7039, 59513, 417883, 38461, 18451, 60811, 7237, 5867, 61559, 432227, 3583, 436181, 438827, 10267, 1723, 445477, 10391, 14543, 19777, 1823, 2543, 2579, 20249, 42463, 66923, 5279, 67511, 473953, 475331, 1627, 15467, 7883, 6263, 5827, 13109, 21149, 1741, 9257, 70289, 1447, 8387, 499063, 71699, 6389, 46273, 46663, 516163, 73943, 22567, 1879, 74561, 16883, 47711, 526271, 75389, 23071, 10859, 10067, 535013, 7349, 5237, 49171, 77479, 543827, 546781, 5443, 3511, 3433, 555691, 79811, 560173, 51061, 1871, 24551, 3163, 10711, 2957, 1621, 7451, 575243, 52571, 582853, 2693, 585911, 25541, 588977, 7669, 3271, 3449, 5923, 85903, 602873, 604427, 5021, 609101, 1951, 7951, 3557, 2843, 1619, 3221, 626393, 631151, 20411, 90619, 7681, 91303, 58393, 643927, 92219, 58831, 8887, 1753, 653593, 655211, 658453, 2609, 94529, 663331, 21503, 95461, 669863, 671501, 11437, 676427, 61643, 97103, 681371, 2003, 686333, 2741, 11689, 9043, 30347, 14347, 704681, 16427, 101149, 7027, 30931, 19273, 9283, 716483, 23167, 9349, 721571, 723271, 3251, 103811, 728383, 730091, 104543, 66683, 4969, 8941, 106261, 8377, 749011, 4663, 9547, 68881, 759433, 761177, 766421, 769927, 17987, 1877, 778727, 2593, 2179, 2521, 785803, 16073, 25463, 794693, 798263, 3089, 801841, 115061, 5153, 6701, 116089, 6217, 74203, 5081, 2897, 821663, 4931, 117899, 26681, 2309, 10789, 8101, 6911, 119723, 9437, 841727, 3257, 27271, 849083, 854621, 19961, 862033, 865751, 13033, 38047, 14407, 880703, 2137, 13229, 16759, 5167, 901471, 12401, 10193, 2129, 2243, 914813, 3631, 920561, 131783, 924403, 926327, 928253, 84913, 133711, 25349, 1987, 941791, 4349, 945677, 41201, 19379, 9421, 953473, 86857, 136769, 2081, 965227, 3301, 6173, 19819, 3463, 8629, 12689, 979031, 981011, 89363, 3803, 986963, 988951, 2671, 994927, 12973, 1000921, 14969, 1006933, 43867,

7. Distribution of the primes

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

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)
1109900.9000000.9000000.0000000.0000000.0000000.000000
21007344290.7300000.4400000.2900008.1111114.888889inf
31.0007202684520.7200000.2680000.4520009.8630136.09090915.586206
410.0007.1901.9005.2900.7190000.1900000.5290009.9861117.08955211.703540
5100.00071.50514.48657.0190.7150500.1448600.5701909.9450637.62421010.778639
61.000.000710.901118.287592.6140.7109010.1182870.5926149.9419778.16560810.393272
710.000.0007.082.0111.000.6426.081.3690.7082010.1000640.6081379.9620228.45944210.261939
8100.000.00070.619.0048.667.10861.951.8960.7061900.0866710.6195199.9716038.66154810.187162
91.000.000.000704.597.58476.468.469628.129.1150.7045980.0764680.6281299.9774498.82283610.138981
1010.000.000.0007.033.575.687684.325.2016.349.250.4860.7033580.0684330.6349259.9824028.94911610.108193


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
388801.0000001.0000000.0000001.6000001.600000-nan
416141220.8750000.7500000.1250001.7500001.500000inf
532271980.8437500.5937500.2500001.9285711.5833334.000000
6644731160.7343750.4843750.2500001.7407411.6315792.000000
71289353400.7265620.4140620.3125001.9787231.7096772.500000
8256186851010.7265620.3320310.3945312.0000001.6037742.525000
95123691582110.7207030.3085940.4121091.9838711.8588242.089109
101.0247342714630.7167970.2646480.4521481.9891601.7151902.194313
112.0481.4704969740.7177730.2421880.4755862.0027251.8302582.103672
124.0962.9488902.0580.7197270.2172850.5024412.0054421.7943552.112936
138.1925.8781.6014.2770.7175290.1954350.5220951.9938941.7988762.078231
1416.38411.7742.9138.8610.7186280.1777950.5408332.0030621.8194882.071779
1532.76823.4805.36518.1150.7165530.1637270.5528261.9942251.8417442.044352
1665.53646.9149.92236.9920.7158510.1513980.5644531.9980411.8493942.042065
17131.07293.72918.47475.2550.7150960.1409450.5741501.9978901.8619232.034359
18262.144186.94834.711152.2370.7131500.1324120.5807381.9945591.8789112.022949
19524.288373.22065.298307.9220.7118610.1245460.5873151.9963841.8811902.022649
201.048.576745.311123.649621.6620.7107840.1179210.5928631.9969751.8936112.018894
212.097.1521.488.904234.2601.254.6440.7099650.1117040.5982611.9976951.8945562.018209
224.194.3042.974.679445.5502.529.1290.7092190.1062270.6029911.9978981.9019472.015814
238.388.6085.942.210849.1455.093.0650.7083670.1012260.6071411.9975971.9058362.013762
2416.777.21611.873.1931.622.29710.250.8960.7076970.0966960.6110011.9981111.9105062.012717
2533.554.43223.725.6533.104.89520.620.7580.7070800.0925330.6145461.9982541.9138882.011606
2667.108.86447.413.0145.954.03241.458.9820.7065090.0887220.6177871.9983861.9176272.010546
27134.217.72894.755.23211.434.59783.320.6350.7059810.0851940.6207871.9985071.9204802.009712
28268.435.456189.369.16922.004.547167.364.6220.7054550.0819730.6234821.9985091.9243832.008682
29536.870.912378.488.59542.400.215336.088.3800.7049900.0789770.6260131.9986811.9268842.008121
301.073.741.824756.511.34581.809.881674.701.4640.7045560.0761910.6283651.9987691.9294692.007512
312.147.483.6481.512.164.202158.047.2151.354.116.9870.7041560.0735960.6305601.9988651.9318842.006987
324.294.967.2963.022.723.923305.703.8152.717.020.1080.7037830.0711770.6326061.9989391.9342562.006489
338.589.934.5926.042.421.600591.943.4145.450.478.1860.7034300.0689110.6345191.9989991.9363302.006050
3417.179.869.18412.079.243.8011.147.359.11810.931.884.6830.7031050.0667850.6363191.9990731.9382922.005675
3534.359.738.36824.147.917.5602.226.045.57321.921.871.9870.7027970.0647860.6380101.9991251.9401472.005315
3668.719.476.73648.276.045.9924.322.597.61343.953.448.3790.7025090.0629020.6396071.9991811.9418282.005004


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p=f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
123210012
245320113
388440224
41612571326
532198113457
6643113186799
712853193411141216
825685295616232323
95121585310536423941
101.0242719417760766471
112.048496170326117127125127
124.096890304586213221221235
138.1921.6015341.067397393407404
1416.3842.9139881.925731716732734
1532.7685.3651.7973.5681.3361.3371.3521.340
1665.5369.9223.2906.6322.5132.4462.4742.489
17131.07218.4746.19012.2844.6324.6034.5864.653
18262.14434.71111.64923.0628.7038.6488.6868.674
19524.28865.29821.84243.45616.30716.36516.22316.403
201.048.576123.64941.28882.36130.85930.97730.86630.947
212.097.152234.26078.065156.19558.52258.60258.52758.609
224.194.304445.550148.496297.054111.464111.414111.135111.537
238.388.608849.145283.043566.102212.497212.361211.782212.505
2416.777.2161.622.297540.8011.081.496405.260405.729405.091406.217
2533.554.4323.104.8951.035.2292.069.666776.363776.392775.579776.561
2667.108.8645.954.0321.984.1813.969.8511.488.7021.488.2821.488.0221.489.026
27134.217.72811.434.5973.810.1697.624.4282.858.9342.856.8192.858.1832.860.661
28268.435.45622.004.5477.334.32514.670.2225.502.5475.499.8675.500.5985.501.535
29536.870.91242.400.21514.133.94028.266.27510.599.95610.600.11010.600.41510.599.734
301.073.741.82481.809.88127.270.24154.539.64020.453.06220.452.50320.454.03920.450.277
312.147.483.648158.047.21552.682.993105.364.22239.515.31539.510.92639.513.11239.507.862
324.294.967.296305.703.815101.900.030203.803.78576.421.73376.433.61376.422.91776.425.552
338.589.934.592591.943.414197.308.184394.635.230147.985.904147.984.612147.992.958147.979.940
3417.179.869.1841.147.359.118382.439.852764.919.266286.844.215286.836.538286.850.319286.828.046
3534.359.738.3682.226.045.573741.990.1581.484.055.415556.506.132556.505.317556.535.043556.499.081
3668.719.476.7364.322.597.6131.440.832.6942.881.764.9191.080.661.4801.080.631.8001.080.673.2621.080.631.071


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
4162200110
5328262330
664166103562
7128401723812119
8256101465529272520
95122119711457515746
101.024463219244119121112111
112.048974473501242251240241
124.0962.0581.0061.052501510535512
138.1924.2772.1162.1611.0361.0571.0931.091
1416.3848.8614.3774.4842.1912.2072.2352.228
1532.76818.1158.8699.2464.4644.5034.5824.566
1665.53636.99218.24418.7489.0599.1889.3109.435
17131.07275.25537.24138.01418.70718.70118.91018.937
18262.144152.23775.33076.90737.85138.15338.12138.112
19524.288307.922152.698155.22476.51777.34876.92277.135
201.048.576621.662308.153313.509155.030155.701155.196155.735
212.097.1521.254.644622.711631.933312.977314.228313.331314.108
224.194.3042.529.1291.255.9961.273.133631.852632.905632.058632.314
238.388.6085.093.0652.529.5762.563.4891.272.7031.272.9461.273.7781.273.638
2416.777.21610.250.8965.090.9395.159.9572.563.0662.562.1782.562.5192.563.133
2533.554.43220.620.75810.247.05210.373.7065.158.0485.152.2665.154.2625.156.182
2667.108.86441.458.98220.606.31820.852.66410.366.03810.362.87910.362.90910.367.156
27134.217.72883.320.63541.428.35941.892.27620.832.14820.826.46820.825.42820.836.591
28268.435.456167.364.62283.230.92984.133.69341.838.87341.841.03241.840.35341.844.364
29536.870.912336.088.380167.180.814168.907.56684.021.20884.018.11384.026.53684.022.523
301.073.741.824674.701.464335.684.874339.016.590168.682.531168.675.134168.676.914168.666.885
312.147.483.6481.354.116.987673.822.716680.294.271338.533.766338.520.465338.541.736338.521.020
324.294.967.2962.717.020.1081.352.285.1741.364.734.934679.271.477679.237.888679.243.599679.267.144
338.589.934.5925.450.478.1862.713.144.6852.737.333.5011.362.649.8021.362.579.5681.362.606.6821.362.642.134
3417.179.869.18410.931.884.6835.442.441.2675.489.443.4162.732.986.5382.732.953.3142.732.971.9752.732.972.856
3534.359.738.36821.921.871.98710.915.457.72811.006.414.2595.480.490.5435.480.433.4705.480.420.5385.480.527.436
3668.719.476.73643.953.448.37921.888.432.33222.065.016.04710.988.403.21010.988.359.23210.988.316.40210.988.369.535


8. Check for existing Integer Sequences by OEIS

Found in Database : 37, 23, 7, 11, 31, 53, 1, 103, 131, 1, 193, 227, 263, 43, 1, 383, 61, 1, 521, 571,
Found in Database : 37, 23, 7, 11, 31, 53, 103, 131, 193, 227, 263, 43, 383, 61, 521, 571, 89, 677, 733, 113, 83, 977, 149, 101, 1181, 179, 1327, 1481, 223, 157, 1901, 181,
Found in Database : 7, 11, 23, 31, 37, 43, 53, 59, 61, 67, 73, 79, 83, 89, 101, 103, 113, 131, 149,